diff --git a/fyi/semgrep-grammars/src/semgrep-bash/grammar.js b/fyi/semgrep-grammars/src/semgrep-bash/grammar.js index 87eece1..4b7ab10 100644 --- a/fyi/semgrep-grammars/src/semgrep-bash/grammar.js +++ b/fyi/semgrep-grammars/src/semgrep-bash/grammar.js @@ -83,8 +83,9 @@ module.exports = grammar(base_grammar, { $.word ), - // Fragile. Copy of the original with $.word -> $._extended_word - function_definition: $ => seq( + // Fragile. Copy of upstream with $.word -> $._extended_word on + // `function` names so metavariables work there. + function_definition: $ => prec.right(seq( choice( seq( 'function', @@ -101,9 +102,11 @@ module.exports = grammar(base_grammar, { choice( $.compound_statement, $.subshell, - $.test_command) - ) - ), + $.test_command, + $.if_statement) + ), + field('redirect', optional($._redirect)), + )), semgrep_metavariable: $ => /\$[A-Z_][A-Z_0-9]*/, semgrep_metavar_eq: $ => /\$[A-Z_][A-Z_0-9]*=/, diff --git a/fyi/semgrep-grammars/src/tree-sitter-bash/grammar.js b/fyi/semgrep-grammars/src/tree-sitter-bash/grammar.js index 92036a0..513f485 100644 --- a/fyi/semgrep-grammars/src/tree-sitter-bash/grammar.js +++ b/fyi/semgrep-grammars/src/tree-sitter-bash/grammar.js @@ -1,5 +1,15 @@ +/** + * @file Bash grammar for tree-sitter + * @author Max Brunsfeld + * @author Amaan Qureshi + * @license MIT + */ + +/// +// @ts-check + const SPECIAL_CHARACTERS = [ - "'", '"', + '\'', '"', '<', '>', '{', '}', '\\[', '\\]', @@ -8,45 +18,93 @@ const SPECIAL_CHARACTERS = [ '|', '&', ';', '\\', '\\s', - '#', ]; +const PREC = { + UPDATE: 0, + ASSIGN: 1, + TERNARY: 2, + LOGICAL_OR: 3, + LOGICAL_AND: 4, + BITWISE_OR: 5, + BITWISE_XOR: 6, + BITWISE_AND: 7, + EQUALITY: 8, + COMPARE: 9, + TEST: 10, + UNARY: 11, + SHIFT: 12, + ADD: 13, + MULTIPLY: 14, + EXPONENT: 15, + NEGATE: 16, + PREFIX: 17, + POSTFIX: 18, +}; + module.exports = grammar({ name: 'bash', + conflicts: $ => [ + [$._expression, $.command_name], + [$.command, $.variable_assignments], + [$.redirected_statement, $.command], + [$.redirected_statement, $.command_substitution], + [$.function_definition, $.command_name], + [$.pipeline], + ], + inline: $ => [ $._statement, $._terminator, $._literal, - $._statements2, + $._terminated_statement, $._primary_expression, $._simple_variable_name, + $._multiline_variable_name, $._special_variable_name, + $._c_word, + $._statement_not_subshell, + $._redirect, ], externals: $ => [ $.heredoc_start, - $._simple_heredoc_body, + $.simple_heredoc_body, $._heredoc_body_beginning, - $._heredoc_body_middle, - $._heredoc_body_end, + $.heredoc_content, + $.heredoc_end, $.file_descriptor, $._empty_value, $._concat, $.variable_name, // Variable name followed by an operator like '=' or '+=' + $.test_operator, $.regex, + $._regex_no_slash, + $._regex_no_space, + $._expansion_word, + $.extglob_pattern, + $._bare_dollar, + $._brace_start, + $._immediate_double_hash, + $._external_expansion_sym_hash, + $._external_expansion_sym_bang, + $._external_expansion_sym_equal, '}', ']', '<<', '<<-', - '\n', + /\n/, + '(', + 'esac', + $.__error_recovery, ], extras: $ => [ $.comment, /\s/, /\\\r?\n/, - /\\( |\t|\v|\f)/ + /\\( |\t|\v|\f)/, ], supertypes: $ => [ @@ -63,30 +121,28 @@ module.exports = grammar({ _statements: $ => prec(1, seq( repeat(seq( $._statement, - optional(seq('\n', $.heredoc_body)), - $._terminator + $._terminator, )), $._statement, - optional(seq('\n', $.heredoc_body)), - optional($._terminator) + optional($._terminator), )), - _statements2: $ => repeat1(seq( + _terminated_statement: $ => repeat1(seq( $._statement, - optional(seq('\n', $.heredoc_body)), - $._terminator + $._terminator, )), - _terminated_statement: $ => seq( - $._statement, - $._terminator - ), - // Statements _statement: $ => choice( + $._statement_not_subshell, + $.subshell, + ), + + _statement_not_subshell: $ => choice( $.redirected_statement, $.variable_assignment, + $.variable_assignments, $.command, $.declaration_command, $.unset_command, @@ -99,79 +155,173 @@ module.exports = grammar({ $.case_statement, $.pipeline, $.list, - $.subshell, $.compound_statement, - $.function_definition + $.function_definition, ), - redirected_statement: $ => prec(-1, seq( - field('body', $._statement), - field('redirect', repeat1(choice( - $.file_redirect, - $.heredoc_redirect, - $.herestring_redirect - ))) + _statement_not_pipeline: $ => prec(1, choice( + $.redirected_statement, + $.variable_assignment, + $.variable_assignments, + $.command, + $.declaration_command, + $.unset_command, + $.test_command, + $.negated_command, + $.for_statement, + $.c_style_for_statement, + $.while_statement, + $.if_statement, + $.case_statement, + $.list, + $.compound_statement, + $.function_definition, + $.subshell, )), + redirected_statement: $ => prec.dynamic(-1, prec.right(-1, choice( + seq( + field('body', $._statement), + field('redirect', choice( + repeat1(choice( + $.file_redirect, + $.heredoc_redirect, + )), + )), + ), + seq( + field('body', choice($.if_statement, $.while_statement)), + $.herestring_redirect, + ), + field('redirect', repeat1($._redirect)), + $.herestring_redirect, + ))), + for_statement: $ => seq( choice('for', 'select'), field('variable', $._simple_variable_name), optional(seq( 'in', - field('value', repeat1($._literal)) + field('value', repeat1($._literal)), )), $._terminator, - field('body', $.do_group) + field('body', $.do_group), ), c_style_for_statement: $ => seq( 'for', '((', - field('initializer', optional($._expression)), - $._terminator, - field('condition', optional($._expression)), - $._terminator, - field('update', optional($._expression)), + choice($._for_body), '))', optional(';'), field('body', choice( $.do_group, - $.compound_statement - )) + $.compound_statement, + )), + ), + _for_body: $ => seq( + field('initializer', commaSep($._c_expression)), + $._c_terminator, + field('condition', commaSep($._c_expression)), + $._c_terminator, + field('update', commaSep($._c_expression)), + ), + + _c_expression: $ => choice( + $._c_expression_not_assignment, + alias($._c_variable_assignment, $.variable_assignment), + ), + _c_expression_not_assignment: $ => choice( + $._c_word, + $.simple_expansion, + $.expansion, + $.number, + $.string, + alias($._c_unary_expression, $.unary_expression), + alias($._c_binary_expression, $.binary_expression), + alias($._c_postfix_expression, $.postfix_expression), + alias($._c_parenthesized_expression, $.parenthesized_expression), + $.command_substitution, + ), + + _c_variable_assignment: $ => seq( + field('name', alias($._c_word, $.variable_name)), + '=', + field('value', $._c_expression), + ), + _c_unary_expression: $ => prec(PREC.PREFIX, seq( + field('operator', choice('++', '--')), + $._c_expression_not_assignment, + )), + _c_binary_expression: $ => { + const table = [ + [choice('+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '&=', '^=', '|='), PREC.UPDATE], + [choice('||', '-o'), PREC.LOGICAL_OR], + [choice('&&', '-a'), PREC.LOGICAL_AND], + ['|', PREC.BITWISE_OR], + ['^', PREC.BITWISE_XOR], + ['&', PREC.BITWISE_AND], + [choice('==', '!='), PREC.EQUALITY], + [choice('<', '>', '<=', '>='), PREC.COMPARE], + [choice('<<', '>>'), PREC.SHIFT], + [choice('+', '-'), PREC.ADD], + [choice('*', '/', '%'), PREC.MULTIPLY], + ['**', PREC.EXPONENT], + ]; + + return choice(...table.map(([operator, precedence]) => { + // @ts-ignore + return prec[operator === '**' ? 'right' : 'left'](precedence, seq( + field('left', $._c_expression_not_assignment), + // @ts-ignore + field('operator', operator), + field('right', $._c_expression_not_assignment), + )); + })); + }, + _c_postfix_expression: $ => prec(PREC.POSTFIX, seq( + $._c_expression_not_assignment, + field('operator', choice('++', '--')), + )), + _c_parenthesized_expression: $ => seq( + '(', + commaSep1($._c_expression), + ')', ), + _c_word: $ => alias(/[a-zA-Z_][a-zA-Z0-9_]*/, $.word), while_statement: $ => seq( - 'while', + choice('while', 'until'), field('condition', $._terminated_statement), - field('body', $.do_group) + field('body', $.do_group), ), do_group: $ => seq( 'do', - optional($._statements2), - 'done' + optional($._terminated_statement), + 'done', ), if_statement: $ => seq( 'if', field('condition', $._terminated_statement), 'then', - optional($._statements2), + optional($._terminated_statement), repeat($.elif_clause), optional($.else_clause), - 'fi' + 'fi', ), elif_clause: $ => seq( 'elif', $._terminated_statement, 'then', - optional($._statements2) + optional($._terminated_statement), ), else_clause: $ => seq( 'else', - optional($._statements2) + optional($._terminated_statement), ), case_statement: $ => seq( @@ -179,76 +329,99 @@ module.exports = grammar({ field('value', $._literal), optional($._terminator), 'in', - $._terminator, + optional($._terminator), optional(seq( repeat($.case_item), alias($.last_case_item, $.case_item), )), - 'esac' + 'esac', ), case_item: $ => seq( - field('value', $._literal), - repeat(seq('|', field('value', $._literal))), - ')', + choice( + seq( + optional('('), + field('value', choice($._literal, $._extglob_blob)), + repeat(seq('|', field('value', choice($._literal, $._extglob_blob)))), + ')', + ), + ), optional($._statements), prec(1, choice( field('termination', ';;'), - field('fallthrough', choice(';&', ';;&')) - )) + field('fallthrough', choice(';&', ';;&')), + )), ), last_case_item: $ => seq( - field('value', $._literal), - repeat(seq('|', field('value', $._literal))), + optional('('), + field('value', choice($._literal, $._extglob_blob)), + repeat(seq('|', field('value', choice($._literal, $._extglob_blob)))), ')', optional($._statements), - optional(prec(1, ';;')) + optional(prec(1, ';;')), ), - function_definition: $ => seq( + function_definition: $ => prec.right(seq( choice( seq( 'function', field('name', $.word), - optional(seq('(', ')')) + optional(seq('(', ')')), ), seq( field('name', $.word), - '(', ')' - ) + '(', ')', + ), ), field( 'body', choice( $.compound_statement, $.subshell, - $.test_command) - ) - ), + $.test_command, + $.if_statement, + ), + ), + field('redirect', optional($._redirect)), + )), - compound_statement: $ => seq( - '{', - optional($._statements2), - '}' + compound_statement: $ => choice( + seq( + '{', + optional($._terminated_statement), + token(prec(-1, '}')), + ), + seq( + '((', + repeat( + seq( + $._arithmetic_expression, + ',', + ), + ), + $._arithmetic_expression, + '))'), ), subshell: $ => seq( '(', $._statements, - ')' + ')', ), - pipeline: $ => prec.left(1, seq( - $._statement, - choice('|', '|&'), - $._statement + pipeline: $ => prec.right(seq( + $._statement_not_pipeline, + repeat1(seq( + choice('|', '|&'), + $._statement_not_pipeline, + )), )), list: $ => prec.left(-1, seq( $._statement, choice('&&', '||'), - $._statement + $._statement, )), // Commands @@ -256,18 +429,33 @@ module.exports = grammar({ negated_command: $ => seq( '!', choice( - $.command, + prec(2, $.command), + prec(1, $.variable_assignment), $.test_command, - $.subshell - ) + $.subshell, + ), ), test_command: $ => seq( choice( - seq('[', $._expression, ']'), - seq('[[', $._expression, ']]'), - seq('((', $._expression, '))') - ) + seq('[', optional(choice($._expression, $.redirected_statement)), ']'), + seq( + '[[', + choice( + $._expression, + alias($._test_command_binary_expression, $.binary_expression), + ), + ']]', + ), + ), + ), + + _test_command_binary_expression: $ => prec(PREC.ASSIGN, + seq( + field('left', $._expression), + field('operator', '='), + field('right', alias($._regex_no_space, $.regex)), + ), ), declaration_command: $ => prec.left(seq( @@ -275,31 +463,36 @@ module.exports = grammar({ repeat(choice( $._literal, $._simple_variable_name, - $.variable_assignment - )) + $.variable_assignment, + )), )), unset_command: $ => prec.left(seq( choice('unset', 'unsetenv'), repeat(choice( $._literal, - $._simple_variable_name - )) + $._simple_variable_name, + )), )), command: $ => prec.left(seq( repeat(choice( $.variable_assignment, - $.file_redirect + field('redirect', $._redirect), )), field('name', $.command_name), - repeat(field('argument', choice( - $._literal, - seq( - choice('=~', '=='), - choice($._literal, $.regex) - ) - ))) + choice( + repeat(choice( + field('argument', $._literal), + field('argument', alias($._bare_dollar, '$')), + field('argument', seq( + choice('=~', '=='), + choice($._literal, $.regex), + )), + field('redirect', $.herestring_redirect), + )), + $.subshell, + ), )), command_name: $ => $._literal, @@ -307,58 +500,102 @@ module.exports = grammar({ variable_assignment: $ => seq( field('name', choice( $.variable_name, - $.subscript + $.subscript, )), choice( '=', - '+=' + '+=', ), field('value', choice( $._literal, $.array, - $._empty_value - )) + $._empty_value, + alias($._comment_word, $.word), + )), ), + variable_assignments: $ => seq($.variable_assignment, repeat1($.variable_assignment)), + subscript: $ => seq( field('name', $.variable_name), '[', - field('index', $._literal), + field('index', choice($._literal, $.binary_expression, $.unary_expression, $.compound_statement, $.subshell)), optional($._concat), ']', - optional($._concat) + optional($._concat), ), file_redirect: $ => prec.left(seq( field('descriptor', optional($.file_descriptor)), - choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), - field('destination', $._literal) + choice( + seq( + choice('<', '>', '>>', '&>', '&>>', '<&', '>&', '>|'), + field('destination', repeat1($._literal)), + ), + seq( + choice('<&-', '>&-'), // close file descriptor + optional(field('destination', $._literal)), + ), + ), )), heredoc_redirect: $ => seq( + field('descriptor', optional($.file_descriptor)), choice('<<', '<<-'), - $.heredoc_start + $.heredoc_start, + optional(choice( + alias($._heredoc_pipeline, $.pipeline), + seq( + field('redirect', repeat1($._redirect)), + optional($._heredoc_expression), + ), + $._heredoc_expression, + $._heredoc_command, + )), + /\n/, + choice($._heredoc_body, $._simple_heredoc_body), ), - heredoc_body: $ => choice( - $._simple_heredoc_body, - seq( - $._heredoc_body_beginning, - repeat(choice( - $.expansion, - $.simple_expansion, - $.command_substitution, - $._heredoc_body_middle - )), - $._heredoc_body_end - ) + _heredoc_pipeline: $ => seq( + choice('|', '|&'), + $._statement, ), - herestring_redirect: $ => seq( - '<<<', - $._literal + _heredoc_expression: $ => seq( + field('operator', choice('||', '&&')), + field('right', $._statement), + ), + + _heredoc_command: $ => repeat1(field('argument', $._literal)), + + _heredoc_body: $ => seq( + $.heredoc_body, + $.heredoc_end, + ), + + heredoc_body: $ => seq( + $._heredoc_body_beginning, + repeat(choice( + $.expansion, + $.simple_expansion, + $.command_substitution, + $.heredoc_content, + )), ), + _simple_heredoc_body: $ => seq( + alias($.simple_heredoc_body, $.heredoc_body), + $.heredoc_end, + ), + + herestring_redirect: $ => prec.left(seq( + field('descriptor', optional($.file_descriptor)), + '<<<', + $._literal, + )), + + _redirect: $ => choice($.file_redirect, $.herestring_redirect), + // Expressions _expression: $ => choice( @@ -367,52 +604,87 @@ module.exports = grammar({ $.ternary_expression, $.binary_expression, $.postfix_expression, - $.parenthesized_expression + $.parenthesized_expression, ), - binary_expression: $ => prec.left(choice( - seq( - field('left', $._expression), - field('operator', choice( - '=', '==', '=~', '!=', - '+', '-', '+=', '-=', - '<', '>', '<=', '>=', - '||', '&&', - $.test_operator + // https://tldp.org/LDP/abs/html/opprecedence.html + binary_expression: $ => { + const table = [ + [choice('+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '&=', '^=', '|='), PREC.UPDATE], + [choice('=', '=~'), PREC.ASSIGN], + ['||', PREC.LOGICAL_OR], + ['&&', PREC.LOGICAL_AND], + ['|', PREC.BITWISE_OR], + ['^', PREC.BITWISE_XOR], + ['&', PREC.BITWISE_AND], + [choice('==', '!='), PREC.EQUALITY], + [choice('<', '>', '<=', '>='), PREC.COMPARE], + [$.test_operator, PREC.TEST], + [choice('<<', '>>'), PREC.SHIFT], + [choice('+', '-'), PREC.ADD], + [choice('*', '/', '%'), PREC.MULTIPLY], + ['**', PREC.EXPONENT], + ]; + + return choice( + choice(...table.map(([operator, precedence]) => { + // @ts-ignore + return prec[operator === '**' ? 'right' : 'left'](precedence, seq( + field('left', $._expression), + // @ts-ignore + field('operator', operator), + field('right', $._expression), + )); + })), + prec(PREC.ASSIGN, seq( + field('left', $._expression), + field('operator', '=~'), + field('right', alias($._regex_no_space, $.regex)), )), - field('right', $._expression) - ), - seq( - field('left', $._expression), - field('operator', choice('==', '=~')), - field('right', $.regex) - ) + prec(PREC.EQUALITY, seq( + field('left', $._expression), + field('operator', choice('==', '!=')), + field('right', $._extglob_blob), + )), + ); + }, + + ternary_expression: $ => prec.left(PREC.TERNARY, seq( + field('condition', $._expression), + '?', + field('consequence', $._expression), + ':', + field('alternative', $._expression), )), - ternary_expression: $ => prec.left( - seq( - field('condition', $._expression), - '?', - field('consequence', $._expression), - ':', - field('alternative', $._expression), - ) + unary_expression: $ => choice( + prec(PREC.PREFIX, seq( + field('operator', tokenLiterals(1, '++', '--')), + $._expression, + )), + prec(PREC.UNARY, seq( + field('operator', tokenLiterals(1, '-', '+', '~')), + $._expression, + )), + prec.right(PREC.UNARY, seq( + field('operator', '!'), + $._expression, + )), + prec.right(PREC.TEST, seq( + field('operator', $.test_operator), + $._expression, + )), ), - unary_expression: $ => prec.right(seq( - choice('!', $.test_operator), - $._expression - )), - - postfix_expression: $ => seq( + postfix_expression: $ => prec(PREC.POSTFIX, seq( $._expression, - choice('++', '--'), - ), + field('operator', choice('++', '--')), + )), parenthesized_expression: $ => seq( '(', $._expression, - ')' + ')', ), // Literals @@ -420,135 +692,510 @@ module.exports = grammar({ _literal: $ => choice( $.concatenation, $._primary_expression, - alias(prec(-2, repeat1($._special_character)), $.word) + alias(prec(-2, repeat1($._special_character)), $.word), ), _primary_expression: $ => choice( $.word, + alias($.test_operator, $.word), $.string, $.raw_string, - $.ansii_c_string, + $.translated_string, + $.ansi_c_string, + $.number, $.expansion, $.simple_expansion, - $.string_expansion, $.command_substitution, - $.process_substitution + $.process_substitution, + $.arithmetic_expansion, + $.brace_expression, + ), + + arithmetic_expansion: $ => choice( + seq('$((', commaSep1($._arithmetic_expression), '))'), + seq('$[', $._arithmetic_expression, ']'), + ), + + brace_expression: $ => seq( + alias($._brace_start, '{'), + alias(token.immediate(/\d+/), $.number), + token.immediate('..'), + alias(token.immediate(/\d+/), $.number), + token.immediate('}'), + ), + + _arithmetic_expression: $ => prec(1, choice( + $._arithmetic_literal, + alias($._arithmetic_unary_expression, $.unary_expression), + alias($._arithmetic_ternary_expression, $.ternary_expression), + alias($._arithmetic_binary_expression, $.binary_expression), + alias($._arithmetic_postfix_expression, $.postfix_expression), + alias($._arithmetic_parenthesized_expression, $.parenthesized_expression), + $.command_substitution, + )), + + _arithmetic_literal: $ => prec(1, choice( + $.number, + $.subscript, + $.simple_expansion, + $.expansion, + $._simple_variable_name, + $.variable_name, + $.string, + $.raw_string, + )), + + _arithmetic_binary_expression: $ => { + const table = [ + [choice('+=', '-=', '*=', '/=', '%=', '**=', '<<=', '>>=', '&=', '^=', '|='), PREC.UPDATE], + [choice('=', '=~'), PREC.ASSIGN], + ['||', PREC.LOGICAL_OR], + ['&&', PREC.LOGICAL_AND], + ['|', PREC.BITWISE_OR], + ['^', PREC.BITWISE_XOR], + ['&', PREC.BITWISE_AND], + [choice('==', '!='), PREC.EQUALITY], + [choice('<', '>', '<=', '>='), PREC.COMPARE], + [choice('<<', '>>'), PREC.SHIFT], + [choice('+', '-'), PREC.ADD], + [choice('*', '/', '%'), PREC.MULTIPLY], + ['**', PREC.EXPONENT], + ]; + + return choice(...table.map(([operator, precedence]) => { + // @ts-ignore + return prec.left(precedence, seq( + field('left', $._arithmetic_expression), + // @ts-ignore + field('operator', operator), + field('right', $._arithmetic_expression), + )); + })); + }, + + _arithmetic_ternary_expression: $ => prec.left(PREC.TERNARY, seq( + field('condition', $._arithmetic_expression), + '?', + field('consequence', $._arithmetic_expression), + ':', + field('alternative', $._arithmetic_expression), + )), + + _arithmetic_unary_expression: $ => choice( + prec(PREC.PREFIX, seq( + field('operator', tokenLiterals(1, '++', '--')), + $._arithmetic_expression, + )), + prec(PREC.UNARY, seq( + field('operator', tokenLiterals(1, '-', '+', '~')), + $._arithmetic_expression, + )), + prec.right(PREC.UNARY, seq( + field('operator', '!'), + $._arithmetic_expression, + )), + ), + + _arithmetic_postfix_expression: $ => prec(PREC.POSTFIX, seq( + $._arithmetic_expression, + field('operator', choice('++', '--')), + )), + + _arithmetic_parenthesized_expression: $ => seq( + '(', + $._arithmetic_expression, + ')', ), + concatenation: $ => prec(-1, seq( choice( $._primary_expression, - $._special_character, + alias($._special_character, $.word), ), - repeat1(prec(-1, seq( - $._concat, + repeat1(seq( + choice($._concat, alias(/`\s*`/, '``')), choice( $._primary_expression, - $._special_character, - ) - ))), - optional(seq($._concat, '$')) + alias($._special_character, $.word), + alias($._comment_word, $.word), + alias($._bare_dollar, '$'), + ), + )), + optional(seq($._concat, '$')), )), - _special_character: $ => token(prec(-1, choice('{', '}', '[', ']'))), + _special_character: _ => token(prec(-1, choice('{', '}', '[', ']'))), string: $ => seq( '"', repeat(seq( choice( - seq(optional('$'), $._string_content), + seq(optional('$'), $.string_content), $.expansion, $.simple_expansion, - $.command_substitution + $.command_substitution, + $.arithmetic_expansion, ), - optional($._concat) + optional($._concat), )), optional('$'), - '"' + '"', ), - _string_content: $ => token(prec(-1, /([^"`$\\]|\\(.|\r?\n))+/)), + string_content: _ => token(prec(-1, /([^"`$\\\r\n]|\\(.|\r?\n))+/)), + + translated_string: $ => seq('$', $.string), array: $ => seq( '(', repeat($._literal), - ')' + ')', ), - raw_string: $ => /'[^']*'/, + raw_string: _ => /'[^']*'/, + + ansi_c_string: _ => /\$'([^']|\\')*'/, - ansii_c_string: $ => /\$'([^']|\\')*'/, + number: $ => choice( + /-?(0x)?[0-9]+(#[0-9A-Za-z@_]+)?/, + // the base can be an expansion or command substitution + seq(/-?(0x)?[0-9]+#/, choice($.expansion, $.command_substitution)), + ), simple_expansion: $ => seq( '$', choice( $._simple_variable_name, + $._multiline_variable_name, $._special_variable_name, + $.variable_name, alias('!', $.special_variable_name), - alias('#', $.special_variable_name) - ) + alias('#', $.special_variable_name), + ), ), - string_expansion: $ => seq('$', choice($.string, $.raw_string)), + string_expansion: $ => seq('$', $.string), expansion: $ => seq( '${', - optional(choice('#', '!')), - optional(choice( - seq( - $.variable_name, - '=', - optional($._literal) + optional($._expansion_body), + '}', + ), + _expansion_body: $ => choice( + // ${!##} ${!#} + repeat1(field( + 'operator', + choice( + alias($._external_expansion_sym_hash, '#'), + alias($._external_expansion_sym_bang, '!'), + alias($._external_expansion_sym_equal, '='), ), - seq( + )), + seq( + optional(field('operator', token.immediate('!'))), + choice($.variable_name, $._simple_variable_name, $._special_variable_name, $.subscript), + choice( + $._expansion_expression, + $._expansion_regex, + $._expansion_regex_replacement, + $._expansion_regex_removal, + $._expansion_max_length, + $._expansion_operator, + ), + ), + seq( + field('operator', token.immediate('!')), + choice($._simple_variable_name, $.variable_name), + optional(field('operator', choice( + token.immediate('@'), + token.immediate('*'), + ))), + ), + seq( + optional(field('operator', immediateLiterals('#', '!', '='))), + choice( + $.subscript, + $._simple_variable_name, + $._special_variable_name, + $.command_substitution, + ), + repeat(field( + 'operator', choice( - $.subscript, - $._simple_variable_name, - $._special_variable_name + alias($._external_expansion_sym_hash, '#'), + alias($._external_expansion_sym_bang, '!'), + alias($._external_expansion_sym_equal, '='), ), - optional(seq( - token(prec(1, '/')), - optional($.regex) - )), - repeat(choice( - $._literal, - ':', ':?', '=', ':-', '%', '-', '#' - )) + )), + ), + ), + + _expansion_expression: $ => prec(1, seq( + field('operator', immediateLiterals('=', ':=', '-', ':-', '+', ':+', '?', ':?')), + optional(seq( + choice( + alias($._concatenation_in_expansion, $.concatenation), + $.command_substitution, + $.word, + $.expansion, + $.simple_expansion, + $.array, + $.string, + $.raw_string, + $.ansi_c_string, + alias($._expansion_word, $.word), ), )), - '}' + )), + + _expansion_regex: $ => seq( + field('operator', choice('#', alias($._immediate_double_hash, '##'), '%', '%%')), + repeat(choice( + $.regex, + alias(')', $.regex), + $.string, + $.raw_string, + alias(/\s+/, $.regex), + )), + ), + + _expansion_regex_replacement: $ => seq( + field('operator', choice('/', '//', '/#', '/%')), + optional(choice( + alias($._regex_no_slash, $.regex), + $.string, + $.command_substitution, + seq($.string, alias($._regex_no_slash, $.regex)), + )), + // This can be elided + optional(seq( + field('operator', '/'), + optional(seq( + choice( + $._primary_expression, + alias(prec(-2, repeat1($._special_character)), $.word), + seq($.command_substitution, alias($._expansion_word, $.word)), + alias($._expansion_word, $.word), + alias($._concatenation_in_expansion, $.concatenation), + $.array, + ), + field('operator', optional('/')), + )), + )), + ), + + _expansion_regex_removal: $ => seq( + field('operator', choice(',', ',,', '^', '^^')), + optional($.regex), + ), + + _expansion_max_length: $ => seq( + field('operator', ':'), + optional(choice( + $._simple_variable_name, + $.number, + $.arithmetic_expansion, + $.expansion, + $.parenthesized_expression, + $.command_substitution, + alias($._expansion_max_length_binary_expression, $.binary_expression), + /\n/, + )), + optional(seq( + field('operator', ':'), + optional($.simple_expansion), + optional(choice( + $._simple_variable_name, + $.number, + $.arithmetic_expansion, + $.expansion, + $.parenthesized_expression, + $.command_substitution, + alias($._expansion_max_length_binary_expression, $.binary_expression), + /\n/, + )), + )), + ), + + _expansion_max_length_expression: $ => choice( + $._simple_variable_name, + $.number, + $.expansion, + alias($._expansion_max_length_binary_expression, $.binary_expression), + ), + _expansion_max_length_binary_expression: $ => { + const table = [ + [choice('+', '-'), PREC.ADD], + [choice('*', '/', '%'), PREC.MULTIPLY], + ]; + + return choice(...table.map(([operator, precedence]) => { + // @ts-ignore + return prec.left(precedence, seq( + $._expansion_max_length_expression, + // @ts-ignore + field('operator', operator), + $._expansion_max_length_expression, + )); + })); + }, + + _expansion_operator: _ => seq( + field('operator', token.immediate('@')), + field('operator', immediateLiterals('U', 'u', 'L', 'Q', 'E', 'P', 'A', 'K', 'a', 'k')), ), + _concatenation_in_expansion: $ => prec(-2, seq( + choice( + $.word, + $.variable_name, + $.simple_expansion, + $.expansion, + $.string, + $.raw_string, + $.ansi_c_string, + $.command_substitution, + alias($._expansion_word, $.word), + $.array, + $.process_substitution, + ), + repeat1(seq( + choice($._concat, alias(/`\s*`/, '``')), + choice( + $.word, + $.variable_name, + $.simple_expansion, + $.expansion, + $.string, + $.raw_string, + $.ansi_c_string, + $.command_substitution, + alias($._expansion_word, $.word), + $.array, + $.process_substitution, + ), + )), + )), + command_substitution: $ => choice( seq('$(', $._statements, ')'), - seq('$(', $.file_redirect, ')'), - prec(1, seq('`', $._statements, '`')) + seq('$(', field('redirect', $.file_redirect), ')'), + prec(1, seq('`', $._statements, '`')), + seq('$`', $._statements, '`'), ), process_substitution: $ => seq( choice('<(', '>('), $._statements, - ')' + ')', ), - comment: $ => token(prec(-10, /#.*/)), - - _simple_variable_name: $ => alias(/\w+/, $.variable_name), + _extglob_blob: $ => choice( + $.extglob_pattern, + seq( + $.extglob_pattern, + choice($.string, $.expansion, $.command_substitution), + optional($.extglob_pattern), + ), + ), - _special_variable_name: $ => alias(choice('*', '@', '?', '-', '$', '0', '_'), $.special_variable_name), + comment: _ => token(prec(-10, /#.*/)), - word: $ => token(repeat1(choice( - noneOf(...SPECIAL_CHARACTERS), - seq('\\', noneOf('\\s')) + _comment_word: _ => token(prec(-8, seq( + choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')), + ), + repeat(choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')), + '\\ ', + )), ))), - test_operator: $ => token(prec(1, seq('-', /[a-zA-Z]+/))), + _simple_variable_name: $ => alias(/\w+/, $.variable_name), + _multiline_variable_name: $ => alias( + token(prec(-1, /(\w|\\\r?\n)+/)), + $.variable_name, + ), + + _special_variable_name: $ => alias(choice('*', '@', '?', '!', '#', '-', '$', '_'), $.special_variable_name), + + word: _ => token(seq( + choice( + noneOf('#', ...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')), + ), + repeat(choice( + noneOf(...SPECIAL_CHARACTERS), + seq('\\', noneOf('\\s')), + '\\ ', + )), + )), - _terminator: $ => choice(';', ';;', '\n', '&') - } + _c_terminator: _ => choice(';', /\n/, '&'), + _terminator: _ => choice(';', ';;', /\n/, '&'), + }, }); +/** + * Returns a regular expression that matches any character except the ones + * provided. + * + * @param {...string} characters + * + * @returns {RegExp} + */ function noneOf(...characters) { - const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join('') - return new RegExp('[^' + negatedString + ']') + const negatedString = characters.map(c => c == '\\' ? '\\\\' : c).join(''); + return new RegExp('[^' + negatedString + ']'); +} + +/** + * Creates a rule to optionally match one or more of the rules separated by a comma + * + * @param {RuleOrLiteral} rule + * + * @returns {ChoiceRule} + */ +function commaSep(rule) { + return optional(commaSep1(rule)); +} + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {RuleOrLiteral} rule + * + * @returns {SeqRule} + */ +function commaSep1(rule) { + return seq(rule, repeat(seq(',', rule))); +} + +/** + * + * Turns a list of rules into a choice of immediate rule + * + * @param {(RegExp | string)[]} literals + * + * @returns {ChoiceRule} + */ +function immediateLiterals(...literals) { + return choice(...literals.map(l => token.immediate(l))); +} + +/** + * + * Turns a list of rules into a choice of aliased token rules + * + * @param {number} precedence + * + * @param {(RegExp | string)[]} literals + * + * @returns {ChoiceRule} + */ +function tokenLiterals(precedence, ...literals) { + return choice(...literals.map(l => token(prec(precedence, l)))); } diff --git a/fyi/tree-sitter-version b/fyi/tree-sitter-version index 288213a..e25b980 100644 --- a/fyi/tree-sitter-version +++ b/fyi/tree-sitter-version @@ -1 +1 @@ -tree-sitter 0.22.6 (d521f0a0791d94f4442cf9be08322f6aabce20d6) +tree-sitter 0.26.3 diff --git a/fyi/versions b/fyi/versions index 28b97b7..c1ef70e 100644 --- a/fyi/versions +++ b/fyi/versions @@ -1,34 +1,141 @@ File: semgrep-grammars/src/tree-sitter-bash/LICENSE Git repo name: tree-sitter-bash -Latest commit in repo: 30d369ba45971a40160de34631ceea05358c9a48 +Latest commit in repo: a06c2e4415e9bc0346c6b86d401879ffb44058f7 Last change in file: - commit 30d369ba45971a40160de34631ceea05358c9a48 - Author: Martin Jambon - Date: Sun Oct 10 01:14:12 2021 -0700 + commit 6861ab03bf19fbddd1d4bb95a76b23cb2092eb52 + Author: Max Brunsfeld + Date: Fri Jul 14 14:46:24 2017 -0700 - Merge pull request #111 from tree-sitter/mj-select - - Support for 'select' loops + Add license and readme --- File: semgrep-grammars/src/tree-sitter-bash/grammar.js Git repo name: tree-sitter-bash -Latest commit in repo: 30d369ba45971a40160de34631ceea05358c9a48 +Latest commit in repo: a06c2e4415e9bc0346c6b86d401879ffb44058f7 Last change in file: - commit 30d369ba45971a40160de34631ceea05358c9a48 - Author: Martin Jambon - Date: Sun Oct 10 01:14:12 2021 -0700 + commit 5d8a33249511ed8bcf6cf135b7b2a815c7a02d9b + Author: Dino + Date: Tue Dec 2 16:55:01 2025 +0000 - Merge pull request #111 from tree-sitter/mj-select + fix: remove double parenthesis as valid opening to arithmetic expasion (#311) + + * chore: checkpoint with formatted tests + + No changes for now, we only re-formatted tests to make it easier to diff + them when we actually do changes. + + * feat: avoid spurious parsing of arithmetic expansion + + * test: add test for parenthesis in quote + + * chore: update known failures with master + + Update the `script/known-failures.txt` document with the latest grammar + in `master`, to make it easier to check what our changes are impacting. + + * refactor: move (( expression )) from test_command to compound_statement + + With the introduced changes, some of the examples were failing with a + specific pattern, namely the files: + + - `examples/wild-corpus/esoteric/lishp/evaluator.sh` + - `examples/wild-corpus/esoteric/lishp/test.sh` + - `examples/wild-corpus/esoteric/lishp/variables.map.sh` + - `examples/wild-corpus/esoteric/lishp/variables.sh` + + When taking a closer look it was noted that the following program was + failing to parse: + + ``` + (( size=1, max_index=10 ) + ``` + + After taking a closer look at bash's manual, it seems this should be + possible and it should be considered a compound command instead. As + such, this commit moves this pattern from `test_command` to + `compound_statement`, updating it so that we can have multiple + expressions separated by a comma. + + Note that these changes will very very very likely break the existing + tests, as we recently updated some to expect `test_command`. However, + for the time being, I'm keeping those failures since I'd like to have + someone else take another look at the changes I'm introducing with this + commit to see if they make sense. + + * refactor: revert changes to subscript + + This commit reverts the changes that had been done to `subscript` in + order to fix failing examples for the following files: + + - `examples/gentoo/dev-lang/mlton/mlton-20180207.ebuild` + - `examples/gentoo/eclass/cuda.eclass` + - `examples/wild-corpus/cloud/kubernetes/cluster/lib/logging.sh` + - `examples/wild-corpus/cloud/kubernetes/hack/update-godep-licenses.sh` + - `examples/wild-corpus/git/t/t9902-completion.sh` + - `examples/wild-corpus/shell/bashdb/test/unit/test-columns.sh` + - `examples/wild-corpus/shell/bashdb/lib/frame.sh` + - `examples/gentoo/dev-qt/qt-docs/qt-docs-6.10.0_p202510021201.ebuild` + - `examples/gentoo/dev-qt/qt-docs/qt-docs-6.9.3_p202509261208.ebuild` + - `examples/gentoo/eclass/linux-mod-r1.eclass` + + Namely, with the introduced changes, the following program could not be parsed: + + ``` + echo "${array[${index}+1]}" + ``` + + Even though I've confirmed this is valid bash syntax and, if the + variables were set, this would actually be evaluated to the value in + that specific index of the array. + + Once again, not touching tests right now as I want someone to + double-check that my changes make sense. + + * test: commit updated good tests + + Add the updated tests for both `test/corpus/literals.txt` and + `test/corpus/statements.txt`, while leaving the failure in + `test/corpus/commands.txt`, as the two first simply updated the + `test_command` node to `compound_statement`, which is expected. + + The latter broke the binary expression in a parenthesized expression in + a subscript, which is simply returning word instead of actually parsing + the binary or unary expression, still need to figure that out. + + * refactor: replace parenthesized_expression for compound_statement + + Replace `parenthesized_expression` for `compound_statement` in + `subscript`, as that fixes the issue with patterns like + `${array[(($number+1))]}` where `(($number+1))` was being parsed as a + `(parenthesized_expression(word))`. + + This removes even more known failures, while introducing a new single + on, which needs to be looked into. + + * fix: add subshell to possible options in subscript + + Not sure if we should add `subshell` but, since the last commit removed + `parenthesized_expression`, we now need another one to allow `( ... )` + in subscript. + + * refactor: remove unnecessary optional + + Co-authored-by: Max Brunsfeld + + * ci: disable node tests + + Co-authored-by: Max Brunsfeld + + --------- - Support for 'select' loops + Co-authored-by: Max Brunsfeld --- File: semgrep-grammars/src/semgrep-bash/grammar.js -Git repo name: ocaml-tree-sitter-semgrep -Latest commit in repo: 091f5438fc0c15b80217f00e5b94ec0e55517383 +Git repo name: ots-bash-propose +Latest commit in repo: 285346f81e42b673ab2198ba675129ae5e0e8846 Last change in file: - commit 26f6ce5a8e3b2d6731f14c5ccb92deafb102a8d1 - Author: Martin Jambon - Date: Wed Apr 13 15:38:06 2022 -0700 + commit 285346f81e42b673ab2198ba675129ae5e0e8846 + Author: Marc-André Laverdière + Date: Wed Jul 29 17:00:52 2026 -0600 - Update comment + Update tree-sitter-bash grammar to v0.25.1 --- diff --git a/lib/Boilerplate.ml b/lib/Boilerplate.ml index 1859a71..1f5fc0a 100644 --- a/lib/Boilerplate.ml +++ b/lib/Boilerplate.ml @@ -19,303 +19,1172 @@ let token (env : env) (tok : Tree_sitter_run.Token.t) = let blank (env : env) () = R.Tuple [] +let map_imm_tok_hash (env : env) (tok : CST.imm_tok_hash) = + (* "#" *) token env tok + +let map_semgrep_named_ellipsis (env : env) (tok : CST.semgrep_named_ellipsis) = + (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) token env tok + +let map_imm_tok_eq (env : env) (tok : CST.imm_tok_eq) = + (* "=" *) token env tok + +let map_imm_tok_k_ (env : env) (tok : CST.imm_tok_k_) = + (* "k" *) token env tok + +let map_anon_choice_LTLT_5d21964 (env : env) (x : CST.anon_choice_LTLT_5d21964) = + (match x with + | `LTLT tok -> R.Case ("LTLT", + (* "<<" *) token env tok + ) + | `GTGT tok -> R.Case ("GTGT", + (* ">>" *) token env tok + ) + ) + +let map_external_expansion_sym_equal (env : env) (tok : CST.external_expansion_sym_equal) = + (* external_expansion_sym_equal *) token env tok + +let map_imm_tok_u_ (env : env) (tok : CST.imm_tok_u_) = + (* "u" *) token env tok + +let map_ansi_c_string (env : env) (tok : CST.ansi_c_string) = + (* pattern "\\$'([^']|\\\\')*'" *) token env tok + +let map_bare_dollar (env : env) (tok : CST.bare_dollar) = + (* bare_dollar *) token env tok + +let map_imm_tok_plus (env : env) (tok : CST.imm_tok_plus) = + (* "+" *) token env tok + let map_semgrep_metavariable (env : env) (tok : CST.semgrep_metavariable) = (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok -let map_string_content (env : env) (tok : CST.string_content) = - (* string_content *) token env tok +let map_external_expansion_sym_hash (env : env) (tok : CST.external_expansion_sym_hash) = + (* external_expansion_sym_hash *) token env tok + +let map_pat_421f39f (env : env) (tok : CST.pat_421f39f) = + (* pattern -?(0x)?[0-9]+(#[0-9A-Za-z@_]+)? *) token env tok + +let map_anon_choice_PLUS_da42005 (env : env) (x : CST.anon_choice_PLUS_da42005) = + (match x with + | `PLUS tok -> R.Case ("PLUS", + (* "+" *) token env tok + ) + | `DASH tok -> R.Case ("DASH", + (* "-" *) token env tok + ) + ) + +let map_tok_prec_p1_plusplus (env : env) (tok : CST.tok_prec_p1_plusplus) = + (* tok_prec_p1_plusplus *) token env tok + +let map_imm_tok_colonqmark (env : env) (tok : CST.imm_tok_colonqmark) = + (* ":?" *) token env tok + +let map_imm_tok_p (env : env) (tok : CST.imm_tok_p) = + (* "P" *) token env tok + +let map_semgrep_metavar_pluseq (env : env) (tok : CST.semgrep_metavar_pluseq) = + (* pattern \$[A-Z_][A-Z_0-9]*\+= *) token env tok + +let map_anon_choice_BAR_9062646 (env : env) (x : CST.anon_choice_BAR_9062646) = + (match x with + | `BAR tok -> R.Case ("BAR", + (* "|" *) token env tok + ) + | `BARAMP tok -> R.Case ("BARAMP", + (* "|&" *) token env tok + ) + ) let map_empty_value (env : env) (tok : CST.empty_value) = (* empty_value *) token env tok -let map_word (env : env) (tok : CST.word) = - (* word *) token env tok +let map_semgrep_metavar_eq (env : env) (tok : CST.semgrep_metavar_eq) = + (* pattern \$[A-Z_][A-Z_0-9]*= *) token env tok -let map_raw_string (env : env) (tok : CST.raw_string) = - (* pattern "'[^']*'" *) token env tok +let map_pat_42e353e (env : env) (tok : CST.pat_42e353e) = + (* pattern \w+ *) token env tok -let map_regex (env : env) (tok : CST.regex) = - (* regex *) token env tok +let map_anon_choice_EQ_2bc102b (env : env) (x : CST.anon_choice_EQ_2bc102b) = + (match x with + | `EQ tok -> R.Case ("EQ", + (* "=" *) token env tok + ) + | `EQTILDE tok -> R.Case ("EQTILDE", + (* "=~" *) token env tok + ) + ) -let map_heredoc_body_end (env : env) (tok : CST.heredoc_body_end) = - (* heredoc_body_end *) token env tok +let map_comment_word (env : env) (tok : CST.comment_word) = + (* comment_word *) token env tok -let map_ansii_c_string (env : env) (tok : CST.ansii_c_string) = - (* pattern "\\$'([^']|\\\\')*'" *) token env tok +let map_tok_prec_p1_dashdash (env : env) (tok : CST.tok_prec_p1_dashdash) = + (* tok_prec_p1_dashdash *) token env tok + +let map_heredoc_end (env : env) (tok : CST.heredoc_end) = + (* heredoc_end *) token env tok + +let map_regex_no_space (env : env) (tok : CST.regex_no_space) = + (* regex_no_space *) token env tok + +let map_imm_tok_q (env : env) (tok : CST.imm_tok_q) = + (* "Q" *) token env tok + +let map_pat_3d340f6 (env : env) (tok : CST.pat_3d340f6) = + (* pattern \s+ *) token env tok let map_special_character (env : env) (tok : CST.special_character) = (* special_character *) token env tok -let map_concat (env : env) (tok : CST.concat) = - (* concat *) token env tok - -let map_semgrep_metavar_eq (env : env) (tok : CST.semgrep_metavar_eq) = - (* pattern \$[A-Z_][A-Z_0-9]*= *) token env tok +let map_variable_name (env : env) (tok : CST.variable_name) = + (* variable_name *) token env tok -let map_special_variable_name (env : env) (x : CST.special_variable_name) = +let map_anon_choice_STAR_6fc9218 (env : env) (x : CST.anon_choice_STAR_6fc9218) = (match x with | `STAR tok -> R.Case ("STAR", (* "*" *) token env tok ) - | `AT tok -> R.Case ("AT", - (* "@" *) token env tok + | `SLASH tok -> R.Case ("SLASH", + (* "/" *) token env tok ) - | `QMARK tok -> R.Case ("QMARK", - (* "?" *) token env tok + | `PERC tok -> R.Case ("PERC", + (* "%" *) token env tok ) - | `DASH tok -> R.Case ("DASH", - (* "-" *) token env tok + ) + +let map_immediate_double_hash (env : env) (tok : CST.immediate_double_hash) = + (* immediate_double_hash *) token env tok + +let map_imm_tok_k (env : env) (tok : CST.imm_tok_k) = + (* "K" *) token env tok + +let map_extglob_pattern (env : env) (tok : CST.extglob_pattern) = + (* extglob_pattern *) token env tok + +let map_brace_start (env : env) (tok : CST.brace_start) = + (* brace_start *) token env tok + +let map_test_operator (env : env) (tok : CST.test_operator) = + (* test_operator *) token env tok + +let map_imm_tok_at (env : env) (tok : CST.imm_tok_at) = + (* "@" *) token env tok + +let map_pat_2b6adbc (env : env) (tok : CST.pat_2b6adbc) = + (* pattern [a-zA-Z_][a-zA-Z0-9_]* *) token env tok + +let map_imm_tok_pat_217c202 (env : env) (tok : CST.imm_tok_pat_217c202) = + (* pattern \d+ *) token env tok + +let map_imm_tok_star (env : env) (tok : CST.imm_tok_star) = + (* "*" *) token env tok + +let map_imm_tok_rcurl (env : env) (tok : CST.imm_tok_rcurl) = + (* "}" *) token env tok + +let map_anon_choice_PLUSEQ_110f722 (env : env) (x : CST.anon_choice_PLUSEQ_110f722) = + (match x with + | `PLUSEQ tok -> R.Case ("PLUSEQ", + (* "+=" *) token env tok ) - | `DOLLAR tok -> R.Case ("DOLLAR", - (* "$" *) token env tok + | `DASHEQ tok -> R.Case ("DASHEQ", + (* "-=" *) token env tok ) - | `X_0 tok -> R.Case ("X_0", - (* "0" *) token env tok + | `STAREQ tok -> R.Case ("STAREQ", + (* "*=" *) token env tok ) - | `X__ tok -> R.Case ("X__", - (* "_" *) token env tok + | `SLASHEQ tok -> R.Case ("SLASHEQ", + (* "/=" *) token env tok + ) + | `PERCEQ tok -> R.Case ("PERCEQ", + (* "%=" *) token env tok + ) + | `STARSTAREQ tok -> R.Case ("STARSTAREQ", + (* "**=" *) token env tok + ) + | `LTLTEQ tok -> R.Case ("LTLTEQ", + (* "<<=" *) token env tok + ) + | `GTGTEQ tok -> R.Case ("GTGTEQ", + (* ">>=" *) token env tok + ) + | `AMPEQ tok -> R.Case ("AMPEQ", + (* "&=" *) token env tok + ) + | `HATEQ tok -> R.Case ("HATEQ", + (* "^=" *) token env tok + ) + | `BAREQ tok -> R.Case ("BAREQ", + (* "|=" *) token env tok ) ) -let map_simple_heredoc_body (env : env) (tok : CST.simple_heredoc_body) = - (* simple_heredoc_body *) token env tok +let map_expansion_word (env : env) (tok : CST.expansion_word) = + (* expansion_word *) token env tok -let map_terminator (env : env) (x : CST.terminator) = +let map_imm_tok_a (env : env) (tok : CST.imm_tok_a) = + (* "A" *) token env tok + +let map_imm_tok_u (env : env) (tok : CST.imm_tok_u) = + (* "U" *) token env tok + +let map_string_content (env : env) (tok : CST.string_content) = + (* string_content *) token env tok + +let map_imm_tok_qmark (env : env) (tok : CST.imm_tok_qmark) = + (* "?" *) token env tok + +let map_heredoc_body_beginning (env : env) (tok : CST.heredoc_body_beginning) = + (* heredoc_body_beginning *) token env tok + +let map_regex (env : env) (tok : CST.regex) = + (* regex *) token env tok + +let map_regex_no_slash (env : env) (tok : CST.regex_no_slash) = + (* regex_no_slash *) token env tok + +let map_imm_tok_e (env : env) (tok : CST.imm_tok_e) = + (* "E" *) token env tok + +let map_pat_a883a20 (env : env) (tok : CST.pat_a883a20) = + (* pattern `\s*` *) token env tok + +let map_concat (env : env) (tok : CST.concat) = + (* concat *) token env tok + +let map_imm_tok_l (env : env) (tok : CST.imm_tok_l) = + (* "L" *) token env tok + +let map_imm_tok_dotdot (env : env) (tok : CST.imm_tok_dotdot) = + (* ".." *) token env tok + +let map_raw_string (env : env) (tok : CST.raw_string) = + (* pattern "'[^']*'" *) token env tok + +let map_imm_tok_colonplus (env : env) (tok : CST.imm_tok_colonplus) = + (* ":+" *) token env tok + +let map_anon_choice_LT_995091f (env : env) (x : CST.anon_choice_LT_995091f) = (match x with - | `SEMI tok -> R.Case ("SEMI", - (* ";" *) token env tok + | `LT tok -> R.Case ("LT", + (* "<" *) token env tok ) - | `SEMISEMI tok -> R.Case ("SEMISEMI", - (* ";;" *) token env tok + | `GT tok -> R.Case ("GT", + (* ">" *) token env tok ) - | `LF tok -> R.Case ("LF", - (* "\n" *) token env tok + | `LTEQ tok -> R.Case ("LTEQ", + (* "<=" *) token env tok ) - | `AMP tok -> R.Case ("AMP", - (* "&" *) token env tok + | `GTEQ tok -> R.Case ("GTEQ", + (* ">=" *) token env tok ) ) +let map_tok_prec_n1_pat_ac9ca5c (env : env) (tok : CST.tok_prec_n1_pat_ac9ca5c) = + (* tok_prec_n1_pat_ac9ca5c *) token env tok + +let map_tok_prec_p1_tilde (env : env) (tok : CST.tok_prec_p1_tilde) = + (* tok_prec_p1_tilde *) token env tok + +let map_pat_b978cc7 (env : env) (tok : CST.pat_b978cc7) = + (* pattern -?(0x)?[0-9]+# *) token env tok + +let map_word (env : env) (tok : CST.word) = + (* word *) token env tok + +let map_file_descriptor (env : env) (tok : CST.file_descriptor) = + (* file_descriptor *) token env tok + let map_heredoc_start (env : env) (tok : CST.heredoc_start) = (* heredoc_start *) token env tok -let map_heredoc_body_middle (env : env) (tok : CST.heredoc_body_middle) = - (* heredoc_body_middle *) token env tok +let map_tok_prec_p1_dash (env : env) (tok : CST.tok_prec_p1_dash) = + (* tok_prec_p1_dash *) token env tok -let map_pat_42e353e (env : env) (tok : CST.pat_42e353e) = - (* pattern \w+ *) token env tok +let map_imm_tok_bang (env : env) (tok : CST.imm_tok_bang) = + (* "!" *) token env tok -let map_semgrep_named_ellipsis (env : env) (tok : CST.semgrep_named_ellipsis) = - (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) token env tok +let map_tok_prec_p1_plus (env : env) (tok : CST.tok_prec_p1_plus) = + (* tok_prec_p1_plus *) token env tok -let map_semgrep_metavar_pluseq (env : env) (tok : CST.semgrep_metavar_pluseq) = - (* pattern \$[A-Z_][A-Z_0-9]*\+= *) token env tok +let map_tok_prec_n1_rcurl (env : env) (tok : CST.tok_prec_n1_rcurl) = + (* tok_prec_n1_rcurl *) token env tok -let map_file_descriptor (env : env) (tok : CST.file_descriptor) = - (* file_descriptor *) token env tok +let map_imm_tok_colondash (env : env) (tok : CST.imm_tok_colondash) = + (* ":-" *) token env tok -let map_test_operator (env : env) (tok : CST.test_operator) = - (* test_operator *) token env tok +let map_imm_tok_dash (env : env) (tok : CST.imm_tok_dash) = + (* "-" *) token env tok -let map_tok_prec_p1_slash (env : env) (tok : CST.tok_prec_p1_slash) = - (* tok_prec_p1_slash *) token env tok +let map_imm_tok_a_ (env : env) (tok : CST.imm_tok_a_) = + (* "a" *) token env tok -let map_heredoc_body_beginning (env : env) (tok : CST.heredoc_body_beginning) = - (* heredoc_body_beginning *) token env tok +let map_pat_1d78758 (env : env) (tok : CST.pat_1d78758) = + (* pattern \n *) token env tok -let map_variable_name (env : env) (tok : CST.variable_name) = - (* variable_name *) token env tok +let map_simple_heredoc_body_ (env : env) (tok : CST.simple_heredoc_body_) = + (* simple_heredoc_body_ *) token env tok -let map_extended_word (env : env) (x : CST.extended_word) = +let map_anon_choice_PLUSPLUS_e498e28 (env : env) (x : CST.anon_choice_PLUSPLUS_e498e28) = (match x with - | `Semg_meta tok -> R.Case ("Semg_meta", - (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok + | `PLUSPLUS tok -> R.Case ("PLUSPLUS", + (* "++" *) token env tok ) - | `Word tok -> R.Case ("Word", - (* word *) token env tok + | `DASHDASH tok -> R.Case ("DASHDASH", + (* "--" *) token env tok ) ) -let map_heredoc_redirect (env : env) ((v1, v2) : CST.heredoc_redirect) = - let v1 = - (match v1 with - | `LTLT tok -> R.Case ("LTLT", - (* "<<" *) token env tok - ) - | `LTLTDASH tok -> R.Case ("LTLTDASH", - (* "<<-" *) token env tok - ) - ) - in - let v2 = (* heredoc_start *) token env v2 in - R.Tuple [v1; v2] +let map_heredoc_content (env : env) (tok : CST.heredoc_content) = + (* heredoc_content *) token env tok -let map_orig_simple_variable_name (env : env) (x : CST.orig_simple_variable_name) = - map_pat_42e353e env x +let map_external_expansion_sym_bang (env : env) (tok : CST.external_expansion_sym_bang) = + (* external_expansion_sym_bang *) token env tok -let map_simple_variable_name (env : env) (x : CST.simple_variable_name) = +let map_imm_tok_coloneq (env : env) (tok : CST.imm_tok_coloneq) = + (* ":=" *) token env tok + +let map_special_variable_name (env : env) (x : CST.special_variable_name) = (match x with - | `Semg_meta tok -> R.Case ("Semg_meta", - (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok + | `STAR tok -> R.Case ("STAR", + (* "*" *) token env tok ) - | `Pat_42e353e x -> R.Case ("Pat_42e353e", - map_orig_simple_variable_name env x + | `AT tok -> R.Case ("AT", + (* "@" *) token env tok ) - ) - -let map_simple_expansion (env : env) (x : CST.simple_expansion) = - (match x with - | `DOLLAR_choice_orig_simple_var_name (v1, v2) -> R.Case ("DOLLAR_choice_orig_simple_var_name", - let v1 = (* "$" *) token env v1 in - let v2 = - (match v2 with - | `Orig_simple_var_name x -> R.Case ("Orig_simple_var_name", - map_orig_simple_variable_name env x - ) - | `Choice_STAR x -> R.Case ("Choice_STAR", - map_special_variable_name env x - ) - | `BANG tok -> R.Case ("BANG", - (* "!" *) token env tok - ) - | `HASH tok -> R.Case ("HASH", - (* "#" *) token env tok - ) - ) - in - R.Tuple [v1; v2] + | `QMARK tok -> R.Case ("QMARK", + (* "?" *) token env tok ) - | `Semg_named_ellips tok -> R.Case ("Semg_named_ellips", - (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) token env tok + | `BANG tok -> R.Case ("BANG", + (* "!" *) token env tok + ) + | `HASH tok -> R.Case ("HASH", + (* "#" *) token env tok + ) + | `DASH tok -> R.Case ("DASH", + (* "-" *) token env tok + ) + | `DOLLAR tok -> R.Case ("DOLLAR", + (* "$" *) token env tok + ) + | `X__ tok -> R.Case ("X__", + (* "_" *) token env tok ) ) -let rec map_anon_choice_lit_bbf16c7 (env : env) (x : CST.anon_choice_lit_bbf16c7) = +let map_anon_choice_EQEQ_8fff75a (env : env) (x : CST.anon_choice_EQEQ_8fff75a) = (match x with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `Array (v1, v2, v3) -> R.Case ("Array", - let v1 = (* "(" *) token env v1 in - let v2 = R.List (List.map (map_literal env) v2) in - let v3 = (* ")" *) token env v3 in - R.Tuple [v1; v2; v3] + | `EQEQ tok -> R.Case ("EQEQ", + (* "==" *) token env tok ) - | `Empty_value tok -> R.Case ("Empty_value", - (* empty_value *) token env tok + | `BANGEQ tok -> R.Case ("BANGEQ", + (* "!=" *) token env tok ) ) -and map_anon_choice_prim_exp_65e2c2e (env : env) (x : CST.anon_choice_prim_exp_65e2c2e) = +let map_orig_simple_variable_name (env : env) (x : CST.orig_simple_variable_name) = + map_pat_42e353e env x + +let map_anon_choice_tok_prec_p1_plusps_0918a88 (env : env) (x : CST.anon_choice_tok_prec_p1_plusps_0918a88) = (match x with - | `Choice_semg_deep_exp x -> R.Case ("Choice_semg_deep_exp", - map_primary_expression env x + | `Tok_prec_p1_plusps x -> R.Case ("Tok_prec_p1_plusps", + map_tok_prec_p1_plusplus env x ) - | `Spec_char tok -> R.Case ("Spec_char", - (* special_character *) token env tok + | `Tok_prec_p1_dash x -> R.Case ("Tok_prec_p1_dash", + map_tok_prec_p1_dashdash env x ) ) -and map_anon_stmt_opt_LF_here_body_term_3efa649 (env : env) ((v1, v2, v3) : CST.anon_stmt_opt_LF_here_body_term_3efa649) = - let v1 = map_statement env v1 in +let map_c_word (env : env) (x : CST.c_word) = + map_pat_2b6adbc env x + +let map_expansion_regex_removal (env : env) ((v1, v2) : CST.expansion_regex_removal) = + let v1 = + (match v1 with + | `COMMA tok -> R.Case ("COMMA", + (* "," *) token env tok + ) + | `COMMACOMMA tok -> R.Case ("COMMACOMMA", + (* ",," *) token env tok + ) + | `HAT tok -> R.Case ("HAT", + (* "^" *) token env tok + ) + | `HATHAT tok -> R.Case ("HATHAT", + (* "^^" *) token env tok + ) + ) + in let v2 = (match v2 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = (* "\n" *) token env v1 in - let v2 = map_heredoc_body env v2 in - R.Tuple [v1; v2] + | Some tok -> R.Option (Some ( + (* regex *) token env tok )) | None -> R.Option None) in - let v3 = map_terminator env v3 in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] -and map_binary_expression (env : env) (x : CST.binary_expression) = +let map_anon_choice_concat_28900c6 (env : env) (x : CST.anon_choice_concat_28900c6) = (match x with - | `Exp_choice_EQ_exp (v1, v2, v3) -> R.Case ("Exp_choice_EQ_exp", - let v1 = map_expression env v1 in - let v2 = - (match v2 with - | `EQ tok -> R.Case ("EQ", - (* "=" *) token env tok - ) - | `EQEQ tok -> R.Case ("EQEQ", - (* "==" *) token env tok - ) - | `EQTILDE tok -> R.Case ("EQTILDE", - (* "=~" *) token env tok - ) - | `BANGEQ tok -> R.Case ("BANGEQ", - (* "!=" *) token env tok - ) - | `PLUS tok -> R.Case ("PLUS", - (* "+" *) token env tok - ) - | `DASH tok -> R.Case ("DASH", - (* "-" *) token env tok - ) - | `PLUSEQ tok -> R.Case ("PLUSEQ", - (* "+=" *) token env tok - ) - | `DASHEQ tok -> R.Case ("DASHEQ", - (* "-=" *) token env tok - ) - | `LT tok -> R.Case ("LT", - (* "<" *) token env tok + | `Concat tok -> R.Case ("Concat", + (* concat *) token env tok + ) + | `Pat_a883a20 x -> R.Case ("Pat_a883a20", + map_pat_a883a20 env x + ) + ) + +let map_brace_expression (env : env) ((v1, v2, v3, v4, v5) : CST.brace_expression) = + let v1 = (* brace_start *) token env v1 in + let v2 = map_imm_tok_pat_217c202 env v2 in + let v3 = map_imm_tok_dotdot env v3 in + let v4 = map_imm_tok_pat_217c202 env v4 in + let v5 = map_imm_tok_rcurl env v5 in + R.Tuple [v1; v2; v3; v4; v5] + +let map_extended_word (env : env) (x : CST.extended_word) = + (match x with + | `Semg_meta tok -> R.Case ("Semg_meta", + (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok + ) + | `Word tok -> R.Case ("Word", + (* word *) token env tok + ) + ) + +let map_anon_choice_tok_prec_p1_dash_a8e1cc3 (env : env) (x : CST.anon_choice_tok_prec_p1_dash_a8e1cc3) = + (match x with + | `Tok_prec_p1_dash x -> R.Case ("Tok_prec_p1_dash", + map_tok_prec_p1_dash env x + ) + | `Tok_prec_p1_plus x -> R.Case ("Tok_prec_p1_plus", + map_tok_prec_p1_plus env x + ) + | `Tok_prec_p1_tilde x -> R.Case ("Tok_prec_p1_tilde", + map_tok_prec_p1_tilde env x + ) + ) + +let map_expansion_operator (env : env) ((v1, v2) : CST.expansion_operator) = + let v1 = map_imm_tok_at env v1 in + let v2 = + (match v2 with + | `Imm_tok_u x -> R.Case ("Imm_tok_u", + map_imm_tok_u env x + ) + | `Imm_tok_u_ x -> R.Case ("Imm_tok_u_", + map_imm_tok_u_ env x + ) + | `Imm_tok_l x -> R.Case ("Imm_tok_l", + map_imm_tok_l env x + ) + | `Imm_tok_q x -> R.Case ("Imm_tok_q", + map_imm_tok_q env x + ) + | `Imm_tok_e x -> R.Case ("Imm_tok_e", + map_imm_tok_e env x + ) + | `Imm_tok_p x -> R.Case ("Imm_tok_p", + map_imm_tok_p env x + ) + | `Imm_tok_a x -> R.Case ("Imm_tok_a", + map_imm_tok_a env x + ) + | `Imm_tok_k x -> R.Case ("Imm_tok_k", + map_imm_tok_k env x + ) + | `Imm_tok_a_ x -> R.Case ("Imm_tok_a_", + map_imm_tok_a_ env x + ) + | `Imm_tok_k_ x -> R.Case ("Imm_tok_k_", + map_imm_tok_k_ env x + ) + ) + in + R.Tuple [v1; v2] + +let map_c_terminator (env : env) (x : CST.c_terminator) = + (match x with + | `SEMI tok -> R.Case ("SEMI", + (* ";" *) token env tok + ) + | `Pat_1d78758 x -> R.Case ("Pat_1d78758", + map_pat_1d78758 env x + ) + | `AMP tok -> R.Case ("AMP", + (* "&" *) token env tok + ) + ) + +let map_terminator (env : env) (x : CST.terminator) = + (match x with + | `SEMI tok -> R.Case ("SEMI", + (* ";" *) token env tok + ) + | `SEMISEMI tok -> R.Case ("SEMISEMI", + (* ";;" *) token env tok + ) + | `Pat_1d78758 x -> R.Case ("Pat_1d78758", + map_pat_1d78758 env x + ) + | `AMP tok -> R.Case ("AMP", + (* "&" *) token env tok + ) + ) + +let map_simple_heredoc_body (env : env) ((v1, v2) : CST.simple_heredoc_body) = + let v1 = (* simple_heredoc_body_ *) token env v1 in + let v2 = (* heredoc_end *) token env v2 in + R.Tuple [v1; v2] + +let map_anon_choice_exte_expa_sym_hash_a1d74dc (env : env) (x : CST.anon_choice_exte_expa_sym_hash_a1d74dc) = + (match x with + | `Exte_expa_sym_hash tok -> R.Case ("Exte_expa_sym_hash", + (* external_expansion_sym_hash *) token env tok + ) + | `Exte_expa_sym_bang tok -> R.Case ("Exte_expa_sym_bang", + (* external_expansion_sym_bang *) token env tok + ) + | `Exte_expa_sym_equal tok -> R.Case ("Exte_expa_sym_equal", + (* external_expansion_sym_equal *) token env tok + ) + ) + +let map_simple_expansion (env : env) (x : CST.simple_expansion) = + (match x with + | `DOLLAR_choice_orig_simple_var_name (v1, v2) -> R.Case ("DOLLAR_choice_orig_simple_var_name", + let v1 = (* "$" *) token env v1 in + let v2 = + (match v2 with + | `Orig_simple_var_name x -> R.Case ("Orig_simple_var_name", + map_orig_simple_variable_name env x ) - | `GT tok -> R.Case ("GT", - (* ">" *) token env tok + | `Choice_STAR x -> R.Case ("Choice_STAR", + map_special_variable_name env x ) - | `LTEQ tok -> R.Case ("LTEQ", - (* "<=" *) token env tok + | `BANG tok -> R.Case ("BANG", + (* "!" *) token env tok ) - | `GTEQ tok -> R.Case ("GTEQ", - (* ">=" *) token env tok + | `HASH tok -> R.Case ("HASH", + (* "#" *) token env tok ) + ) + in + R.Tuple [v1; v2] + ) + | `Semg_named_ellips tok -> R.Case ("Semg_named_ellips", + (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) token env tok + ) + ) + +let map_simple_variable_name (env : env) (x : CST.simple_variable_name) = + (match x with + | `Semg_meta tok -> R.Case ("Semg_meta", + (* pattern \$[A-Z_][A-Z_0-9]* *) token env tok + ) + | `Pat_42e353e x -> R.Case ("Pat_42e353e", + map_orig_simple_variable_name env x + ) + ) + +let rec map_anon_c_exp_rep_COMMA_c_exp_f9a26b6 (env : env) ((v1, v2) : CST.anon_c_exp_rep_COMMA_c_exp_f9a26b6) = + let v1 = map_c_expression env v1 in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_c_expression env v2 in + R.Tuple [v1; v2] + ) v2) + in + R.Tuple [v1; v2] + +and map_anon_choice_lit_af2a0ae (env : env) (x : CST.anon_choice_lit_af2a0ae) = + (match x with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Extg_blob x -> R.Case ("Extg_blob", + map_extglob_blob env x + ) + ) + +and map_anon_choice_simple_var_name_b9e31ae (env : env) (x : CST.anon_choice_simple_var_name_b9e31ae) = + (match x with + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Num x -> R.Case ("Num", + map_number env x + ) + | `Arit_expa x -> R.Case ("Arit_expa", + map_arithmetic_expansion env x + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Paren_exp x -> R.Case ("Paren_exp", + map_parenthesized_expression env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + | `Expa_max_len_bin_exp x -> R.Case ("Expa_max_len_bin_exp", + map_expansion_max_length_binary_expression env x + ) + | `Pat_1d78758 x -> R.Case ("Pat_1d78758", + map_pat_1d78758 env x + ) + ) + +and map_anon_choice_word_54526ae (env : env) (x : CST.anon_choice_word_54526ae) = + (match x with + | `Word tok -> R.Case ("Word", + (* word *) token env tok + ) + | `Var_name tok -> R.Case ("Var_name", + (* variable_name *) token env tok + ) + | `Simple_expa x -> R.Case ("Simple_expa", + map_simple_expansion env x + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `Raw_str tok -> R.Case ("Raw_str", + (* pattern "'[^']*'" *) token env tok + ) + | `Ansi_c_str tok -> R.Case ("Ansi_c_str", + (* pattern "\\$'([^']|\\\\')*'" *) token env tok + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + | `Expa_word tok -> R.Case ("Expa_word", + (* expansion_word *) token env tok + ) + | `Array x -> R.Case ("Array", + map_array_ env x + ) + | `Proc_subs x -> R.Case ("Proc_subs", + map_process_substitution env x + ) + ) + +and map_arithmetic_binary_expression (env : env) (x : CST.arithmetic_binary_expression) = + (match x with + | `Arit_exp_choice_PLUSEQ_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_PLUSEQ_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_PLUSEQ_110f722 env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_EQ_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_EQ_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_EQ_2bc102b env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_BARBAR_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_BARBAR_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "||" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_AMPAMP_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_AMPAMP_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "&&" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_BAR_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_BAR_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "|" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_HAT_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_HAT_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "^" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_AMP_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_AMP_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "&" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_EQEQ_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_EQEQ_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_EQEQ_8fff75a env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_LT_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_LT_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_LT_995091f env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_LTLT_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_LTLT_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_LTLT_5d21964 env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_PLUS_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_PLUS_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_PLUS_da42005 env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_choice_STAR_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_choice_STAR_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_STAR_6fc9218 env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Arit_exp_STARSTAR_arit_exp (v1, v2, v3) -> R.Case ("Arit_exp_STARSTAR_arit_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "**" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +and map_arithmetic_expansion (env : env) (x : CST.arithmetic_expansion) = + (match x with + | `DOLLARLPARLPAR_arit_exp_rep_COMMA_arit_exp_RPARRPAR (v1, v2, v3, v4) -> R.Case ("DOLLARLPARLPAR_arit_exp_rep_COMMA_arit_exp_RPARRPAR", + let v1 = (* "$((" *) token env v1 in + let v2 = map_arithmetic_expression env v2 in + let v3 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_arithmetic_expression env v2 in + R.Tuple [v1; v2] + ) v3) + in + let v4 = (* "))" *) token env v4 in + R.Tuple [v1; v2; v3; v4] + ) + | `DOLLARLBRACK_arit_exp_RBRACK (v1, v2, v3) -> R.Case ("DOLLARLBRACK_arit_exp_RBRACK", + let v1 = (* "$[" *) token env v1 in + let v2 = map_arithmetic_expression env v2 in + let v3 = (* "]" *) token env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +and map_arithmetic_expression (env : env) (x : CST.arithmetic_expression) = + (match x with + | `Arit_lit x -> R.Case ("Arit_lit", + map_arithmetic_literal env x + ) + | `Arit_un_exp x -> R.Case ("Arit_un_exp", + map_arithmetic_unary_expression env x + ) + | `Arit_tern_exp (v1, v2, v3, v4, v5) -> R.Case ("Arit_tern_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "?" *) token env v2 in + let v3 = map_arithmetic_expression env v3 in + let v4 = (* ":" *) token env v4 in + let v5 = map_arithmetic_expression env v5 in + R.Tuple [v1; v2; v3; v4; v5] + ) + | `Arit_bin_exp x -> R.Case ("Arit_bin_exp", + map_arithmetic_binary_expression env x + ) + | `Arit_post_exp (v1, v2) -> R.Case ("Arit_post_exp", + let v1 = map_arithmetic_expression env v1 in + let v2 = map_anon_choice_PLUSPLUS_e498e28 env v2 in + R.Tuple [v1; v2] + ) + | `Arit_paren_exp (v1, v2, v3) -> R.Case ("Arit_paren_exp", + let v1 = (* "(" *) token env v1 in + let v2 = map_arithmetic_expression env v2 in + let v3 = (* ")" *) token env v3 in + R.Tuple [v1; v2; v3] + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + ) + +and map_arithmetic_literal (env : env) (x : CST.arithmetic_literal) = + (match x with + | `Num x -> R.Case ("Num", + map_number env x + ) + | `Subs x -> R.Case ("Subs", + map_subscript env x + ) + | `Simple_expa x -> R.Case ("Simple_expa", + map_simple_expansion env x + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Var_name tok -> R.Case ("Var_name", + (* variable_name *) token env tok + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `Raw_str tok -> R.Case ("Raw_str", + (* pattern "'[^']*'" *) token env tok + ) + ) + +and map_arithmetic_unary_expression (env : env) (x : CST.arithmetic_unary_expression) = + (match x with + | `Choice_tok_prec_p1_plusps_arit_exp (v1, v2) -> R.Case ("Choice_tok_prec_p1_plusps_arit_exp", + let v1 = + map_anon_choice_tok_prec_p1_plusps_0918a88 env v1 + in + let v2 = map_arithmetic_expression env v2 in + R.Tuple [v1; v2] + ) + | `Choice_tok_prec_p1_dash_arit_exp (v1, v2) -> R.Case ("Choice_tok_prec_p1_dash_arit_exp", + let v1 = map_anon_choice_tok_prec_p1_dash_a8e1cc3 env v1 in + let v2 = map_arithmetic_expression env v2 in + R.Tuple [v1; v2] + ) + | `BANG_arit_exp (v1, v2) -> R.Case ("BANG_arit_exp", + let v1 = (* "!" *) token env v1 in + let v2 = map_arithmetic_expression env v2 in + R.Tuple [v1; v2] + ) + ) + +and map_array_ (env : env) ((v1, v2, v3) : CST.array_) = + let v1 = (* "(" *) token env v1 in + let v2 = R.List (List.map (map_literal env) v2) in + let v3 = (* ")" *) token env v3 in + R.Tuple [v1; v2; v3] + +and map_binary_expression (env : env) (x : CST.binary_expression) = + (match x with + | `Choice_exp_choice_PLUSEQ_exp x -> R.Case ("Choice_exp_choice_PLUSEQ_exp", + (match x with + | `Exp_choice_PLUSEQ_exp (v1, v2, v3) -> R.Case ("Exp_choice_PLUSEQ_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_PLUSEQ_110f722 env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_EQ_exp (v1, v2, v3) -> R.Case ("Exp_choice_EQ_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_EQ_2bc102b env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_BARBAR_exp (v1, v2, v3) -> R.Case ("Exp_BARBAR_exp", + let v1 = map_expression env v1 in + let v2 = (* "||" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_AMPAMP_exp (v1, v2, v3) -> R.Case ("Exp_AMPAMP_exp", + let v1 = map_expression env v1 in + let v2 = (* "&&" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_BAR_exp (v1, v2, v3) -> R.Case ("Exp_BAR_exp", + let v1 = map_expression env v1 in + let v2 = (* "|" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_HAT_exp (v1, v2, v3) -> R.Case ("Exp_HAT_exp", + let v1 = map_expression env v1 in + let v2 = (* "^" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_AMP_exp (v1, v2, v3) -> R.Case ("Exp_AMP_exp", + let v1 = map_expression env v1 in + let v2 = (* "&" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_EQEQ_exp (v1, v2, v3) -> R.Case ("Exp_choice_EQEQ_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_EQEQ_8fff75a env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_LT_exp (v1, v2, v3) -> R.Case ("Exp_choice_LT_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_LT_995091f env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_test_op_exp (v1, v2, v3) -> R.Case ("Exp_test_op_exp", + let v1 = map_expression env v1 in + let v2 = (* test_operator *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_LTLT_exp (v1, v2, v3) -> R.Case ("Exp_choice_LTLT_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_LTLT_5d21964 env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_PLUS_exp (v1, v2, v3) -> R.Case ("Exp_choice_PLUS_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_PLUS_da42005 env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_STAR_exp (v1, v2, v3) -> R.Case ("Exp_choice_STAR_exp", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_STAR_6fc9218 env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_STARSTAR_exp (v1, v2, v3) -> R.Case ("Exp_STARSTAR_exp", + let v1 = map_expression env v1 in + let v2 = (* "**" *) token env v2 in + let v3 = map_expression env v3 in + R.Tuple [v1; v2; v3] + ) + ) + ) + | `Exp_EQTILDE_regex_no_sp (v1, v2, v3) -> R.Case ("Exp_EQTILDE_regex_no_sp", + let v1 = map_expression env v1 in + let v2 = (* "=~" *) token env v2 in + let v3 = (* regex_no_space *) token env v3 in + R.Tuple [v1; v2; v3] + ) + | `Exp_choice_EQEQ_extg_blob (v1, v2, v3) -> R.Case ("Exp_choice_EQEQ_extg_blob", + let v1 = map_expression env v1 in + let v2 = map_anon_choice_EQEQ_8fff75a env v2 in + let v3 = map_extglob_blob env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +and map_c_binary_expression (env : env) (x : CST.c_binary_expression) = + (match x with + | `C_exp_not_assign_choice_PLUSEQ_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_PLUSEQ_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_PLUSEQ_110f722 env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_BARBAR_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_BARBAR_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = + (match v2 with | `BARBAR tok -> R.Case ("BARBAR", (* "||" *) token env tok ) - | `AMPAMP tok -> R.Case ("AMPAMP", - (* "&&" *) token env tok - ) - | `Test_op tok -> R.Case ("Test_op", - (* test_operator *) token env tok + | `DASHo tok -> R.Case ("DASHo", + (* "-o" *) token env tok ) ) in - let v3 = map_expression env v3 in + let v3 = map_c_expression_not_assignment env v3 in R.Tuple [v1; v2; v3] ) - | `Exp_choice_EQEQ_regex (v1, v2, v3) -> R.Case ("Exp_choice_EQEQ_regex", - let v1 = map_expression env v1 in + | `C_exp_not_assign_choice_AMPAMP_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_AMPAMP_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in let v2 = (match v2 with - | `EQEQ tok -> R.Case ("EQEQ", - (* "==" *) token env tok + | `AMPAMP tok -> R.Case ("AMPAMP", + (* "&&" *) token env tok ) - | `EQTILDE tok -> R.Case ("EQTILDE", - (* "=~" *) token env tok + | `DASHa tok -> R.Case ("DASHa", + (* "-a" *) token env tok ) ) in - let v3 = (* regex *) token env v3 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_BAR_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_BAR_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = (* "|" *) token env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_HAT_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_HAT_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = (* "^" *) token env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_AMP_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_AMP_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = (* "&" *) token env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_EQEQ_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_EQEQ_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_EQEQ_8fff75a env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_LT_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_LT_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_LT_995091f env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_LTLT_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_LTLT_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_LTLT_5d21964 env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_PLUS_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_PLUS_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_PLUS_da42005 env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_choice_STAR_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_choice_STAR_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_STAR_6fc9218 env v2 in + let v3 = map_c_expression_not_assignment env v3 in + R.Tuple [v1; v2; v3] + ) + | `C_exp_not_assign_STARSTAR_c_exp_not_assign (v1, v2, v3) -> R.Case ("C_exp_not_assign_STARSTAR_c_exp_not_assign", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = (* "**" *) token env v2 in + let v3 = map_c_expression_not_assignment env v3 in R.Tuple [v1; v2; v3] ) ) -and map_case_item (env : env) ((v1, v2, v3, v4, v5) : CST.case_item) = - let v1 = map_literal env v1 in - let v2 = - R.List (List.map (fun (v1, v2) -> - let v1 = (* "|" *) token env v1 in - let v2 = map_literal env v2 in +and map_c_expression (env : env) (x : CST.c_expression) = + (match x with + | `C_exp_not_assign x -> R.Case ("C_exp_not_assign", + map_c_expression_not_assignment env x + ) + | `C_var_assign (v1, v2, v3) -> R.Case ("C_var_assign", + let v1 = map_c_word env v1 in + let v2 = (* "=" *) token env v2 in + let v3 = map_c_expression env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +and map_c_expression_not_assignment (env : env) (x : CST.c_expression_not_assignment) = + (match x with + | `Pat_2b6adbc x -> R.Case ("Pat_2b6adbc", + map_c_word env x + ) + | `Simple_expa x -> R.Case ("Simple_expa", + map_simple_expansion env x + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Num x -> R.Case ("Num", + map_number env x + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `C_un_exp (v1, v2) -> R.Case ("C_un_exp", + let v1 = map_anon_choice_PLUSPLUS_e498e28 env v1 in + let v2 = map_c_expression_not_assignment env v2 in R.Tuple [v1; v2] - ) v2) + ) + | `C_bin_exp x -> R.Case ("C_bin_exp", + map_c_binary_expression env x + ) + | `C_post_exp (v1, v2) -> R.Case ("C_post_exp", + let v1 = map_c_expression_not_assignment env v1 in + let v2 = map_anon_choice_PLUSPLUS_e498e28 env v2 in + R.Tuple [v1; v2] + ) + | `C_paren_exp (v1, v2, v3, v4) -> R.Case ("C_paren_exp", + let v1 = (* "(" *) token env v1 in + let v2 = map_c_expression env v2 in + let v3 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "," *) token env v1 in + let v2 = map_c_expression env v2 in + R.Tuple [v1; v2] + ) v3) + in + let v4 = (* ")" *) token env v4 in + R.Tuple [v1; v2; v3; v4] + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + ) + +and map_c_style_for_statement (env : env) ((v1, v2, v3, v4, v5, v6) : CST.c_style_for_statement) = + let v1 = (* "for" *) token env v1 in + let v2 = (* "((" *) token env v2 in + let v3 = + (match v3 with + | `For_body x -> R.Case ("For_body", + map_for_body env x + ) + ) in - let v3 = (* ")" *) token env v3 in - let v4 = map_program env v4 in + let v4 = (* "))" *) token env v4 in let v5 = (match v5 with + | Some tok -> R.Option (Some ( + (* ";" *) token env tok + )) + | None -> R.Option None) + in + let v6 = + (match v6 with + | `Do_group x -> R.Case ("Do_group", + map_do_group env x + ) + | `Comp_stmt x -> R.Case ("Comp_stmt", + map_compound_statement env x + ) + ) + in + R.Tuple [v1; v2; v3; v4; v5; v6] + +and map_case_item (env : env) ((v1, v2, v3) : CST.case_item) = + let v1 = + (match v1 with + | `Opt_LPAR_choice_choice_conc_rep_BAR_choice_choice_conc_RPAR (v1, v2, v3, v4) -> R.Case ("Opt_LPAR_choice_choice_conc_rep_BAR_choice_choice_conc_RPAR", + let v1 = + (match v1 with + | Some tok -> R.Option (Some ( + (* "(" *) token env tok + )) + | None -> R.Option None) + in + let v2 = map_anon_choice_lit_af2a0ae env v2 in + let v3 = + R.List (List.map (fun (v1, v2) -> + let v1 = (* "|" *) token env v1 in + let v2 = map_anon_choice_lit_af2a0ae env v2 in + R.Tuple [v1; v2] + ) v3) + in + let v4 = (* ")" *) token env v4 in + R.Tuple [v1; v2; v3; v4] + ) + ) + in + let v2 = map_program env v2 in + let v3 = + (match v3 with | `SEMISEMI tok -> R.Case ("SEMISEMI", (* ";;" *) token env tok ) @@ -331,7 +1200,37 @@ and map_case_item (env : env) ((v1, v2, v3, v4, v5) : CST.case_item) = ) ) in - R.Tuple [v1; v2; v3; v4; v5] + R.Tuple [v1; v2; v3] + +and map_case_statement (env : env) ((v1, v2, v3, v4, v5, v6, v7) : CST.case_statement) = + let v1 = (* "case" *) token env v1 in + let v2 = map_literal env v2 in + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + map_terminator env x + )) + | None -> R.Option None) + in + let v4 = (* "in" *) token env v4 in + let v5 = + (match v5 with + | Some x -> R.Option (Some ( + map_terminator env x + )) + | None -> R.Option None) + in + let v6 = + (match v6 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = R.List (List.map (map_case_item env) v1) in + let v2 = map_last_case_item env v2 in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + let v7 = (* "esac" *) token env v7 in + R.Tuple [v1; v2; v3; v4; v5; v6; v7] and map_command (env : env) ((v1, v2, v3) : CST.command) = let v1 = @@ -340,44 +1239,57 @@ and map_command (env : env) ((v1, v2, v3) : CST.command) = | `Var_assign x -> R.Case ("Var_assign", map_variable_assignment env x ) - | `File_redi x -> R.Case ("File_redi", - map_file_redirect env x + | `Choice_file_redi x -> R.Case ("Choice_file_redi", + map_redirect env x ) ) ) v1) in let v2 = map_command_name env v2 in let v3 = - R.List (List.map (fun x -> - (match x with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `Choice_EQTILDE_choice_choice_conc (v1, v2) -> R.Case ("Choice_EQTILDE_choice_choice_conc", - let v1 = - (match v1 with - | `EQTILDE tok -> R.Case ("EQTILDE", - (* "=~" *) token env tok - ) - | `EQEQ tok -> R.Case ("EQEQ", - (* "==" *) token env tok - ) + (match v3 with + | `Rep_choice_choice_conc xs -> R.Case ("Rep_choice_choice_conc", + R.List (List.map (fun x -> + (match x with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x ) - in - let v2 = - (match v2 with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `Regex tok -> R.Case ("Regex", - (* regex *) token env tok - ) + | `Bare_dollar tok -> R.Case ("Bare_dollar", + (* bare_dollar *) token env tok + ) + | `Choice_EQTILDE_choice_choice_conc (v1, v2) -> R.Case ("Choice_EQTILDE_choice_choice_conc", + let v1 = + (match v1 with + | `EQTILDE tok -> R.Case ("EQTILDE", + (* "=~" *) token env tok + ) + | `EQEQ tok -> R.Case ("EQEQ", + (* "==" *) token env tok + ) + ) + in + let v2 = + (match v2 with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Regex tok -> R.Case ("Regex", + (* regex *) token env tok + ) + ) + in + R.Tuple [v1; v2] + ) + | `Here_redi x -> R.Case ("Here_redi", + map_herestring_redirect env x ) - in - R.Tuple [v1; v2] - ) + ) + ) xs) ) - ) v3) + | `Subs x -> R.Case ("Subs", + map_subshell env x + ) + ) in R.Tuple [v1; v2; v3] @@ -414,26 +1326,73 @@ and map_command_substitution (env : env) (x : CST.command_substitution) = let v3 = (* "`" *) token env v3 in R.Tuple [v1; v2; v3] ) + | `DOLLARBQUOT_stmts_BQUOT (v1, v2, v3) -> R.Case ("DOLLARBQUOT_stmts_BQUOT", + let v1 = (* "$`" *) token env v1 in + let v2 = map_statements env v2 in + let v3 = (* "`" *) token env v3 in + R.Tuple [v1; v2; v3] + ) ) -and map_compound_statement (env : env) ((v1, v2, v3) : CST.compound_statement) = - let v1 = (* "{" *) token env v1 in - let v2 = - (match v2 with - | Some x -> R.Option (Some ( - map_statements2 env x - )) - | None -> R.Option None) - in - let v3 = (* "}" *) token env v3 in - R.Tuple [v1; v2; v3] +and map_compound_statement (env : env) (x : CST.compound_statement) = + (match x with + | `LCURL_opt_rep1_choice_choice_redi_stmt_choice_SEMI_tok_prec_n1_rcurl (v1, v2, v3) -> R.Case ("LCURL_opt_rep1_choice_choice_redi_stmt_choice_SEMI_tok_prec_n1_rcurl", + let v1 = (* "{" *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_terminated_statement env x + )) + | None -> R.Option None) + in + let v3 = map_tok_prec_n1_rcurl env v3 in + R.Tuple [v1; v2; v3] + ) + | `LPARLPAR_rep_arit_exp_COMMA_arit_exp_RPARRPAR (v1, v2, v3, v4) -> R.Case ("LPARLPAR_rep_arit_exp_COMMA_arit_exp_RPARRPAR", + let v1 = (* "((" *) token env v1 in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = map_arithmetic_expression env v1 in + let v2 = (* "," *) token env v2 in + R.Tuple [v1; v2] + ) v2) + in + let v3 = map_arithmetic_expression env v3 in + let v4 = (* "))" *) token env v4 in + R.Tuple [v1; v2; v3; v4] + ) + ) and map_concatenation (env : env) ((v1, v2, v3) : CST.concatenation) = - let v1 = map_anon_choice_prim_exp_65e2c2e env v1 in + let v1 = + (match v1 with + | `Choice_semg_deep_exp x -> R.Case ("Choice_semg_deep_exp", + map_primary_expression env x + ) + | `Spec_char tok -> R.Case ("Spec_char", + (* special_character *) token env tok + ) + ) + in let v2 = R.List (List.map (fun (v1, v2) -> - let v1 = (* concat *) token env v1 in - let v2 = map_anon_choice_prim_exp_65e2c2e env v2 in + let v1 = map_anon_choice_concat_28900c6 env v1 in + let v2 = + (match v2 with + | `Choice_semg_deep_exp x -> R.Case ("Choice_semg_deep_exp", + map_primary_expression env x + ) + | `Spec_char tok -> R.Case ("Spec_char", + (* special_character *) token env tok + ) + | `Comm_word tok -> R.Case ("Comm_word", + (* comment_word *) token env tok + ) + | `Bare_dollar tok -> R.Case ("Bare_dollar", + (* bare_dollar *) token env tok + ) + ) + in R.Tuple [v1; v2] ) v2) in @@ -448,12 +1407,60 @@ and map_concatenation (env : env) ((v1, v2, v3) : CST.concatenation) = in R.Tuple [v1; v2; v3] +and map_concatenation_in_expansion (env : env) ((v1, v2) : CST.concatenation_in_expansion) = + let v1 = map_anon_choice_word_54526ae env v1 in + let v2 = + R.List (List.map (fun (v1, v2) -> + let v1 = map_anon_choice_concat_28900c6 env v1 in + let v2 = map_anon_choice_word_54526ae env v2 in + R.Tuple [v1; v2] + ) v2) + in + R.Tuple [v1; v2] + +and map_declaration_command (env : env) ((v1, v2) : CST.declaration_command) = + let v1 = + (match v1 with + | `Decl tok -> R.Case ("Decl", + (* "declare" *) token env tok + ) + | `Type tok -> R.Case ("Type", + (* "typeset" *) token env tok + ) + | `Export tok -> R.Case ("Export", + (* "export" *) token env tok + ) + | `Read tok -> R.Case ("Read", + (* "readonly" *) token env tok + ) + | `Local tok -> R.Case ("Local", + (* "local" *) token env tok + ) + ) + in + let v2 = + R.List (List.map (fun x -> + (match x with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Var_assign x -> R.Case ("Var_assign", + map_variable_assignment env x + ) + ) + ) v2) + in + R.Tuple [v1; v2] + and map_do_group (env : env) ((v1, v2, v3) : CST.do_group) = let v1 = (* "do" *) token env v1 in let v2 = (match v2 with | Some x -> R.Option (Some ( - map_statements2 env x + map_terminated_statement env x )) | None -> R.Option None) in @@ -467,34 +1474,365 @@ and map_elif_clause (env : env) ((v1, v2, v3, v4) : CST.elif_clause) = let v4 = (match v4 with | Some x -> R.Option (Some ( - map_statements2 env x + map_terminated_statement env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3; v4] + +and map_else_clause (env : env) ((v1, v2) : CST.else_clause) = + let v1 = (* "else" *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_terminated_statement env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + +and map_expansion (env : env) ((v1, v2, v3) : CST.expansion) = + let v1 = (* "${" *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_expansion_body env x + )) + | None -> R.Option None) + in + let v3 = (* "}" *) token env v3 in + R.Tuple [v1; v2; v3] + +and map_expansion_body (env : env) (x : CST.expansion_body) = + (match x with + | `Rep1_choice_exte_expa_sym_hash xs -> R.Case ("Rep1_choice_exte_expa_sym_hash", + R.List (List.map (map_anon_choice_exte_expa_sym_hash_a1d74dc env) xs) + ) + | `Opt_imm_tok_bang_choice_var_name_choice_expa_exp (v1, v2, v3) -> R.Case ("Opt_imm_tok_bang_choice_var_name_choice_expa_exp", + let v1 = + (match v1 with + | Some x -> R.Option (Some ( + map_imm_tok_bang env x + )) + | None -> R.Option None) + in + let v2 = + (match v2 with + | `Var_name tok -> R.Case ("Var_name", + (* variable_name *) token env tok + ) + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Choice_STAR x -> R.Case ("Choice_STAR", + map_special_variable_name env x + ) + | `Subs x -> R.Case ("Subs", + map_subscript env x + ) + ) + in + let v3 = + (match v3 with + | `Expa_exp x -> R.Case ("Expa_exp", + map_expansion_expression env x + ) + | `Expa_regex x -> R.Case ("Expa_regex", + map_expansion_regex env x + ) + | `Expa_regex_repl x -> R.Case ("Expa_regex_repl", + map_expansion_regex_replacement env x + ) + | `Expa_regex_remo x -> R.Case ("Expa_regex_remo", + map_expansion_regex_removal env x + ) + | `Expa_max_len x -> R.Case ("Expa_max_len", + map_expansion_max_length env x + ) + | `Expa_op x -> R.Case ("Expa_op", + map_expansion_operator env x + ) + ) + in + R.Tuple [v1; v2; v3] + ) + | `Imm_tok_bang_choice_choice_semg_meta_opt_choice_imm_tok_at (v1, v2, v3) -> R.Case ("Imm_tok_bang_choice_choice_semg_meta_opt_choice_imm_tok_at", + let v1 = map_imm_tok_bang env v1 in + let v2 = + (match v2 with + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Var_name tok -> R.Case ("Var_name", + (* variable_name *) token env tok + ) + ) + in + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + (match x with + | `Imm_tok_at x -> R.Case ("Imm_tok_at", + map_imm_tok_at env x + ) + | `Imm_tok_star x -> R.Case ("Imm_tok_star", + map_imm_tok_star env x + ) + ) + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3] + ) + | `Opt_choice_imm_tok_hash_choice_subs_rep_choice_exte_expa_sym_hash (v1, v2, v3) -> R.Case ("Opt_choice_imm_tok_hash_choice_subs_rep_choice_exte_expa_sym_hash", + let v1 = + (match v1 with + | Some x -> R.Option (Some ( + (match x with + | `Imm_tok_hash x -> R.Case ("Imm_tok_hash", + map_imm_tok_hash env x + ) + | `Imm_tok_bang x -> R.Case ("Imm_tok_bang", + map_imm_tok_bang env x + ) + | `Imm_tok_eq x -> R.Case ("Imm_tok_eq", + map_imm_tok_eq env x + ) + ) + )) + | None -> R.Option None) + in + let v2 = + (match v2 with + | `Subs x -> R.Case ("Subs", + map_subscript env x + ) + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Choice_STAR x -> R.Case ("Choice_STAR", + map_special_variable_name env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + ) + in + let v3 = + R.List (List.map (map_anon_choice_exte_expa_sym_hash_a1d74dc env) v3) + in + R.Tuple [v1; v2; v3] + ) + ) + +and map_expansion_expression (env : env) ((v1, v2) : CST.expansion_expression) = + let v1 = + (match v1 with + | `Imm_tok_eq x -> R.Case ("Imm_tok_eq", + map_imm_tok_eq env x + ) + | `Imm_tok_colo_9c804d8 x -> R.Case ("Imm_tok_colo_9c804d8", + map_imm_tok_coloneq env x + ) + | `Imm_tok_dash x -> R.Case ("Imm_tok_dash", + map_imm_tok_dash env x + ) + | `Imm_tok_colo_a6ba89c x -> R.Case ("Imm_tok_colo_a6ba89c", + map_imm_tok_colondash env x + ) + | `Imm_tok_plus x -> R.Case ("Imm_tok_plus", + map_imm_tok_plus env x + ) + | `Imm_tok_colons x -> R.Case ("Imm_tok_colons", + map_imm_tok_colonplus env x + ) + | `Imm_tok_qmark x -> R.Case ("Imm_tok_qmark", + map_imm_tok_qmark env x + ) + | `Imm_tok_colo_109b622 x -> R.Case ("Imm_tok_colo_109b622", + map_imm_tok_colonqmark env x + ) + ) + in + let v2 = + (match v2 with + | Some v1 -> R.Option (Some ( + (match v1 with + | `Conc_in_expa x -> R.Case ("Conc_in_expa", + map_concatenation_in_expansion env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + | `Word tok -> R.Case ("Word", + (* word *) token env tok + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Simple_expa x -> R.Case ("Simple_expa", + map_simple_expansion env x + ) + | `Array x -> R.Case ("Array", + map_array_ env x + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `Raw_str tok -> R.Case ("Raw_str", + (* pattern "'[^']*'" *) token env tok + ) + | `Ansi_c_str tok -> R.Case ("Ansi_c_str", + (* pattern "\\$'([^']|\\\\')*'" *) token env tok + ) + | `Expa_word tok -> R.Case ("Expa_word", + (* expansion_word *) token env tok + ) + ) + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + +and map_expansion_max_length (env : env) ((v1, v2, v3) : CST.expansion_max_length) = + let v1 = (* ":" *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_anon_choice_simple_var_name_b9e31ae env x + )) + | None -> R.Option None) + in + let v3 = + (match v3 with + | Some (v1, v2, v3) -> R.Option (Some ( + let v1 = (* ":" *) token env v1 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_simple_expansion env x + )) + | None -> R.Option None) + in + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + map_anon_choice_simple_var_name_b9e31ae env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3] )) | None -> R.Option None) in - R.Tuple [v1; v2; v3; v4] - -and map_else_clause (env : env) ((v1, v2) : CST.else_clause) = - let v1 = (* "else" *) token env v1 in + R.Tuple [v1; v2; v3] + +and map_expansion_max_length_binary_expression (env : env) (x : CST.expansion_max_length_binary_expression) = + (match x with + | `Expa_max_len_exp_choice_PLUS_expa_max_len_exp (v1, v2, v3) -> R.Case ("Expa_max_len_exp_choice_PLUS_expa_max_len_exp", + let v1 = map_expansion_max_length_expression env v1 in + let v2 = map_anon_choice_PLUS_da42005 env v2 in + let v3 = map_expansion_max_length_expression env v3 in + R.Tuple [v1; v2; v3] + ) + | `Expa_max_len_exp_choice_STAR_expa_max_len_exp (v1, v2, v3) -> R.Case ("Expa_max_len_exp_choice_STAR_expa_max_len_exp", + let v1 = map_expansion_max_length_expression env v1 in + let v2 = map_anon_choice_STAR_6fc9218 env v2 in + let v3 = map_expansion_max_length_expression env v3 in + R.Tuple [v1; v2; v3] + ) + ) + +and map_expansion_max_length_expression (env : env) (x : CST.expansion_max_length_expression) = + (match x with + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + | `Num x -> R.Case ("Num", + map_number env x + ) + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Expa_max_len_bin_exp x -> R.Case ("Expa_max_len_bin_exp", + map_expansion_max_length_binary_expression env x + ) + ) + +and map_expansion_regex (env : env) ((v1, v2) : CST.expansion_regex) = + let v1 = + (match v1 with + | `HASH tok -> R.Case ("HASH", + (* "#" *) token env tok + ) + | `Imme_double_hash tok -> R.Case ("Imme_double_hash", + (* immediate_double_hash *) token env tok + ) + | `PERC tok -> R.Case ("PERC", + (* "%" *) token env tok + ) + | `PERCPERC tok -> R.Case ("PERCPERC", + (* "%%" *) token env tok + ) + ) + in let v2 = - (match v2 with - | Some x -> R.Option (Some ( - map_statements2 env x - )) - | None -> R.Option None) + R.List (List.map (fun x -> + (match x with + | `Regex tok -> R.Case ("Regex", + (* regex *) token env tok + ) + | `RPAR tok -> R.Case ("RPAR", + (* ")" *) token env tok + ) + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `Raw_str tok -> R.Case ("Raw_str", + (* pattern "'[^']*'" *) token env tok + ) + | `Pat_3d340f6 x -> R.Case ("Pat_3d340f6", + map_pat_3d340f6 env x + ) + ) + ) v2) in R.Tuple [v1; v2] -and map_expansion (env : env) ((v1, v2, v3, v4) : CST.expansion) = - let v1 = (* "${" *) token env v1 in +and map_expansion_regex_replacement (env : env) ((v1, v2, v3) : CST.expansion_regex_replacement) = + let v1 = + (match v1 with + | `SLASH tok -> R.Case ("SLASH", + (* "/" *) token env tok + ) + | `SLASHSLASH tok -> R.Case ("SLASHSLASH", + (* "//" *) token env tok + ) + | `SLASHHASH tok -> R.Case ("SLASHHASH", + (* "/#" *) token env tok + ) + | `SLASHPERC tok -> R.Case ("SLASHPERC", + (* "/%" *) token env tok + ) + ) + in let v2 = (match v2 with | Some x -> R.Option (Some ( (match x with - | `HASH tok -> R.Case ("HASH", - (* "#" *) token env tok + | `Regex_no_slash tok -> R.Case ("Regex_no_slash", + (* regex_no_slash *) token env tok ) - | `BANG tok -> R.Case ("BANG", - (* "!" *) token env tok + | `Str x -> R.Case ("Str", + map_string_ env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + | `Str_regex_no_slash (v1, v2) -> R.Case ("Str_regex_no_slash", + let v1 = map_string_ env v1 in + let v2 = (* regex_no_slash *) token env v2 in + R.Tuple [v1; v2] ) ) )) @@ -502,106 +1840,59 @@ and map_expansion (env : env) ((v1, v2, v3, v4) : CST.expansion) = in let v3 = (match v3 with - | Some x -> R.Option (Some ( - (match x with - | `Var_name_EQ_opt_choice_conc (v1, v2, v3) -> R.Case ("Var_name_EQ_opt_choice_conc", - let v1 = (* variable_name *) token env v1 in - let v2 = (* "=" *) token env v2 in - let v3 = - (match v3 with - | Some x -> R.Option (Some ( - map_literal env x - )) - | None -> R.Option None) - in - R.Tuple [v1; v2; v3] - ) - | `Choice_subs_opt_tok_prec_p1_slash_opt_regex_rep_choice_choice_conc (v1, v2, v3) -> R.Case ("Choice_subs_opt_tok_prec_p1_slash_opt_regex_rep_choice_choice_conc", - let v1 = - (match v1 with - | `Subs x -> R.Case ("Subs", - map_subscript env x - ) - | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", - map_simple_variable_name env x - ) - | `Choice_STAR x -> R.Case ("Choice_STAR", - map_special_variable_name env x - ) - ) - in - let v2 = - (match v2 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = map_tok_prec_p1_slash env v1 in - let v2 = - (match v2 with - | Some tok -> R.Option (Some ( - (* regex *) token env tok - )) - | None -> R.Option None) - in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - let v3 = - R.List (List.map (fun x -> - (match x with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `COLON tok -> R.Case ("COLON", - (* ":" *) token env tok - ) - | `COLONQMARK tok -> R.Case ("COLONQMARK", - (* ":?" *) token env tok + | Some (v1, v2) -> R.Option (Some ( + let v1 = (* "/" *) token env v1 in + let v2 = + (match v2 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = + (match v1 with + | `Choice_semg_deep_exp x -> R.Case ("Choice_semg_deep_exp", + map_primary_expression env x ) - | `EQ tok -> R.Case ("EQ", - (* "=" *) token env tok + | `Rep1_spec_char xs -> R.Case ("Rep1_spec_char", + R.List (List.map (token env (* special_character *)) xs) ) - | `COLONDASH tok -> R.Case ("COLONDASH", - (* ":-" *) token env tok + | `Cmd_subs_expa_word (v1, v2) -> R.Case ("Cmd_subs_expa_word", + let v1 = map_command_substitution env v1 in + let v2 = (* expansion_word *) token env v2 in + R.Tuple [v1; v2] ) - | `PERC tok -> R.Case ("PERC", - (* "%" *) token env tok + | `Expa_word tok -> R.Case ("Expa_word", + (* expansion_word *) token env tok ) - | `DASH tok -> R.Case ("DASH", - (* "-" *) token env tok + | `Conc_in_expa x -> R.Case ("Conc_in_expa", + map_concatenation_in_expansion env x ) - | `HASH tok -> R.Case ("HASH", - (* "#" *) token env tok + | `Array x -> R.Case ("Array", + map_array_ env x ) ) - ) v3) - in - R.Tuple [v1; v2; v3] - ) - ) + in + let v2 = + (match v2 with + | Some tok -> R.Option (Some ( + (* "/" *) token env tok + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] )) | None -> R.Option None) in - let v4 = (* "}" *) token env v4 in - R.Tuple [v1; v2; v3; v4] + R.Tuple [v1; v2; v3] and map_expression (env : env) (x : CST.expression) = (match x with | `Choice_conc x -> R.Case ("Choice_conc", map_literal env x ) - | `Un_exp (v1, v2) -> R.Case ("Un_exp", - let v1 = - (match v1 with - | `BANG tok -> R.Case ("BANG", - (* "!" *) token env tok - ) - | `Test_op tok -> R.Case ("Test_op", - (* test_operator *) token env tok - ) - ) - in - let v2 = map_expression env v2 in - R.Tuple [v1; v2] + | `Un_exp x -> R.Case ("Un_exp", + map_unary_expression env x ) | `Tern_exp (v1, v2, v3, v4, v5) -> R.Case ("Tern_exp", let v1 = map_expression env v1 in @@ -616,27 +1907,322 @@ and map_expression (env : env) (x : CST.expression) = ) | `Post_exp (v1, v2) -> R.Case ("Post_exp", let v1 = map_expression env v1 in + let v2 = map_anon_choice_PLUSPLUS_e498e28 env v2 in + R.Tuple [v1; v2] + ) + | `Paren_exp x -> R.Case ("Paren_exp", + map_parenthesized_expression env x + ) + ) + +and map_extglob_blob (env : env) (x : CST.extglob_blob) = + (match x with + | `Extg_pat tok -> R.Case ("Extg_pat", + (* extglob_pattern *) token env tok + ) + | `Extg_pat_choice_str_opt_extg_pat (v1, v2, v3) -> R.Case ("Extg_pat_choice_str_opt_extg_pat", + let v1 = (* extglob_pattern *) token env v1 in let v2 = (match v2 with - | `PLUSPLUS tok -> R.Case ("PLUSPLUS", - (* "++" *) token env tok + | `Str x -> R.Case ("Str", + map_string_ env x ) - | `DASHDASH tok -> R.Case ("DASHDASH", - (* "--" *) token env tok + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x ) ) in - R.Tuple [v1; v2] - ) - | `Paren_exp (v1, v2, v3) -> R.Case ("Paren_exp", - let v1 = (* "(" *) token env v1 in - let v2 = map_expression env v2 in - let v3 = (* ")" *) token env v3 in + let v3 = + (match v3 with + | Some tok -> R.Option (Some ( + (* extglob_pattern *) token env tok + )) + | None -> R.Option None) + in R.Tuple [v1; v2; v3] ) - ) + ) + +and map_file_redirect (env : env) ((v1, v2) : CST.file_redirect) = + let v1 = + (match v1 with + | Some tok -> R.Option (Some ( + (* file_descriptor *) token env tok + )) + | None -> R.Option None) + in + let v2 = + (match v2 with + | `Choice_LT_rep1_choice_conc (v1, v2) -> R.Case ("Choice_LT_rep1_choice_conc", + let v1 = + (match v1 with + | `LT tok -> R.Case ("LT", + (* "<" *) token env tok + ) + | `GT tok -> R.Case ("GT", + (* ">" *) token env tok + ) + | `GTGT tok -> R.Case ("GTGT", + (* ">>" *) token env tok + ) + | `AMPGT tok -> R.Case ("AMPGT", + (* "&>" *) token env tok + ) + | `AMPGTGT tok -> R.Case ("AMPGTGT", + (* "&>>" *) token env tok + ) + | `LTAMP tok -> R.Case ("LTAMP", + (* "<&" *) token env tok + ) + | `GTAMP tok -> R.Case ("GTAMP", + (* ">&" *) token env tok + ) + | `GTBAR tok -> R.Case ("GTBAR", + (* ">|" *) token env tok + ) + ) + in + let v2 = map_heredoc_command env v2 in + R.Tuple [v1; v2] + ) + | `Choice_LTAMPDASH_opt_choice_conc (v1, v2) -> R.Case ("Choice_LTAMPDASH_opt_choice_conc", + let v1 = + (match v1 with + | `LTAMPDASH tok -> R.Case ("LTAMPDASH", + (* "<&-" *) token env tok + ) + | `GTAMPDASH tok -> R.Case ("GTAMPDASH", + (* ">&-" *) token env tok + ) + ) + in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_literal env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + ) + ) + in + R.Tuple [v1; v2] + +and map_for_body (env : env) ((v1, v2, v3, v4, v5) : CST.for_body) = + let v1 = + (match v1 with + | Some x -> R.Option (Some ( + map_anon_c_exp_rep_COMMA_c_exp_f9a26b6 env x + )) + | None -> R.Option None) + in + let v2 = map_c_terminator env v2 in + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + map_anon_c_exp_rep_COMMA_c_exp_f9a26b6 env x + )) + | None -> R.Option None) + in + let v4 = map_c_terminator env v4 in + let v5 = + (match v5 with + | Some x -> R.Option (Some ( + map_anon_c_exp_rep_COMMA_c_exp_f9a26b6 env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3; v4; v5] + +and map_for_statement (env : env) ((v1, v2, v3, v4, v5) : CST.for_statement) = + let v1 = + (match v1 with + | `For tok -> R.Case ("For", + (* "for" *) token env tok + ) + | `Select tok -> R.Case ("Select", + (* "select" *) token env tok + ) + ) + in + let v2 = map_simple_variable_name env v2 in + let v3 = + (match v3 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = (* "in" *) token env v1 in + let v2 = map_heredoc_command env v2 in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + let v4 = map_terminator env v4 in + let v5 = map_do_group env v5 in + R.Tuple [v1; v2; v3; v4; v5] + +and map_function_definition (env : env) ((v1, v2, v3) : CST.function_definition) = + let v1 = + (match v1 with + | `Func_exte_word_opt_LPAR_RPAR (v1, v2, v3) -> R.Case ("Func_exte_word_opt_LPAR_RPAR", + let v1 = (* "function" *) token env v1 in + let v2 = map_extended_word env v2 in + let v3 = + (match v3 with + | Some (v1, v2) -> R.Option (Some ( + let v1 = (* "(" *) token env v1 in + let v2 = (* ")" *) token env v2 in + R.Tuple [v1; v2] + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3] + ) + | `Word_LPAR_RPAR (v1, v2, v3) -> R.Case ("Word_LPAR_RPAR", + let v1 = (* word *) token env v1 in + let v2 = (* "(" *) token env v2 in + let v3 = (* ")" *) token env v3 in + R.Tuple [v1; v2; v3] + ) + ) + in + let v2 = + (match v2 with + | `Comp_stmt x -> R.Case ("Comp_stmt", + map_compound_statement env x + ) + | `Subs x -> R.Case ("Subs", + map_subshell env x + ) + | `Test_cmd x -> R.Case ("Test_cmd", + map_test_command env x + ) + | `If_stmt x -> R.Case ("If_stmt", + map_if_statement env x + ) + ) + in + let v3 = + (match v3 with + | Some x -> R.Option (Some ( + map_redirect env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2; v3] + +and map_heredoc_body (env : env) ((v1, v2) : CST.heredoc_body) = + let v1 = map_heredoc_body_ env v1 in + let v2 = (* heredoc_end *) token env v2 in + R.Tuple [v1; v2] + +and map_heredoc_body_ (env : env) ((v1, v2) : CST.heredoc_body_) = + let v1 = (* heredoc_body_beginning *) token env v1 in + let v2 = + R.List (List.map (fun x -> + (match x with + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Simple_expa x -> R.Case ("Simple_expa", + map_simple_expansion env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + | `Here_content tok -> R.Case ("Here_content", + (* heredoc_content *) token env tok + ) + ) + ) v2) + in + R.Tuple [v1; v2] + +and map_heredoc_command (env : env) (xs : CST.heredoc_command) = + R.List (List.map (map_literal env) xs) + +and map_heredoc_expression (env : env) ((v1, v2) : CST.heredoc_expression) = + let v1 = + (match v1 with + | `BARBAR tok -> R.Case ("BARBAR", + (* "||" *) token env tok + ) + | `AMPAMP tok -> R.Case ("AMPAMP", + (* "&&" *) token env tok + ) + ) + in + let v2 = map_statement env v2 in + R.Tuple [v1; v2] + +and map_heredoc_pipeline (env : env) ((v1, v2) : CST.heredoc_pipeline) = + let v1 = map_anon_choice_BAR_9062646 env v1 in + let v2 = map_statement env v2 in + R.Tuple [v1; v2] + +and map_heredoc_redirect (env : env) ((v1, v2, v3, v4, v5, v6) : CST.heredoc_redirect) = + let v1 = + (match v1 with + | Some tok -> R.Option (Some ( + (* file_descriptor *) token env tok + )) + | None -> R.Option None) + in + let v2 = + (match v2 with + | `LTLT tok -> R.Case ("LTLT", + (* "<<" *) token env tok + ) + | `LTLTDASH tok -> R.Case ("LTLTDASH", + (* "<<-" *) token env tok + ) + ) + in + let v3 = (* heredoc_start *) token env v3 in + let v4 = + (match v4 with + | Some x -> R.Option (Some ( + (match x with + | `Here_pipe x -> R.Case ("Here_pipe", + map_heredoc_pipeline env x + ) + | `Rep1_choice_file_redi_opt_here_exp (v1, v2) -> R.Case ("Rep1_choice_file_redi_opt_here_exp", + let v1 = R.List (List.map (map_redirect env) v1) in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + map_heredoc_expression env x + )) + | None -> R.Option None) + in + R.Tuple [v1; v2] + ) + | `Here_exp x -> R.Case ("Here_exp", + map_heredoc_expression env x + ) + | `Here_cmd x -> R.Case ("Here_cmd", + map_heredoc_command env x + ) + ) + )) + | None -> R.Option None) + in + let v5 = map_pat_1d78758 env v5 in + let v6 = + (match v6 with + | `Here_body x -> R.Case ("Here_body", + map_heredoc_body env x + ) + | `Simple_here_body x -> R.Case ("Simple_here_body", + map_simple_heredoc_body env x + ) + ) + in + R.Tuple [v1; v2; v3; v4; v5; v6] -and map_file_redirect (env : env) ((v1, v2, v3) : CST.file_redirect) = +and map_herestring_redirect (env : env) ((v1, v2, v3) : CST.herestring_redirect) = let v1 = (match v1 with | Some tok -> R.Option (Some ( @@ -644,91 +2230,73 @@ and map_file_redirect (env : env) ((v1, v2, v3) : CST.file_redirect) = )) | None -> R.Option None) in - let v2 = - (match v2 with - | `LT tok -> R.Case ("LT", - (* "<" *) token env tok - ) - | `GT tok -> R.Case ("GT", - (* ">" *) token env tok - ) - | `GTGT tok -> R.Case ("GTGT", - (* ">>" *) token env tok - ) - | `AMPGT tok -> R.Case ("AMPGT", - (* "&>" *) token env tok - ) - | `AMPGTGT tok -> R.Case ("AMPGTGT", - (* "&>>" *) token env tok - ) - | `LTAMP tok -> R.Case ("LTAMP", - (* "<&" *) token env tok - ) - | `GTAMP tok -> R.Case ("GTAMP", - (* ">&" *) token env tok - ) - | `GTBAR tok -> R.Case ("GTBAR", - (* ">|" *) token env tok - ) - ) - in + let v2 = (* "<<<" *) token env v2 in let v3 = map_literal env v3 in R.Tuple [v1; v2; v3] -and map_heredoc_body (env : env) (x : CST.heredoc_body) = - (match x with - | `Simple_here_body tok -> R.Case ("Simple_here_body", - (* simple_heredoc_body *) token env tok - ) - | `Here_body_begin_rep_choice_expa_here_body_end (v1, v2, v3) -> R.Case ("Here_body_begin_rep_choice_expa_here_body_end", - let v1 = (* heredoc_body_beginning *) token env v1 in - let v2 = - R.List (List.map (fun x -> - (match x with - | `Expa x -> R.Case ("Expa", - map_expansion env x - ) - | `Simple_expa x -> R.Case ("Simple_expa", - map_simple_expansion env x - ) - | `Cmd_subs x -> R.Case ("Cmd_subs", - map_command_substitution env x - ) - | `Here_body_middle tok -> R.Case ("Here_body_middle", - (* heredoc_body_middle *) token env tok - ) - ) - ) v2) - in - let v3 = (* heredoc_body_end *) token env v3 in - R.Tuple [v1; v2; v3] - ) - ) - -and map_herestring_redirect (env : env) ((v1, v2) : CST.herestring_redirect) = - let v1 = (* "<<<" *) token env v1 in - let v2 = map_literal env v2 in - R.Tuple [v1; v2] +and map_if_statement (env : env) ((v1, v2, v3, v4, v5, v6, v7) : CST.if_statement) = + let v1 = (* "if" *) token env v1 in + let v2 = map_terminated_statement env v2 in + let v3 = (* "then" *) token env v3 in + let v4 = + (match v4 with + | Some x -> R.Option (Some ( + map_terminated_statement env x + )) + | None -> R.Option None) + in + let v5 = R.List (List.map (map_elif_clause env) v5) in + let v6 = + (match v6 with + | Some x -> R.Option (Some ( + map_else_clause env x + )) + | None -> R.Option None) + in + let v7 = (* "fi" *) token env v7 in + R.Tuple [v1; v2; v3; v4; v5; v6; v7] -and map_last_case_item (env : env) ((v1, v2, v3, v4, v5) : CST.last_case_item) = - let v1 = map_literal env v1 in - let v2 = +and map_last_case_item (env : env) ((v1, v2, v3, v4, v5, v6) : CST.last_case_item) = + let v1 = + (match v1 with + | Some tok -> R.Option (Some ( + (* "(" *) token env tok + )) + | None -> R.Option None) + in + let v2 = map_anon_choice_lit_af2a0ae env v2 in + let v3 = R.List (List.map (fun (v1, v2) -> let v1 = (* "|" *) token env v1 in - let v2 = map_literal env v2 in + let v2 = map_anon_choice_lit_af2a0ae env v2 in R.Tuple [v1; v2] - ) v2) + ) v3) in - let v3 = (* ")" *) token env v3 in - let v4 = map_program env v4 in - let v5 = - (match v5 with + let v4 = (* ")" *) token env v4 in + let v5 = map_program env v5 in + let v6 = + (match v6 with | Some tok -> R.Option (Some ( (* ";;" *) token env tok )) | None -> R.Option None) in - R.Tuple [v1; v2; v3; v4; v5] + R.Tuple [v1; v2; v3; v4; v5; v6] + +and map_list_ (env : env) ((v1, v2, v3) : CST.list_) = + let v1 = map_statement env v1 in + let v2 = + (match v2 with + | `AMPAMP tok -> R.Case ("AMPAMP", + (* "&&" *) token env tok + ) + | `BARBAR tok -> R.Case ("BARBAR", + (* "||" *) token env tok + ) + ) + in + let v3 = map_statement env v3 in + R.Tuple [v1; v2; v3] and map_literal (env : env) (x : CST.literal) = (match x with @@ -743,6 +2311,53 @@ and map_literal (env : env) (x : CST.literal) = ) ) +and map_negated_command (env : env) ((v1, v2) : CST.negated_command) = + let v1 = (* "!" *) token env v1 in + let v2 = + (match v2 with + | `Cmd x -> R.Case ("Cmd", + map_command env x + ) + | `Var_assign x -> R.Case ("Var_assign", + map_variable_assignment env x + ) + | `Test_cmd x -> R.Case ("Test_cmd", + map_test_command env x + ) + | `Subs x -> R.Case ("Subs", + map_subshell env x + ) + ) + in + R.Tuple [v1; v2] + +and map_number (env : env) (x : CST.number) = + (match x with + | `Pat_421f39f x -> R.Case ("Pat_421f39f", + map_pat_421f39f env x + ) + | `Pat_b978cc7_choice_expa (v1, v2) -> R.Case ("Pat_b978cc7_choice_expa", + let v1 = map_pat_b978cc7 env v1 in + let v2 = + (match v2 with + | `Expa x -> R.Case ("Expa", + map_expansion env x + ) + | `Cmd_subs x -> R.Case ("Cmd_subs", + map_command_substitution env x + ) + ) + in + R.Tuple [v1; v2] + ) + ) + +and map_parenthesized_expression (env : env) ((v1, v2, v3) : CST.parenthesized_expression) = + let v1 = (* "(" *) token env v1 in + let v2 = map_expression env v2 in + let v3 = (* ")" *) token env v3 in + R.Tuple [v1; v2; v3] + and map_primary_expression (env : env) (x : CST.primary_expression) = (match x with | `Semg_deep_exp (v1, v2, v3) -> R.Case ("Semg_deep_exp", @@ -756,30 +2371,42 @@ and map_primary_expression (env : env) (x : CST.primary_expression) = | `Word tok -> R.Case ("Word", (* word *) token env tok ) + | `Test_op tok -> R.Case ("Test_op", + (* test_operator *) token env tok + ) | `Str x -> R.Case ("Str", map_string_ env x ) | `Raw_str tok -> R.Case ("Raw_str", (* pattern "'[^']*'" *) token env tok ) - | `Ansii_c_str tok -> R.Case ("Ansii_c_str", + | `Tran_str x -> R.Case ("Tran_str", + map_translated_string env x + ) + | `Ansi_c_str tok -> R.Case ("Ansi_c_str", (* pattern "\\$'([^']|\\\\')*'" *) token env tok ) + | `Num x -> R.Case ("Num", + map_number env x + ) | `Expa x -> R.Case ("Expa", map_expansion env x ) | `Simple_expa x -> R.Case ("Simple_expa", map_simple_expansion env x ) - | `Str_expa x -> R.Case ("Str_expa", - map_string_expansion env x - ) | `Cmd_subs x -> R.Case ("Cmd_subs", map_command_substitution env x ) | `Proc_subs x -> R.Case ("Proc_subs", map_process_substitution env x ) + | `Arit_expa x -> R.Case ("Arit_expa", + map_arithmetic_expansion env x + ) + | `Brace_exp x -> R.Case ("Brace_exp", + map_brace_expression env x + ) ) ) ) @@ -788,359 +2415,223 @@ and map_process_substitution (env : env) ((v1, v2, v3) : CST.process_substitutio let v1 = (match v1 with | `LTLPAR tok -> R.Case ("LTLPAR", - (* "<(" *) token env tok - ) - | `GTLPAR tok -> R.Case ("GTLPAR", - (* ">(" *) token env tok - ) - ) - in - let v2 = map_statements env v2 in - let v3 = (* ")" *) token env v3 in - R.Tuple [v1; v2; v3] - -and map_program (env : env) (opt : CST.program) = - (match opt with - | Some x -> R.Option (Some ( - map_statements env x - )) - | None -> R.Option None) - -and map_statement (env : env) (x : CST.statement) = - (match x with - | `Redi_stmt (v1, v2) -> R.Case ("Redi_stmt", - let v1 = map_statement env v1 in - let v2 = - R.List (List.map (fun x -> - (match x with - | `File_redi x -> R.Case ("File_redi", - map_file_redirect env x - ) - | `Here_redi_a9657de x -> R.Case ("Here_redi_a9657de", - map_heredoc_redirect env x - ) - | `Here_redi_7d3292d x -> R.Case ("Here_redi_7d3292d", - map_herestring_redirect env x - ) - ) - ) v2) - in - R.Tuple [v1; v2] - ) - | `Var_assign x -> R.Case ("Var_assign", - map_variable_assignment env x - ) - | `Cmd x -> R.Case ("Cmd", - map_command env x - ) - | `Decl_cmd (v1, v2) -> R.Case ("Decl_cmd", - let v1 = - (match v1 with - | `Decl tok -> R.Case ("Decl", - (* "declare" *) token env tok - ) - | `Type tok -> R.Case ("Type", - (* "typeset" *) token env tok - ) - | `Export tok -> R.Case ("Export", - (* "export" *) token env tok - ) - | `Read tok -> R.Case ("Read", - (* "readonly" *) token env tok - ) - | `Local tok -> R.Case ("Local", - (* "local" *) token env tok - ) - ) - in - let v2 = - R.List (List.map (fun x -> - (match x with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", - map_simple_variable_name env x - ) - | `Var_assign x -> R.Case ("Var_assign", - map_variable_assignment env x - ) - ) - ) v2) - in - R.Tuple [v1; v2] - ) - | `Unset_cmd (v1, v2) -> R.Case ("Unset_cmd", - let v1 = - (match v1 with - | `Unset tok -> R.Case ("Unset", - (* "unset" *) token env tok - ) - | `Unse tok -> R.Case ("Unse", - (* "unsetenv" *) token env tok - ) - ) - in - let v2 = - R.List (List.map (fun x -> - (match x with - | `Choice_conc x -> R.Case ("Choice_conc", - map_literal env x - ) - | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", - map_simple_variable_name env x - ) - ) - ) v2) - in - R.Tuple [v1; v2] - ) - | `Test_cmd x -> R.Case ("Test_cmd", - map_test_command env x - ) - | `Nega_cmd (v1, v2) -> R.Case ("Nega_cmd", - let v1 = (* "!" *) token env v1 in - let v2 = - (match v2 with - | `Cmd x -> R.Case ("Cmd", - map_command env x - ) - | `Test_cmd x -> R.Case ("Test_cmd", - map_test_command env x - ) - | `Subs x -> R.Case ("Subs", - map_subshell env x - ) - ) - in - R.Tuple [v1; v2] - ) - | `For_stmt (v1, v2, v3, v4, v5) -> R.Case ("For_stmt", - let v1 = - (match v1 with - | `For tok -> R.Case ("For", - (* "for" *) token env tok - ) - | `Select tok -> R.Case ("Select", - (* "select" *) token env tok - ) - ) - in - let v2 = map_simple_variable_name env v2 in - let v3 = - (match v3 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = (* "in" *) token env v1 in - let v2 = R.List (List.map (map_literal env) v2) in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - let v4 = map_terminator env v4 in - let v5 = map_do_group env v5 in - R.Tuple [v1; v2; v3; v4; v5] - ) - | `C_style_for_stmt (v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) -> R.Case ("C_style_for_stmt", - let v1 = (* "for" *) token env v1 in - let v2 = (* "((" *) token env v2 in - let v3 = - (match v3 with - | Some x -> R.Option (Some ( - map_expression env x - )) - | None -> R.Option None) - in - let v4 = map_terminator env v4 in - let v5 = - (match v5 with - | Some x -> R.Option (Some ( - map_expression env x - )) - | None -> R.Option None) - in - let v6 = map_terminator env v6 in - let v7 = - (match v7 with - | Some x -> R.Option (Some ( - map_expression env x - )) - | None -> R.Option None) - in - let v8 = (* "))" *) token env v8 in - let v9 = - (match v9 with - | Some tok -> R.Option (Some ( - (* ";" *) token env tok - )) - | None -> R.Option None) - in - let v10 = - (match v10 with - | `Do_group x -> R.Case ("Do_group", - map_do_group env x - ) - | `Comp_stmt x -> R.Case ("Comp_stmt", - map_compound_statement env x - ) - ) - in - R.Tuple [v1; v2; v3; v4; v5; v6; v7; v8; v9; v10] - ) - | `While_stmt (v1, v2, v3) -> R.Case ("While_stmt", - let v1 = (* "while" *) token env v1 in - let v2 = map_terminated_statement env v2 in - let v3 = map_do_group env v3 in - R.Tuple [v1; v2; v3] + (* "<(" *) token env tok + ) + | `GTLPAR tok -> R.Case ("GTLPAR", + (* ">(" *) token env tok + ) ) - | `If_stmt (v1, v2, v3, v4, v5, v6, v7) -> R.Case ("If_stmt", - let v1 = (* "if" *) token env v1 in - let v2 = map_terminated_statement env v2 in - let v3 = (* "then" *) token env v3 in - let v4 = - (match v4 with - | Some x -> R.Option (Some ( - map_statements2 env x - )) - | None -> R.Option None) - in - let v5 = R.List (List.map (map_elif_clause env) v5) in - let v6 = - (match v6 with - | Some x -> R.Option (Some ( - map_else_clause env x - )) - | None -> R.Option None) - in - let v7 = (* "fi" *) token env v7 in - R.Tuple [v1; v2; v3; v4; v5; v6; v7] + in + let v2 = map_statements env v2 in + let v3 = (* ")" *) token env v3 in + R.Tuple [v1; v2; v3] + +and map_program (env : env) (opt : CST.program) = + (match opt with + | Some x -> R.Option (Some ( + map_statements env x + )) + | None -> R.Option None) + +and map_redirect (env : env) (x : CST.redirect) = + (match x with + | `File_redi x -> R.Case ("File_redi", + map_file_redirect env x ) - | `Case_stmt (v1, v2, v3, v4, v5, v6, v7) -> R.Case ("Case_stmt", - let v1 = (* "case" *) token env v1 in - let v2 = map_literal env v2 in - let v3 = - (match v3 with - | Some x -> R.Option (Some ( - map_terminator env x - )) - | None -> R.Option None) - in - let v4 = (* "in" *) token env v4 in - let v5 = map_terminator env v5 in - let v6 = - (match v6 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = R.List (List.map (map_case_item env) v1) in - let v2 = map_last_case_item env v2 in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - let v7 = (* "esac" *) token env v7 in - R.Tuple [v1; v2; v3; v4; v5; v6; v7] + | `Here_redi x -> R.Case ("Here_redi", + map_herestring_redirect env x ) - | `Pipe (v1, v2, v3) -> R.Case ("Pipe", + ) + +and map_redirected_statement (env : env) (x : CST.redirected_statement) = + (match x with + | `Choice_choice_redi_stmt_choice_rep1_choice_file_redi (v1, v2) -> R.Case ("Choice_choice_redi_stmt_choice_rep1_choice_file_redi", let v1 = map_statement env v1 in let v2 = (match v2 with - | `BAR tok -> R.Case ("BAR", - (* "|" *) token env tok - ) - | `BARAMP tok -> R.Case ("BARAMP", - (* "|&" *) token env tok + | `Rep1_choice_file_redi xs -> R.Case ("Rep1_choice_file_redi", + R.List (List.map (fun x -> + (match x with + | `File_redi x -> R.Case ("File_redi", + map_file_redirect env x + ) + | `Here_redi x -> R.Case ("Here_redi", + map_heredoc_redirect env x + ) + ) + ) xs) ) ) in - let v3 = map_statement env v3 in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] ) - | `List (v1, v2, v3) -> R.Case ("List", - let v1 = map_statement env v1 in - let v2 = - (match v2 with - | `AMPAMP tok -> R.Case ("AMPAMP", - (* "&&" *) token env tok + | `Choice_if_stmt_here_redi (v1, v2) -> R.Case ("Choice_if_stmt_here_redi", + let v1 = + (match v1 with + | `If_stmt x -> R.Case ("If_stmt", + map_if_statement env x ) - | `BARBAR tok -> R.Case ("BARBAR", - (* "||" *) token env tok + | `While_stmt x -> R.Case ("While_stmt", + map_while_statement env x ) ) in - let v3 = map_statement env v3 in - R.Tuple [v1; v2; v3] + let v2 = map_herestring_redirect env v2 in + R.Tuple [v1; v2] + ) + | `Rep1_choice_file_redi xs -> R.Case ("Rep1_choice_file_redi", + R.List (List.map (map_redirect env) xs) + ) + | `Here_redi x -> R.Case ("Here_redi", + map_herestring_redirect env x + ) + ) + +and map_statement (env : env) (x : CST.statement) = + (match x with + | `Choice_redi_stmt x -> R.Case ("Choice_redi_stmt", + map_statement_not_subshell env x ) | `Subs x -> R.Case ("Subs", map_subshell env x ) + ) + +and map_statement_not_pipeline (env : env) (x : CST.statement_not_pipeline) = + (match x with + | `Redi_stmt x -> R.Case ("Redi_stmt", + map_redirected_statement env x + ) + | `Var_assign x -> R.Case ("Var_assign", + map_variable_assignment env x + ) + | `Var_assigns x -> R.Case ("Var_assigns", + map_variable_assignments env x + ) + | `Cmd x -> R.Case ("Cmd", + map_command env x + ) + | `Decl_cmd x -> R.Case ("Decl_cmd", + map_declaration_command env x + ) + | `Unset_cmd x -> R.Case ("Unset_cmd", + map_unset_command env x + ) + | `Test_cmd x -> R.Case ("Test_cmd", + map_test_command env x + ) + | `Nega_cmd x -> R.Case ("Nega_cmd", + map_negated_command env x + ) + | `For_stmt x -> R.Case ("For_stmt", + map_for_statement env x + ) + | `C_style_for_stmt x -> R.Case ("C_style_for_stmt", + map_c_style_for_statement env x + ) + | `While_stmt x -> R.Case ("While_stmt", + map_while_statement env x + ) + | `If_stmt x -> R.Case ("If_stmt", + map_if_statement env x + ) + | `Case_stmt x -> R.Case ("Case_stmt", + map_case_statement env x + ) + | `List x -> R.Case ("List", + map_list_ env x + ) | `Comp_stmt x -> R.Case ("Comp_stmt", map_compound_statement env x ) - | `Func_defi (v1, v2) -> R.Case ("Func_defi", - let v1 = - (match v1 with - | `Func_exte_word_opt_LPAR_RPAR (v1, v2, v3) -> R.Case ("Func_exte_word_opt_LPAR_RPAR", - let v1 = (* "function" *) token env v1 in - let v2 = map_extended_word env v2 in - let v3 = - (match v3 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = (* "(" *) token env v1 in - let v2 = (* ")" *) token env v2 in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - R.Tuple [v1; v2; v3] - ) - | `Word_LPAR_RPAR (v1, v2, v3) -> R.Case ("Word_LPAR_RPAR", - let v1 = (* word *) token env v1 in - let v2 = (* "(" *) token env v2 in - let v3 = (* ")" *) token env v3 in - R.Tuple [v1; v2; v3] - ) - ) - in + | `Func_defi x -> R.Case ("Func_defi", + map_function_definition env x + ) + | `Subs x -> R.Case ("Subs", + map_subshell env x + ) + ) + +and map_statement_not_subshell (env : env) (x : CST.statement_not_subshell) = + (match x with + | `Redi_stmt x -> R.Case ("Redi_stmt", + map_redirected_statement env x + ) + | `Var_assign x -> R.Case ("Var_assign", + map_variable_assignment env x + ) + | `Var_assigns x -> R.Case ("Var_assigns", + map_variable_assignments env x + ) + | `Cmd x -> R.Case ("Cmd", + map_command env x + ) + | `Decl_cmd x -> R.Case ("Decl_cmd", + map_declaration_command env x + ) + | `Unset_cmd x -> R.Case ("Unset_cmd", + map_unset_command env x + ) + | `Test_cmd x -> R.Case ("Test_cmd", + map_test_command env x + ) + | `Nega_cmd x -> R.Case ("Nega_cmd", + map_negated_command env x + ) + | `For_stmt x -> R.Case ("For_stmt", + map_for_statement env x + ) + | `C_style_for_stmt x -> R.Case ("C_style_for_stmt", + map_c_style_for_statement env x + ) + | `While_stmt x -> R.Case ("While_stmt", + map_while_statement env x + ) + | `If_stmt x -> R.Case ("If_stmt", + map_if_statement env x + ) + | `Case_stmt x -> R.Case ("Case_stmt", + map_case_statement env x + ) + | `Pipe (v1, v2) -> R.Case ("Pipe", + let v1 = map_statement_not_pipeline env v1 in let v2 = - (match v2 with - | `Comp_stmt x -> R.Case ("Comp_stmt", - map_compound_statement env x - ) - | `Subs x -> R.Case ("Subs", - map_subshell env x - ) - | `Test_cmd x -> R.Case ("Test_cmd", - map_test_command env x - ) - ) + R.List (List.map (fun (v1, v2) -> + let v1 = map_anon_choice_BAR_9062646 env v1 in + let v2 = map_statement_not_pipeline env v2 in + R.Tuple [v1; v2] + ) v2) in R.Tuple [v1; v2] ) + | `List x -> R.Case ("List", + map_list_ env x + ) + | `Comp_stmt x -> R.Case ("Comp_stmt", + map_compound_statement env x + ) + | `Func_defi x -> R.Case ("Func_defi", + map_function_definition env x + ) ) -and map_statements (env : env) ((v1, v2, v3, v4) : CST.statements) = +and map_statements (env : env) ((v1, v2, v3) : CST.statements) = let v1 = - R.List (List.map (map_anon_stmt_opt_LF_here_body_term_3efa649 env) v1) + R.List (List.map (fun (v1, v2) -> + let v1 = map_statement env v1 in + let v2 = map_terminator env v2 in + R.Tuple [v1; v2] + ) v1) in let v2 = map_statement env v2 in let v3 = (match v3 with - | Some (v1, v2) -> R.Option (Some ( - let v1 = (* "\n" *) token env v1 in - let v2 = map_heredoc_body env v2 in - R.Tuple [v1; v2] - )) - | None -> R.Option None) - in - let v4 = - (match v4 with | Some x -> R.Option (Some ( map_terminator env x )) | None -> R.Option None) in - R.Tuple [v1; v2; v3; v4] - -and map_statements2 (env : env) (xs : CST.statements2) = - R.List (List.map (map_anon_stmt_opt_LF_here_body_term_3efa649 env) xs) + R.Tuple [v1; v2; v3] and map_string_ (env : env) ((v1, v2, v3, v4) : CST.string_) = let v1 = (* "\"" *) token env v1 in @@ -1168,6 +2659,9 @@ and map_string_ (env : env) ((v1, v2, v3, v4) : CST.string_) = | `Cmd_subs x -> R.Case ("Cmd_subs", map_command_substitution env x ) + | `Arit_expa x -> R.Case ("Arit_expa", + map_arithmetic_expansion env x + ) ) in let v2 = @@ -1190,24 +2684,28 @@ and map_string_ (env : env) ((v1, v2, v3, v4) : CST.string_) = let v4 = (* "\"" *) token env v4 in R.Tuple [v1; v2; v3; v4] -and map_string_expansion (env : env) ((v1, v2) : CST.string_expansion) = - let v1 = (* "$" *) token env v1 in - let v2 = - (match v2 with - | `Str x -> R.Case ("Str", - map_string_ env x +and map_subscript (env : env) ((v1, v2, v3, v4, v5, v6) : CST.subscript) = + let v1 = (* variable_name *) token env v1 in + let v2 = (* "[" *) token env v2 in + let v3 = + (match v3 with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Bin_exp x -> R.Case ("Bin_exp", + map_binary_expression env x + ) + | `Un_exp x -> R.Case ("Un_exp", + map_unary_expression env x ) - | `Raw_str tok -> R.Case ("Raw_str", - (* pattern "'[^']*'" *) token env tok + | `Comp_stmt x -> R.Case ("Comp_stmt", + map_compound_statement env x + ) + | `Subs x -> R.Case ("Subs", + map_subshell env x ) ) in - R.Tuple [v1; v2] - -and map_subscript (env : env) ((v1, v2, v3, v4, v5, v6) : CST.subscript) = - let v1 = (* variable_name *) token env v1 in - let v2 = (* "[" *) token env v2 in - let v3 = map_literal env v3 in let v4 = (match v4 with | Some tok -> R.Option (Some ( @@ -1231,33 +2729,113 @@ and map_subshell (env : env) ((v1, v2, v3) : CST.subshell) = let v3 = (* ")" *) token env v3 in R.Tuple [v1; v2; v3] -and map_terminated_statement (env : env) ((v1, v2) : CST.terminated_statement) = - let v1 = map_statement env v1 in - let v2 = map_terminator env v2 in - R.Tuple [v1; v2] +and map_terminated_statement (env : env) (xs : CST.terminated_statement) = + R.List (List.map (fun (v1, v2) -> + let v1 = map_statement env v1 in + let v2 = map_terminator env v2 in + R.Tuple [v1; v2] + ) xs) and map_test_command (env : env) (v1 : CST.test_command) = (match v1 with - | `LBRACK_exp_RBRACK (v1, v2, v3) -> R.Case ("LBRACK_exp_RBRACK", + | `LBRACK_opt_choice_exp_RBRACK (v1, v2, v3) -> R.Case ("LBRACK_opt_choice_exp_RBRACK", let v1 = (* "[" *) token env v1 in - let v2 = map_expression env v2 in + let v2 = + (match v2 with + | Some x -> R.Option (Some ( + (match x with + | `Exp x -> R.Case ("Exp", + map_expression env x + ) + | `Redi_stmt x -> R.Case ("Redi_stmt", + map_redirected_statement env x + ) + ) + )) + | None -> R.Option None) + in let v3 = (* "]" *) token env v3 in R.Tuple [v1; v2; v3] ) - | `LBRACKLBRACK_exp_RBRACKRBRACK (v1, v2, v3) -> R.Case ("LBRACKLBRACK_exp_RBRACKRBRACK", + | `LBRACKLBRACK_choice_exp_RBRACKRBRACK (v1, v2, v3) -> R.Case ("LBRACKLBRACK_choice_exp_RBRACKRBRACK", let v1 = (* "[[" *) token env v1 in - let v2 = map_expression env v2 in + let v2 = + (match v2 with + | `Exp x -> R.Case ("Exp", + map_expression env x + ) + | `Test_cmd_bin_exp x -> R.Case ("Test_cmd_bin_exp", + map_test_command_binary_expression env x + ) + ) + in let v3 = (* "]]" *) token env v3 in R.Tuple [v1; v2; v3] ) - | `LPARLPAR_exp_RPARRPAR (v1, v2, v3) -> R.Case ("LPARLPAR_exp_RPARRPAR", - let v1 = (* "((" *) token env v1 in + ) + +and map_test_command_binary_expression (env : env) ((v1, v2, v3) : CST.test_command_binary_expression) = + let v1 = map_expression env v1 in + let v2 = (* "=" *) token env v2 in + let v3 = (* regex_no_space *) token env v3 in + R.Tuple [v1; v2; v3] + +and map_translated_string (env : env) ((v1, v2) : CST.translated_string) = + let v1 = (* "$" *) token env v1 in + let v2 = map_string_ env v2 in + R.Tuple [v1; v2] + +and map_unary_expression (env : env) (x : CST.unary_expression) = + (match x with + | `Choice_tok_prec_p1_plusps_exp (v1, v2) -> R.Case ("Choice_tok_prec_p1_plusps_exp", + let v1 = + map_anon_choice_tok_prec_p1_plusps_0918a88 env v1 + in let v2 = map_expression env v2 in - let v3 = (* "))" *) token env v3 in - R.Tuple [v1; v2; v3] + R.Tuple [v1; v2] + ) + | `Choice_tok_prec_p1_dash_exp (v1, v2) -> R.Case ("Choice_tok_prec_p1_dash_exp", + let v1 = map_anon_choice_tok_prec_p1_dash_a8e1cc3 env v1 in + let v2 = map_expression env v2 in + R.Tuple [v1; v2] + ) + | `BANG_exp (v1, v2) -> R.Case ("BANG_exp", + let v1 = (* "!" *) token env v1 in + let v2 = map_expression env v2 in + R.Tuple [v1; v2] + ) + | `Test_op_exp (v1, v2) -> R.Case ("Test_op_exp", + let v1 = (* test_operator *) token env v1 in + let v2 = map_expression env v2 in + R.Tuple [v1; v2] ) ) +and map_unset_command (env : env) ((v1, v2) : CST.unset_command) = + let v1 = + (match v1 with + | `Unset tok -> R.Case ("Unset", + (* "unset" *) token env tok + ) + | `Unse tok -> R.Case ("Unse", + (* "unsetenv" *) token env tok + ) + ) + in + let v2 = + R.List (List.map (fun x -> + (match x with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Choice_semg_meta x -> R.Case ("Choice_semg_meta", + map_simple_variable_name env x + ) + ) + ) v2) + in + R.Tuple [v1; v2] + and map_variable_assignment (env : env) (x : CST.variable_assignment) = (match x with | `Choice_semg_meta_eq_choice_choice_conc (v1, v2) -> R.Case ("Choice_semg_meta_eq_choice_choice_conc", @@ -1271,7 +2849,19 @@ and map_variable_assignment (env : env) (x : CST.variable_assignment) = ) ) in - let v2 = map_anon_choice_lit_bbf16c7 env v2 in + let v2 = + (match v2 with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Array x -> R.Case ("Array", + map_array_ env x + ) + | `Empty_value tok -> R.Case ("Empty_value", + (* empty_value *) token env tok + ) + ) + in R.Tuple [v1; v2] ) | `Choice_var_name_choice_EQ_choice_choice_conc (v1, v2, v3) -> R.Case ("Choice_var_name_choice_EQ_choice_choice_conc", @@ -1295,11 +2885,48 @@ and map_variable_assignment (env : env) (x : CST.variable_assignment) = ) ) in - let v3 = map_anon_choice_lit_bbf16c7 env v3 in + let v3 = + (match v3 with + | `Choice_conc x -> R.Case ("Choice_conc", + map_literal env x + ) + | `Array x -> R.Case ("Array", + map_array_ env x + ) + | `Empty_value tok -> R.Case ("Empty_value", + (* empty_value *) token env tok + ) + | `Comm_word tok -> R.Case ("Comm_word", + (* comment_word *) token env tok + ) + ) + in R.Tuple [v1; v2; v3] ) ) +and map_variable_assignments (env : env) ((v1, v2) : CST.variable_assignments) = + let v1 = map_variable_assignment env v1 in + let v2 = + R.List (List.map (map_variable_assignment env) v2) + in + R.Tuple [v1; v2] + +and map_while_statement (env : env) ((v1, v2, v3) : CST.while_statement) = + let v1 = + (match v1 with + | `While tok -> R.Case ("While", + (* "while" *) token env tok + ) + | `Until tok -> R.Case ("Until", + (* "until" *) token env tok + ) + ) + in + let v2 = map_terminated_statement env v2 in + let v3 = map_do_group env v3 in + R.Tuple [v1; v2; v3] + let map_comment (env : env) (tok : CST.comment) = (* comment *) token env tok diff --git a/lib/CST.ml b/lib/CST.ml index d19ba3a..167de2f 100644 --- a/lib/CST.ml +++ b/lib/CST.ml @@ -8,82 +8,291 @@ open! Sexplib.Conv open Tree_sitter_run +type imm_tok_hash = Token.t (* "#" *) + +type semgrep_named_ellipsis = Token.t (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) + +type imm_tok_eq = Token.t (* "=" *) + +type imm_tok_k_ = Token.t (* "k" *) + +type anon_choice_LTLT_5d21964 = [ + `LTLT of Token.t (* "<<" *) + | `GTGT of Token.t (* ">>" *) +] + +type external_expansion_sym_equal = Token.t + +type imm_tok_u_ = Token.t (* "u" *) + +type ansi_c_string = Token.t (* pattern "\\$'([^']|\\\\')*'" *) + +type bare_dollar = Token.t + +type imm_tok_plus = Token.t (* "+" *) + type semgrep_metavariable = Token.t (* pattern \$[A-Z_][A-Z_0-9]* *) -type string_content = Token.t +type external_expansion_sym_hash = Token.t + +type pat_421f39f = Token.t (* pattern -?(0x)?[0-9]+(#[0-9A-Za-z@_]+)? *) + +type anon_choice_PLUS_da42005 = [ + `PLUS of Token.t (* "+" *) + | `DASH of Token.t (* "-" *) +] + +type tok_prec_p1_plusplus = Token.t + +type imm_tok_colonqmark = Token.t (* ":?" *) + +type imm_tok_p = Token.t (* "P" *) + +type semgrep_metavar_pluseq = Token.t (* pattern \$[A-Z_][A-Z_0-9]*\+= *) + +type anon_choice_BAR_9062646 = [ + `BAR of Token.t (* "|" *) + | `BARAMP of Token.t (* "|&" *) +] type empty_value = Token.t -type word = Token.t +type semgrep_metavar_eq = Token.t (* pattern \$[A-Z_][A-Z_0-9]*= *) -type raw_string = Token.t (* pattern "'[^']*'" *) +type pat_42e353e = Token.t (* pattern \w+ *) -type regex = Token.t +type anon_choice_EQ_2bc102b = [ + `EQ of Token.t (* "=" *) + | `EQTILDE of Token.t (* "=~" *) +] + +type comment_word = Token.t -type heredoc_body_end = Token.t +type tok_prec_p1_dashdash = Token.t -type ansii_c_string = Token.t (* pattern "\\$'([^']|\\\\')*'" *) +type heredoc_end = Token.t + +type regex_no_space = Token.t + +type imm_tok_q = Token.t (* "Q" *) + +type pat_3d340f6 = Token.t (* pattern \s+ *) type special_character = Token.t +type variable_name = Token.t + +type anon_choice_STAR_6fc9218 = [ + `STAR of Token.t (* "*" *) + | `SLASH of Token.t (* "/" *) + | `PERC of Token.t (* "%" *) +] + +type immediate_double_hash = Token.t + +type imm_tok_k = Token.t (* "K" *) + +type extglob_pattern = Token.t + +type brace_start = Token.t + +type test_operator = Token.t + +type imm_tok_at = Token.t (* "@" *) + +type pat_2b6adbc = Token.t (* pattern [a-zA-Z_][a-zA-Z0-9_]* *) + +type imm_tok_pat_217c202 = Token.t (* pattern \d+ *) + +type imm_tok_star = Token.t (* "*" *) + +type imm_tok_rcurl = Token.t (* "}" *) + +type anon_choice_PLUSEQ_110f722 = [ + `PLUSEQ of Token.t (* "+=" *) + | `DASHEQ of Token.t (* "-=" *) + | `STAREQ of Token.t (* "*=" *) + | `SLASHEQ of Token.t (* "/=" *) + | `PERCEQ of Token.t (* "%=" *) + | `STARSTAREQ of Token.t (* "**=" *) + | `LTLTEQ of Token.t (* "<<=" *) + | `GTGTEQ of Token.t (* ">>=" *) + | `AMPEQ of Token.t (* "&=" *) + | `HATEQ of Token.t (* "^=" *) + | `BAREQ of Token.t (* "|=" *) +] + +type expansion_word = Token.t + +type imm_tok_a = Token.t (* "A" *) + +type imm_tok_u = Token.t (* "U" *) + +type string_content = Token.t + +type imm_tok_qmark = Token.t (* "?" *) + +type heredoc_body_beginning = Token.t + +type regex = Token.t + +type regex_no_slash = Token.t + +type imm_tok_e = Token.t (* "E" *) + +type pat_a883a20 = Token.t (* pattern `\s*` *) + type concat = Token.t -type semgrep_metavar_eq = Token.t (* pattern \$[A-Z_][A-Z_0-9]*= *) +type imm_tok_l = Token.t (* "L" *) + +type imm_tok_dotdot = Token.t (* ".." *) + +type raw_string = Token.t (* pattern "'[^']*'" *) + +type imm_tok_colonplus = Token.t (* ":+" *) + +type anon_choice_LT_995091f = [ + `LT of Token.t (* "<" *) + | `GT of Token.t (* ">" *) + | `LTEQ of Token.t (* "<=" *) + | `GTEQ of Token.t (* ">=" *) +] + +type tok_prec_n1_pat_ac9ca5c = Token.t + +type tok_prec_p1_tilde = Token.t + +type pat_b978cc7 = Token.t (* pattern -?(0x)?[0-9]+# *) + +type word = Token.t + +type file_descriptor = Token.t + +type heredoc_start = Token.t + +type tok_prec_p1_dash = Token.t + +type imm_tok_bang = Token.t (* "!" *) + +type tok_prec_p1_plus = Token.t + +type tok_prec_n1_rcurl = Token.t + +type imm_tok_colondash = Token.t (* ":-" *) + +type imm_tok_dash = Token.t (* "-" *) + +type imm_tok_a_ = Token.t (* "a" *) + +type pat_1d78758 = Token.t (* pattern \n *) + +type simple_heredoc_body_ = Token.t + +type anon_choice_PLUSPLUS_e498e28 = [ + `PLUSPLUS of Token.t (* "++" *) + | `DASHDASH of Token.t (* "--" *) +] + +type heredoc_content = Token.t + +type external_expansion_sym_bang = Token.t + +type imm_tok_coloneq = Token.t (* ":=" *) type special_variable_name = [ `STAR of Token.t (* "*" *) | `AT of Token.t (* "@" *) | `QMARK of Token.t (* "?" *) + | `BANG of Token.t (* "!" *) + | `HASH of Token.t (* "#" *) | `DASH of Token.t (* "-" *) | `DOLLAR of Token.t (* "$" *) - | `X_0 of Token.t (* "0" *) | `X__ of Token.t (* "_" *) ] -type simple_heredoc_body = Token.t - -type terminator = [ - `SEMI of Token.t (* ";" *) - | `SEMISEMI of Token.t (* ";;" *) - | `LF of Token.t (* "\n" *) - | `AMP of Token.t (* "&" *) +type anon_choice_EQEQ_8fff75a = [ + `EQEQ of Token.t (* "==" *) + | `BANGEQ of Token.t (* "!=" *) ] -type heredoc_start = Token.t - -type heredoc_body_middle = Token.t - -type pat_42e353e = Token.t (* pattern \w+ *) - -type semgrep_named_ellipsis = Token.t (* pattern \$\.\.\.[A-Z_][A-Z_0-9]* *) - -type semgrep_metavar_pluseq = Token.t (* pattern \$[A-Z_][A-Z_0-9]*\+= *) +type orig_simple_variable_name = pat_42e353e -type file_descriptor = Token.t +type anon_choice_tok_prec_p1_plusps_0918a88 = [ + `Tok_prec_p1_plusps of tok_prec_p1_plusplus (*tok*) + | `Tok_prec_p1_dash of tok_prec_p1_dashdash (*tok*) +] -type test_operator = Token.t +type c_word = pat_2b6adbc -type tok_prec_p1_slash = Token.t +type expansion_regex_removal = ( + [ + `COMMA of Token.t (* "," *) + | `COMMACOMMA of Token.t (* ",," *) + | `HAT of Token.t (* "^" *) + | `HATHAT of Token.t (* "^^" *) + ] + * regex (*tok*) option +) -type heredoc_body_beginning = Token.t +type anon_choice_concat_28900c6 = [ + `Concat of concat (*tok*) + | `Pat_a883a20 of pat_a883a20 +] -type variable_name = Token.t +type brace_expression = ( + brace_start (*tok*) * imm_tok_pat_217c202 * imm_tok_dotdot (*tok*) + * imm_tok_pat_217c202 * imm_tok_rcurl (*tok*) +) type extended_word = [ `Semg_meta of semgrep_metavariable (*tok*) | `Word of word (*tok*) ] -type heredoc_redirect = ( - [ `LTLT of Token.t (* "<<" *) | `LTLTDASH of Token.t (* "<<-" *) ] - * heredoc_start (*tok*) +type anon_choice_tok_prec_p1_dash_a8e1cc3 = [ + `Tok_prec_p1_dash of tok_prec_p1_dash (*tok*) + | `Tok_prec_p1_plus of tok_prec_p1_plus (*tok*) + | `Tok_prec_p1_tilde of tok_prec_p1_tilde (*tok*) +] + +type expansion_operator = ( + imm_tok_at (*tok*) + * [ + `Imm_tok_u of imm_tok_u (*tok*) + | `Imm_tok_u_ of imm_tok_u_ (*tok*) + | `Imm_tok_l of imm_tok_l (*tok*) + | `Imm_tok_q of imm_tok_q (*tok*) + | `Imm_tok_e of imm_tok_e (*tok*) + | `Imm_tok_p of imm_tok_p (*tok*) + | `Imm_tok_a of imm_tok_a (*tok*) + | `Imm_tok_k of imm_tok_k (*tok*) + | `Imm_tok_a_ of imm_tok_a_ (*tok*) + | `Imm_tok_k_ of imm_tok_k_ (*tok*) + ] ) -type orig_simple_variable_name = pat_42e353e +type c_terminator = [ + `SEMI of Token.t (* ";" *) + | `Pat_1d78758 of pat_1d78758 + | `AMP of Token.t (* "&" *) +] -type simple_variable_name = [ - `Semg_meta of semgrep_metavariable (*tok*) - | `Pat_42e353e of orig_simple_variable_name +type terminator = [ + `SEMI of Token.t (* ";" *) + | `SEMISEMI of Token.t (* ";;" *) + | `Pat_1d78758 of pat_1d78758 + | `AMP of Token.t (* "&" *) +] + +type simple_heredoc_body = ( + simple_heredoc_body_ (*tok*) * heredoc_end (*tok*) +) + +type anon_choice_exte_expa_sym_hash_a1d74dc = [ + `Exte_expa_sym_hash of external_expansion_sym_hash (*tok*) + | `Exte_expa_sym_bang of external_expansion_sym_bang (*tok*) + | `Exte_expa_sym_equal of external_expansion_sym_equal (*tok*) ] type simple_expansion = [ @@ -99,60 +308,285 @@ type simple_expansion = [ | `Semg_named_ellips of semgrep_named_ellipsis (*tok*) ] -type anon_choice_lit_bbf16c7 = [ +type simple_variable_name = [ + `Semg_meta of semgrep_metavariable (*tok*) + | `Pat_42e353e of orig_simple_variable_name +] + +type anon_c_exp_rep_COMMA_c_exp_f9a26b6 = ( + c_expression + * (Token.t (* "," *) * c_expression) list (* zero or more *) +) + +and anon_choice_lit_af2a0ae = [ `Choice_conc of literal - | `Array of ( - Token.t (* "(" *) - * literal list (* zero or more *) - * Token.t (* ")" *) + | `Extg_blob of extglob_blob +] + +and anon_choice_simple_var_name_b9e31ae = [ + `Choice_semg_meta of simple_variable_name + | `Num of number + | `Arit_expa of arithmetic_expansion + | `Expa of expansion + | `Paren_exp of parenthesized_expression + | `Cmd_subs of command_substitution + | `Expa_max_len_bin_exp of expansion_max_length_binary_expression + | `Pat_1d78758 of pat_1d78758 +] + +and anon_choice_word_54526ae = [ + `Word of word (*tok*) + | `Var_name of variable_name (*tok*) + | `Simple_expa of simple_expansion + | `Expa of expansion + | `Str of string_ + | `Raw_str of raw_string (*tok*) + | `Ansi_c_str of ansi_c_string (*tok*) + | `Cmd_subs of command_substitution + | `Expa_word of expansion_word (*tok*) + | `Array of array_ + | `Proc_subs of process_substitution +] + +and arithmetic_binary_expression = [ + `Arit_exp_choice_PLUSEQ_arit_exp of ( + arithmetic_expression * anon_choice_PLUSEQ_110f722 + * arithmetic_expression + ) + | `Arit_exp_choice_EQ_arit_exp of ( + arithmetic_expression * anon_choice_EQ_2bc102b + * arithmetic_expression + ) + | `Arit_exp_BARBAR_arit_exp of ( + arithmetic_expression * Token.t (* "||" *) * arithmetic_expression + ) + | `Arit_exp_AMPAMP_arit_exp of ( + arithmetic_expression * Token.t (* "&&" *) * arithmetic_expression + ) + | `Arit_exp_BAR_arit_exp of ( + arithmetic_expression * Token.t (* "|" *) * arithmetic_expression + ) + | `Arit_exp_HAT_arit_exp of ( + arithmetic_expression * Token.t (* "^" *) * arithmetic_expression + ) + | `Arit_exp_AMP_arit_exp of ( + arithmetic_expression * Token.t (* "&" *) * arithmetic_expression + ) + | `Arit_exp_choice_EQEQ_arit_exp of ( + arithmetic_expression * anon_choice_EQEQ_8fff75a + * arithmetic_expression + ) + | `Arit_exp_choice_LT_arit_exp of ( + arithmetic_expression * anon_choice_LT_995091f + * arithmetic_expression + ) + | `Arit_exp_choice_LTLT_arit_exp of ( + arithmetic_expression * anon_choice_LTLT_5d21964 + * arithmetic_expression + ) + | `Arit_exp_choice_PLUS_arit_exp of ( + arithmetic_expression * anon_choice_PLUS_da42005 + * arithmetic_expression + ) + | `Arit_exp_choice_STAR_arit_exp of ( + arithmetic_expression * anon_choice_STAR_6fc9218 + * arithmetic_expression + ) + | `Arit_exp_STARSTAR_arit_exp of ( + arithmetic_expression * Token.t (* "**" *) * arithmetic_expression ) - | `Empty_value of empty_value (*tok*) ] -and anon_choice_prim_exp_65e2c2e = [ - `Choice_semg_deep_exp of primary_expression - | `Spec_char of special_character (*tok*) +and arithmetic_expansion = [ + `DOLLARLPARLPAR_arit_exp_rep_COMMA_arit_exp_RPARRPAR of ( + Token.t (* "$((" *) + * arithmetic_expression + * (Token.t (* "," *) * arithmetic_expression) list (* zero or more *) + * Token.t (* "))" *) + ) + | `DOLLARLBRACK_arit_exp_RBRACK of ( + Token.t (* "$[" *) * arithmetic_expression * Token.t (* "]" *) + ) ] -and anon_stmt_opt_LF_here_body_term_3efa649 = ( - statement - * (Token.t (* "\n" *) * heredoc_body) option - * terminator +and arithmetic_expression = [ + `Arit_lit of arithmetic_literal + | `Arit_un_exp of arithmetic_unary_expression + | `Arit_tern_exp of ( + arithmetic_expression * Token.t (* "?" *) * arithmetic_expression + * Token.t (* ":" *) * arithmetic_expression + ) + | `Arit_bin_exp of arithmetic_binary_expression + | `Arit_post_exp of (arithmetic_expression * anon_choice_PLUSPLUS_e498e28) + | `Arit_paren_exp of ( + Token.t (* "(" *) * arithmetic_expression * Token.t (* ")" *) + ) + | `Cmd_subs of command_substitution +] + +and arithmetic_literal = [ + `Num of number + | `Subs of subscript + | `Simple_expa of simple_expansion + | `Expa of expansion + | `Choice_semg_meta of simple_variable_name + | `Var_name of variable_name (*tok*) + | `Str of string_ + | `Raw_str of raw_string (*tok*) +] + +and arithmetic_unary_expression = [ + `Choice_tok_prec_p1_plusps_arit_exp of ( + anon_choice_tok_prec_p1_plusps_0918a88 * arithmetic_expression + ) + | `Choice_tok_prec_p1_dash_arit_exp of ( + anon_choice_tok_prec_p1_dash_a8e1cc3 * arithmetic_expression + ) + | `BANG_arit_exp of (Token.t (* "!" *) * arithmetic_expression) +] + +and array_ = ( + Token.t (* "(" *) + * literal list (* zero or more *) + * Token.t (* ")" *) ) and binary_expression = [ - `Exp_choice_EQ_exp of ( - expression - * [ - `EQ of Token.t (* "=" *) - | `EQEQ of Token.t (* "==" *) - | `EQTILDE of Token.t (* "=~" *) - | `BANGEQ of Token.t (* "!=" *) - | `PLUS of Token.t (* "+" *) - | `DASH of Token.t (* "-" *) - | `PLUSEQ of Token.t (* "+=" *) - | `DASHEQ of Token.t (* "-=" *) - | `LT of Token.t (* "<" *) - | `GT of Token.t (* ">" *) - | `LTEQ of Token.t (* "<=" *) - | `GTEQ of Token.t (* ">=" *) - | `BARBAR of Token.t (* "||" *) - | `AMPAMP of Token.t (* "&&" *) - | `Test_op of test_operator (*tok*) - ] - * expression + `Choice_exp_choice_PLUSEQ_exp of [ + `Exp_choice_PLUSEQ_exp of ( + expression * anon_choice_PLUSEQ_110f722 * expression + ) + | `Exp_choice_EQ_exp of ( + expression * anon_choice_EQ_2bc102b * expression + ) + | `Exp_BARBAR_exp of (expression * Token.t (* "||" *) * expression) + | `Exp_AMPAMP_exp of (expression * Token.t (* "&&" *) * expression) + | `Exp_BAR_exp of (expression * Token.t (* "|" *) * expression) + | `Exp_HAT_exp of (expression * Token.t (* "^" *) * expression) + | `Exp_AMP_exp of (expression * Token.t (* "&" *) * expression) + | `Exp_choice_EQEQ_exp of ( + expression * anon_choice_EQEQ_8fff75a * expression + ) + | `Exp_choice_LT_exp of ( + expression * anon_choice_LT_995091f * expression + ) + | `Exp_test_op_exp of (expression * test_operator (*tok*) * expression) + | `Exp_choice_LTLT_exp of ( + expression * anon_choice_LTLT_5d21964 * expression + ) + | `Exp_choice_PLUS_exp of ( + expression * anon_choice_PLUS_da42005 * expression + ) + | `Exp_choice_STAR_exp of ( + expression * anon_choice_STAR_6fc9218 * expression + ) + | `Exp_STARSTAR_exp of (expression * Token.t (* "**" *) * expression) + ] + | `Exp_EQTILDE_regex_no_sp of ( + expression * Token.t (* "=~" *) * regex_no_space (*tok*) ) - | `Exp_choice_EQEQ_regex of ( - expression - * [ `EQEQ of Token.t (* "==" *) | `EQTILDE of Token.t (* "=~" *) ] - * regex (*tok*) + | `Exp_choice_EQEQ_extg_blob of ( + expression * anon_choice_EQEQ_8fff75a * extglob_blob ) ] +and c_binary_expression = [ + `C_exp_not_assign_choice_PLUSEQ_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_PLUSEQ_110f722 + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_BARBAR_c_exp_not_assign of ( + c_expression_not_assignment + * [ `BARBAR of Token.t (* "||" *) | `DASHo of Token.t (* "-o" *) ] + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_AMPAMP_c_exp_not_assign of ( + c_expression_not_assignment + * [ `AMPAMP of Token.t (* "&&" *) | `DASHa of Token.t (* "-a" *) ] + * c_expression_not_assignment + ) + | `C_exp_not_assign_BAR_c_exp_not_assign of ( + c_expression_not_assignment * Token.t (* "|" *) + * c_expression_not_assignment + ) + | `C_exp_not_assign_HAT_c_exp_not_assign of ( + c_expression_not_assignment * Token.t (* "^" *) + * c_expression_not_assignment + ) + | `C_exp_not_assign_AMP_c_exp_not_assign of ( + c_expression_not_assignment * Token.t (* "&" *) + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_EQEQ_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_EQEQ_8fff75a + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_LT_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_LT_995091f + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_LTLT_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_LTLT_5d21964 + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_PLUS_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_PLUS_da42005 + * c_expression_not_assignment + ) + | `C_exp_not_assign_choice_STAR_c_exp_not_assign of ( + c_expression_not_assignment * anon_choice_STAR_6fc9218 + * c_expression_not_assignment + ) + | `C_exp_not_assign_STARSTAR_c_exp_not_assign of ( + c_expression_not_assignment * Token.t (* "**" *) + * c_expression_not_assignment + ) +] + +and c_expression = [ + `C_exp_not_assign of c_expression_not_assignment + | `C_var_assign of (c_word * Token.t (* "=" *) * c_expression) +] + +and c_expression_not_assignment = [ + `Pat_2b6adbc of c_word + | `Simple_expa of simple_expansion + | `Expa of expansion + | `Num of number + | `Str of string_ + | `C_un_exp of (anon_choice_PLUSPLUS_e498e28 * c_expression_not_assignment) + | `C_bin_exp of c_binary_expression + | `C_post_exp of ( + c_expression_not_assignment * anon_choice_PLUSPLUS_e498e28 + ) + | `C_paren_exp of ( + Token.t (* "(" *) + * c_expression + * (Token.t (* "," *) * c_expression) list (* zero or more *) + * Token.t (* ")" *) + ) + | `Cmd_subs of command_substitution +] + +and c_style_for_statement = ( + Token.t (* "for" *) + * Token.t (* "((" *) + * [ `For_body of for_body ] + * Token.t (* "))" *) + * Token.t (* ";" *) option + * [ `Do_group of do_group | `Comp_stmt of compound_statement ] +) + and case_item = ( - literal - * (Token.t (* "|" *) * literal) list (* zero or more *) - * Token.t (* ")" *) + [ + `Opt_LPAR_choice_choice_conc_rep_BAR_choice_choice_conc_RPAR of ( + Token.t (* "(" *) option + * anon_choice_lit_af2a0ae + * (Token.t (* "|" *) * anon_choice_lit_af2a0ae) + list (* zero or more *) + * Token.t (* ")" *) + ) + ] * program * [ `SEMISEMI of Token.t (* ";;" *) @@ -163,18 +597,37 @@ and case_item = ( ] ) +and case_statement = ( + Token.t (* "case" *) + * literal + * terminator option + * Token.t (* "in" *) + * terminator option + * (case_item list (* zero or more *) * last_case_item) option + * Token.t (* "esac" *) +) + and command = ( - [ `Var_assign of variable_assignment | `File_redi of file_redirect ] + [ `Var_assign of variable_assignment | `Choice_file_redi of redirect ] list (* zero or more *) * command_name * [ - `Choice_conc of literal - | `Choice_EQTILDE_choice_choice_conc of ( - [ `EQTILDE of Token.t (* "=~" *) | `EQEQ of Token.t (* "==" *) ] - * [ `Choice_conc of literal | `Regex of regex (*tok*) ] - ) + `Rep_choice_choice_conc of + [ + `Choice_conc of literal + | `Bare_dollar of bare_dollar (*tok*) + | `Choice_EQTILDE_choice_choice_conc of ( + [ + `EQTILDE of Token.t (* "=~" *) + | `EQEQ of Token.t (* "==" *) + ] + * [ `Choice_conc of literal | `Regex of regex (*tok*) ] + ) + | `Here_redi of herestring_redirect + ] + list (* zero or more *) + | `Subs of subshell ] - list (* zero or more *) ) and command_name = [ @@ -193,144 +646,444 @@ and command_substitution = [ | `BQUOT_stmts_BQUOT of ( Token.t (* "`" *) * statements * Token.t (* "`" *) ) + | `DOLLARBQUOT_stmts_BQUOT of ( + Token.t (* "$`" *) * statements * Token.t (* "`" *) + ) ] -and compound_statement = ( - Token.t (* "{" *) - * statements2 option +and compound_statement = [ + `LCURL_opt_rep1_choice_choice_redi_stmt_choice_SEMI_tok_prec_n1_rcurl of ( + Token.t (* "{" *) + * terminated_statement option + * tok_prec_n1_rcurl (*tok*) + ) + | `LPARLPAR_rep_arit_exp_COMMA_arit_exp_RPARRPAR of ( + Token.t (* "((" *) + * (arithmetic_expression * Token.t (* "," *)) list (* zero or more *) + * arithmetic_expression + * Token.t (* "))" *) + ) +] + +and concatenation = ( + [ + `Choice_semg_deep_exp of primary_expression + | `Spec_char of special_character (*tok*) + ] + * ( + anon_choice_concat_28900c6 + * [ + `Choice_semg_deep_exp of primary_expression + | `Spec_char of special_character (*tok*) + | `Comm_word of comment_word (*tok*) + | `Bare_dollar of bare_dollar (*tok*) + ] + ) + list (* one or more *) + * (concat (*tok*) * Token.t (* "$" *)) option +) + +and concatenation_in_expansion = ( + anon_choice_word_54526ae + * (anon_choice_concat_28900c6 * anon_choice_word_54526ae) + list (* one or more *) +) + +and declaration_command = ( + [ + `Decl of Token.t (* "declare" *) + | `Type of Token.t (* "typeset" *) + | `Export of Token.t (* "export" *) + | `Read of Token.t (* "readonly" *) + | `Local of Token.t (* "local" *) + ] + * [ + `Choice_conc of literal + | `Choice_semg_meta of simple_variable_name + | `Var_assign of variable_assignment + ] + list (* zero or more *) +) + +and do_group = ( + Token.t (* "do" *) + * terminated_statement option + * Token.t (* "done" *) +) + +and elif_clause = ( + Token.t (* "elif" *) + * terminated_statement + * Token.t (* "then" *) + * terminated_statement option +) + +and else_clause = (Token.t (* "else" *) * terminated_statement option) + +and expansion = ( + Token.t (* "${" *) + * expansion_body option * Token.t (* "}" *) ) -and concatenation = ( - anon_choice_prim_exp_65e2c2e - * (concat (*tok*) * anon_choice_prim_exp_65e2c2e) list (* one or more *) - * (concat (*tok*) * Token.t (* "$" *)) option +and expansion_body = [ + `Rep1_choice_exte_expa_sym_hash of + anon_choice_exte_expa_sym_hash_a1d74dc list (* one or more *) + | `Opt_imm_tok_bang_choice_var_name_choice_expa_exp of ( + imm_tok_bang (*tok*) option + * [ + `Var_name of variable_name (*tok*) + | `Choice_semg_meta of simple_variable_name + | `Choice_STAR of special_variable_name + | `Subs of subscript + ] + * [ + `Expa_exp of expansion_expression + | `Expa_regex of expansion_regex + | `Expa_regex_repl of expansion_regex_replacement + | `Expa_regex_remo of expansion_regex_removal + | `Expa_max_len of expansion_max_length + | `Expa_op of expansion_operator + ] + ) + | `Imm_tok_bang_choice_choice_semg_meta_opt_choice_imm_tok_at of ( + imm_tok_bang (*tok*) + * [ + `Choice_semg_meta of simple_variable_name + | `Var_name of variable_name (*tok*) + ] + * [ + `Imm_tok_at of imm_tok_at (*tok*) + | `Imm_tok_star of imm_tok_star (*tok*) + ] + option + ) + | `Opt_choice_imm_tok_hash_choice_subs_rep_choice_exte_expa_sym_hash of ( + [ + `Imm_tok_hash of imm_tok_hash (*tok*) + | `Imm_tok_bang of imm_tok_bang (*tok*) + | `Imm_tok_eq of imm_tok_eq (*tok*) + ] + option + * [ + `Subs of subscript + | `Choice_semg_meta of simple_variable_name + | `Choice_STAR of special_variable_name + | `Cmd_subs of command_substitution + ] + * anon_choice_exte_expa_sym_hash_a1d74dc list (* zero or more *) + ) +] + +and expansion_expression = ( + [ + `Imm_tok_eq of imm_tok_eq (*tok*) + | `Imm_tok_colo_9c804d8 of imm_tok_coloneq (*tok*) + | `Imm_tok_dash of imm_tok_dash (*tok*) + | `Imm_tok_colo_a6ba89c of imm_tok_colondash (*tok*) + | `Imm_tok_plus of imm_tok_plus (*tok*) + | `Imm_tok_colons of imm_tok_colonplus (*tok*) + | `Imm_tok_qmark of imm_tok_qmark (*tok*) + | `Imm_tok_colo_109b622 of imm_tok_colonqmark (*tok*) + ] + * [ + `Conc_in_expa of concatenation_in_expansion + | `Cmd_subs of command_substitution + | `Word of word (*tok*) + | `Expa of expansion + | `Simple_expa of simple_expansion + | `Array of array_ + | `Str of string_ + | `Raw_str of raw_string (*tok*) + | `Ansi_c_str of ansi_c_string (*tok*) + | `Expa_word of expansion_word (*tok*) + ] + option +) + +and expansion_max_length = ( + Token.t (* ":" *) + * anon_choice_simple_var_name_b9e31ae option + * ( + Token.t (* ":" *) + * simple_expansion option + * anon_choice_simple_var_name_b9e31ae option + ) + option +) + +and expansion_max_length_binary_expression = [ + `Expa_max_len_exp_choice_PLUS_expa_max_len_exp of ( + expansion_max_length_expression * anon_choice_PLUS_da42005 + * expansion_max_length_expression + ) + | `Expa_max_len_exp_choice_STAR_expa_max_len_exp of ( + expansion_max_length_expression * anon_choice_STAR_6fc9218 + * expansion_max_length_expression + ) +] + +and expansion_max_length_expression = [ + `Choice_semg_meta of simple_variable_name + | `Num of number + | `Expa of expansion + | `Expa_max_len_bin_exp of expansion_max_length_binary_expression +] + +and expansion_regex = ( + [ + `HASH of Token.t (* "#" *) + | `Imme_double_hash of immediate_double_hash (*tok*) + | `PERC of Token.t (* "%" *) + | `PERCPERC of Token.t (* "%%" *) + ] + * [ + `Regex of regex (*tok*) + | `RPAR of Token.t (* ")" *) + | `Str of string_ + | `Raw_str of raw_string (*tok*) + | `Pat_3d340f6 of pat_3d340f6 + ] + list (* zero or more *) +) + +and expansion_regex_replacement = ( + [ + `SLASH of Token.t (* "/" *) + | `SLASHSLASH of Token.t (* "//" *) + | `SLASHHASH of Token.t (* "/#" *) + | `SLASHPERC of Token.t (* "/%" *) + ] + * [ + `Regex_no_slash of regex_no_slash (*tok*) + | `Str of string_ + | `Cmd_subs of command_substitution + | `Str_regex_no_slash of (string_ * regex_no_slash (*tok*)) + ] + option + * ( + Token.t (* "/" *) + * ( + [ + `Choice_semg_deep_exp of primary_expression + | `Rep1_spec_char of + special_character (*tok*) list (* one or more *) + | `Cmd_subs_expa_word of ( + command_substitution * expansion_word (*tok*) + ) + | `Expa_word of expansion_word (*tok*) + | `Conc_in_expa of concatenation_in_expansion + | `Array of array_ + ] + * Token.t (* "/" *) option + ) + option + ) + option +) + +and expression = [ + `Choice_conc of literal + | `Un_exp of unary_expression + | `Tern_exp of ( + expression * Token.t (* "?" *) * expression * Token.t (* ":" *) + * expression + ) + | `Bin_exp of binary_expression + | `Post_exp of (expression * anon_choice_PLUSPLUS_e498e28) + | `Paren_exp of parenthesized_expression +] + +and extglob_blob = [ + `Extg_pat of extglob_pattern (*tok*) + | `Extg_pat_choice_str_opt_extg_pat of ( + extglob_pattern (*tok*) + * [ + `Str of string_ + | `Expa of expansion + | `Cmd_subs of command_substitution + ] + * extglob_pattern (*tok*) option + ) +] + +and file_redirect = ( + file_descriptor (*tok*) option + * [ + `Choice_LT_rep1_choice_conc of ( + [ + `LT of Token.t (* "<" *) + | `GT of Token.t (* ">" *) + | `GTGT of Token.t (* ">>" *) + | `AMPGT of Token.t (* "&>" *) + | `AMPGTGT of Token.t (* "&>>" *) + | `LTAMP of Token.t (* "<&" *) + | `GTAMP of Token.t (* ">&" *) + | `GTBAR of Token.t (* ">|" *) + ] + * heredoc_command + ) + | `Choice_LTAMPDASH_opt_choice_conc of ( + [ + `LTAMPDASH of Token.t (* "<&-" *) + | `GTAMPDASH of Token.t (* ">&-" *) + ] + * literal option + ) + ] +) + +and for_body = ( + anon_c_exp_rep_COMMA_c_exp_f9a26b6 option + * c_terminator + * anon_c_exp_rep_COMMA_c_exp_f9a26b6 option + * c_terminator + * anon_c_exp_rep_COMMA_c_exp_f9a26b6 option ) -and do_group = ( - Token.t (* "do" *) - * statements2 option - * Token.t (* "done" *) +and for_statement = ( + [ `For of Token.t (* "for" *) | `Select of Token.t (* "select" *) ] + * simple_variable_name + * (Token.t (* "in" *) * heredoc_command) option + * terminator + * do_group ) -and elif_clause = ( - Token.t (* "elif" *) - * terminated_statement - * Token.t (* "then" *) - * statements2 option +and function_definition = ( + [ + `Func_exte_word_opt_LPAR_RPAR of ( + Token.t (* "function" *) + * extended_word + * (Token.t (* "(" *) * Token.t (* ")" *)) option + ) + | `Word_LPAR_RPAR of ( + word (*tok*) * Token.t (* "(" *) * Token.t (* ")" *) + ) + ] + * [ + `Comp_stmt of compound_statement + | `Subs of subshell + | `Test_cmd of test_command + | `If_stmt of if_statement + ] + * redirect option ) -and else_clause = (Token.t (* "else" *) * statements2 option) +and heredoc_body = (heredoc_body_ * heredoc_end (*tok*)) -and expansion = ( - Token.t (* "${" *) - * [ `HASH of Token.t (* "#" *) | `BANG of Token.t (* "!" *) ] option +and heredoc_body_ = ( + heredoc_body_beginning (*tok*) * [ - `Var_name_EQ_opt_choice_conc of ( - variable_name (*tok*) - * Token.t (* "=" *) - * literal option - ) - | `Choice_subs_opt_tok_prec_p1_slash_opt_regex_rep_choice_choice_conc of ( - [ - `Subs of subscript - | `Choice_semg_meta of simple_variable_name - | `Choice_STAR of special_variable_name - ] - * (tok_prec_p1_slash (*tok*) * regex (*tok*) option) option - * [ - `Choice_conc of literal - | `COLON of Token.t (* ":" *) - | `COLONQMARK of Token.t (* ":?" *) - | `EQ of Token.t (* "=" *) - | `COLONDASH of Token.t (* ":-" *) - | `PERC of Token.t (* "%" *) - | `DASH of Token.t (* "-" *) - | `HASH of Token.t (* "#" *) - ] - list (* zero or more *) - ) + `Expa of expansion + | `Simple_expa of simple_expansion + | `Cmd_subs of command_substitution + | `Here_content of heredoc_content (*tok*) ] - option - * Token.t (* "}" *) + list (* zero or more *) ) -and expression = [ - `Choice_conc of literal - | `Un_exp of ( - [ `BANG of Token.t (* "!" *) | `Test_op of test_operator (*tok*) ] - * expression - ) - | `Tern_exp of ( - expression * Token.t (* "?" *) * expression * Token.t (* ":" *) - * expression - ) - | `Bin_exp of binary_expression - | `Post_exp of ( - expression - * [ `PLUSPLUS of Token.t (* "++" *) | `DASHDASH of Token.t (* "--" *) ] - ) - | `Paren_exp of (Token.t (* "(" *) * expression * Token.t (* ")" *)) -] +and heredoc_command = literal list (* one or more *) -and file_redirect = ( +and heredoc_expression = ( + [ `BARBAR of Token.t (* "||" *) | `AMPAMP of Token.t (* "&&" *) ] + * statement +) + +and heredoc_pipeline = (anon_choice_BAR_9062646 * statement) + +and heredoc_redirect = ( file_descriptor (*tok*) option + * [ `LTLT of Token.t (* "<<" *) | `LTLTDASH of Token.t (* "<<-" *) ] + * heredoc_start (*tok*) * [ - `LT of Token.t (* "<" *) - | `GT of Token.t (* ">" *) - | `GTGT of Token.t (* ">>" *) - | `AMPGT of Token.t (* "&>" *) - | `AMPGTGT of Token.t (* "&>>" *) - | `LTAMP of Token.t (* "<&" *) - | `GTAMP of Token.t (* ">&" *) - | `GTBAR of Token.t (* ">|" *) + `Here_pipe of heredoc_pipeline + | `Rep1_choice_file_redi_opt_here_exp of ( + redirect list (* one or more *) + * heredoc_expression option + ) + | `Here_exp of heredoc_expression + | `Here_cmd of heredoc_command ] - * literal + option + * pat_1d78758 + * [ `Here_body of heredoc_body | `Simple_here_body of simple_heredoc_body ] ) -and heredoc_body = [ - `Simple_here_body of simple_heredoc_body (*tok*) - | `Here_body_begin_rep_choice_expa_here_body_end of ( - heredoc_body_beginning (*tok*) - * [ - `Expa of expansion - | `Simple_expa of simple_expansion - | `Cmd_subs of command_substitution - | `Here_body_middle of heredoc_body_middle (*tok*) - ] - list (* zero or more *) - * heredoc_body_end (*tok*) - ) -] +and herestring_redirect = ( + file_descriptor (*tok*) option + * Token.t (* "<<<" *) + * literal +) -and herestring_redirect = (Token.t (* "<<<" *) * literal) +and if_statement = ( + Token.t (* "if" *) + * terminated_statement + * Token.t (* "then" *) + * terminated_statement option + * elif_clause list (* zero or more *) + * else_clause option + * Token.t (* "fi" *) +) and last_case_item = ( - literal - * (Token.t (* "|" *) * literal) list (* zero or more *) + Token.t (* "(" *) option + * anon_choice_lit_af2a0ae + * (Token.t (* "|" *) * anon_choice_lit_af2a0ae) list (* zero or more *) * Token.t (* ")" *) * program * Token.t (* ";;" *) option ) +and list_ = ( + statement + * [ `AMPAMP of Token.t (* "&&" *) | `BARBAR of Token.t (* "||" *) ] + * statement +) + and literal = [ `Conc of concatenation | `Choice_semg_deep_exp of primary_expression | `Rep1_spec_char of special_character (*tok*) list (* one or more *) ] +and negated_command = ( + Token.t (* "!" *) + * [ + `Cmd of command + | `Var_assign of variable_assignment + | `Test_cmd of test_command + | `Subs of subshell + ] +) + +and number = [ + `Pat_421f39f of pat_421f39f + | `Pat_b978cc7_choice_expa of ( + pat_b978cc7 + * [ `Expa of expansion | `Cmd_subs of command_substitution ] + ) +] + +and parenthesized_expression = ( + Token.t (* "(" *) * expression * Token.t (* ")" *) +) + and primary_expression = [ `Semg_deep_exp of (Token.t (* "<..." *) * literal * Token.t (* "...>" *)) | `Choice_word of [ `Word of word (*tok*) + | `Test_op of test_operator (*tok*) | `Str of string_ | `Raw_str of raw_string (*tok*) - | `Ansii_c_str of ansii_c_string (*tok*) + | `Tran_str of translated_string + | `Ansi_c_str of ansi_c_string (*tok*) + | `Num of number | `Expa of expansion | `Simple_expa of simple_expansion - | `Str_expa of string_expansion | `Cmd_subs of command_substitution | `Proc_subs of process_substitution + | `Arit_expa of arithmetic_expansion + | `Brace_exp of brace_expression ] ] @@ -342,128 +1095,83 @@ and process_substitution = ( and program = statements option -and statement = [ - `Redi_stmt of ( +and redirect = [ + `File_redi of file_redirect + | `Here_redi of herestring_redirect +] + +and redirected_statement = [ + `Choice_choice_redi_stmt_choice_rep1_choice_file_redi of ( statement * [ - `File_redi of file_redirect - | `Here_redi_a9657de of heredoc_redirect - | `Here_redi_7d3292d of herestring_redirect + `Rep1_choice_file_redi of + [ `File_redi of file_redirect | `Here_redi of heredoc_redirect ] + list (* one or more *) ] - list (* one or more *) ) + | `Choice_if_stmt_here_redi of ( + [ `If_stmt of if_statement | `While_stmt of while_statement ] + * herestring_redirect + ) + | `Rep1_choice_file_redi of redirect list (* one or more *) + | `Here_redi of herestring_redirect +] + +and statement = [ + `Choice_redi_stmt of statement_not_subshell + | `Subs of subshell +] + +and statement_not_pipeline = [ + `Redi_stmt of redirected_statement | `Var_assign of variable_assignment + | `Var_assigns of variable_assignments | `Cmd of command - | `Decl_cmd of ( - [ - `Decl of Token.t (* "declare" *) - | `Type of Token.t (* "typeset" *) - | `Export of Token.t (* "export" *) - | `Read of Token.t (* "readonly" *) - | `Local of Token.t (* "local" *) - ] - * [ - `Choice_conc of literal - | `Choice_semg_meta of simple_variable_name - | `Var_assign of variable_assignment - ] - list (* zero or more *) - ) - | `Unset_cmd of ( - [ - `Unset of Token.t (* "unset" *) - | `Unse of Token.t (* "unsetenv" *) - ] - * [ - `Choice_conc of literal - | `Choice_semg_meta of simple_variable_name - ] - list (* zero or more *) - ) + | `Decl_cmd of declaration_command + | `Unset_cmd of unset_command | `Test_cmd of test_command - | `Nega_cmd of ( - Token.t (* "!" *) - * [ `Cmd of command | `Test_cmd of test_command | `Subs of subshell ] - ) - | `For_stmt of ( - [ `For of Token.t (* "for" *) | `Select of Token.t (* "select" *) ] - * simple_variable_name - * (Token.t (* "in" *) * literal list (* one or more *)) option - * terminator - * do_group - ) - | `C_style_for_stmt of ( - Token.t (* "for" *) - * Token.t (* "((" *) - * expression option - * terminator - * expression option - * terminator - * expression option - * Token.t (* "))" *) - * Token.t (* ";" *) option - * [ `Do_group of do_group | `Comp_stmt of compound_statement ] - ) - | `While_stmt of (Token.t (* "while" *) * terminated_statement * do_group) - | `If_stmt of ( - Token.t (* "if" *) - * terminated_statement - * Token.t (* "then" *) - * statements2 option - * elif_clause list (* zero or more *) - * else_clause option - * Token.t (* "fi" *) - ) - | `Case_stmt of ( - Token.t (* "case" *) - * literal - * terminator option - * Token.t (* "in" *) - * terminator - * (case_item list (* zero or more *) * last_case_item) option - * Token.t (* "esac" *) - ) + | `Nega_cmd of negated_command + | `For_stmt of for_statement + | `C_style_for_stmt of c_style_for_statement + | `While_stmt of while_statement + | `If_stmt of if_statement + | `Case_stmt of case_statement + | `List of list_ + | `Comp_stmt of compound_statement + | `Func_defi of function_definition + | `Subs of subshell +] + +and statement_not_subshell = [ + `Redi_stmt of redirected_statement + | `Var_assign of variable_assignment + | `Var_assigns of variable_assignments + | `Cmd of command + | `Decl_cmd of declaration_command + | `Unset_cmd of unset_command + | `Test_cmd of test_command + | `Nega_cmd of negated_command + | `For_stmt of for_statement + | `C_style_for_stmt of c_style_for_statement + | `While_stmt of while_statement + | `If_stmt of if_statement + | `Case_stmt of case_statement | `Pipe of ( - statement - * [ `BAR of Token.t (* "|" *) | `BARAMP of Token.t (* "|&" *) ] - * statement - ) - | `List of ( - statement - * [ `AMPAMP of Token.t (* "&&" *) | `BARBAR of Token.t (* "||" *) ] - * statement + statement_not_pipeline + * (anon_choice_BAR_9062646 * statement_not_pipeline) + list (* one or more *) ) - | `Subs of subshell + | `List of list_ | `Comp_stmt of compound_statement - | `Func_defi of ( - [ - `Func_exte_word_opt_LPAR_RPAR of ( - Token.t (* "function" *) - * extended_word - * (Token.t (* "(" *) * Token.t (* ")" *)) option - ) - | `Word_LPAR_RPAR of ( - word (*tok*) * Token.t (* "(" *) * Token.t (* ")" *) - ) - ] - * [ - `Comp_stmt of compound_statement - | `Subs of subshell - | `Test_cmd of test_command - ] - ) + | `Func_defi of function_definition ] and statements = ( - anon_stmt_opt_LF_here_body_term_3efa649 list (* zero or more *) + (statement * terminator) list (* zero or more *) * statement - * (Token.t (* "\n" *) * heredoc_body) option * terminator option ) -and statements2 = - anon_stmt_opt_LF_here_body_term_3efa649 list (* one or more *) - and string_ = ( Token.t (* "\"" *) * ( @@ -475,6 +1183,7 @@ and string_ = ( | `Expa of expansion | `Simple_expa of simple_expansion | `Cmd_subs of command_substitution + | `Arit_expa of arithmetic_expansion ] * concat (*tok*) option ) @@ -483,15 +1192,16 @@ and string_ = ( * Token.t (* "\"" *) ) -and string_expansion = ( - Token.t (* "$" *) - * [ `Str of string_ | `Raw_str of raw_string (*tok*) ] -) - and subscript = ( variable_name (*tok*) * Token.t (* "[" *) - * literal + * [ + `Choice_conc of literal + | `Bin_exp of binary_expression + | `Un_exp of unary_expression + | `Comp_stmt of compound_statement + | `Subs of subshell + ] * concat (*tok*) option * Token.t (* "]" *) * concat (*tok*) option @@ -499,152 +1209,127 @@ and subscript = ( and subshell = (Token.t (* "(" *) * statements * Token.t (* ")" *)) -and terminated_statement = (statement * terminator) +and terminated_statement = (statement * terminator) list (* one or more *) and test_command = [ - `LBRACK_exp_RBRACK of ( - Token.t (* "[" *) * expression * Token.t (* "]" *) + `LBRACK_opt_choice_exp_RBRACK of ( + Token.t (* "[" *) + * [ `Exp of expression | `Redi_stmt of redirected_statement ] option + * Token.t (* "]" *) + ) + | `LBRACKLBRACK_choice_exp_RBRACKRBRACK of ( + Token.t (* "[[" *) + * [ + `Exp of expression + | `Test_cmd_bin_exp of test_command_binary_expression + ] + * Token.t (* "]]" *) ) - | `LBRACKLBRACK_exp_RBRACKRBRACK of ( - Token.t (* "[[" *) * expression * Token.t (* "]]" *) +] + +and test_command_binary_expression = ( + expression * Token.t (* "=" *) * regex_no_space (*tok*) +) + +and translated_string = (Token.t (* "$" *) * string_) + +and unary_expression = [ + `Choice_tok_prec_p1_plusps_exp of ( + anon_choice_tok_prec_p1_plusps_0918a88 * expression ) - | `LPARLPAR_exp_RPARRPAR of ( - Token.t (* "((" *) * expression * Token.t (* "))" *) + | `Choice_tok_prec_p1_dash_exp of ( + anon_choice_tok_prec_p1_dash_a8e1cc3 * expression ) + | `BANG_exp of (Token.t (* "!" *) * expression) + | `Test_op_exp of (test_operator (*tok*) * expression) ] +and unset_command = ( + [ `Unset of Token.t (* "unset" *) | `Unse of Token.t (* "unsetenv" *) ] + * [ `Choice_conc of literal | `Choice_semg_meta of simple_variable_name ] + list (* zero or more *) +) + and variable_assignment = [ `Choice_semg_meta_eq_choice_choice_conc of ( [ `Semg_meta_eq of semgrep_metavar_eq (*tok*) | `Semg_meta_pluseq of semgrep_metavar_pluseq (*tok*) ] - * anon_choice_lit_bbf16c7 + * [ + `Choice_conc of literal + | `Array of array_ + | `Empty_value of empty_value (*tok*) + ] ) | `Choice_var_name_choice_EQ_choice_choice_conc of ( [ `Var_name of variable_name (*tok*) | `Subs of subscript ] * [ `EQ of Token.t (* "=" *) | `PLUSEQ of Token.t (* "+=" *) ] - * anon_choice_lit_bbf16c7 + * [ + `Choice_conc of literal + | `Array of array_ + | `Empty_value of empty_value (*tok*) + | `Comm_word of comment_word (*tok*) + ] ) ] -type comment (* inlined *) = Token.t - -type array_ (* inlined *) = ( - Token.t (* "(" *) - * literal list (* zero or more *) - * Token.t (* ")" *) +and variable_assignments = ( + variable_assignment + * variable_assignment list (* one or more *) ) -type c_style_for_statement (* inlined *) = ( - Token.t (* "for" *) - * Token.t (* "((" *) - * expression option - * terminator - * expression option - * terminator - * expression option - * Token.t (* "))" *) - * Token.t (* ";" *) option - * [ `Do_group of do_group | `Comp_stmt of compound_statement ] +and while_statement = ( + [ `While of Token.t (* "while" *) | `Until of Token.t (* "until" *) ] + * terminated_statement + * do_group ) -type case_statement (* inlined *) = ( - Token.t (* "case" *) - * literal - * terminator option - * Token.t (* "in" *) - * terminator - * (case_item list (* zero or more *) * last_case_item) option - * Token.t (* "esac" *) -) +type error_recovery (* inlined *) = Token.t -type declaration_command (* inlined *) = ( - [ - `Decl of Token.t (* "declare" *) - | `Type of Token.t (* "typeset" *) - | `Export of Token.t (* "export" *) - | `Read of Token.t (* "readonly" *) - | `Local of Token.t (* "local" *) - ] - * [ - `Choice_conc of literal - | `Choice_semg_meta of simple_variable_name - | `Var_assign of variable_assignment - ] - list (* zero or more *) +type comment (* inlined *) = Token.t + +type multiline_variable_name (* inlined *) = tok_prec_n1_pat_ac9ca5c (*tok*) + +type arithmetic_parenthesized_expression (* inlined *) = ( + Token.t (* "(" *) * arithmetic_expression * Token.t (* ")" *) ) -type for_statement (* inlined *) = ( - [ `For of Token.t (* "for" *) | `Select of Token.t (* "select" *) ] - * simple_variable_name - * (Token.t (* "in" *) * literal list (* one or more *)) option - * terminator - * do_group +type arithmetic_postfix_expression (* inlined *) = ( + arithmetic_expression * anon_choice_PLUSPLUS_e498e28 ) -type function_definition (* inlined *) = ( - [ - `Func_exte_word_opt_LPAR_RPAR of ( - Token.t (* "function" *) - * extended_word - * (Token.t (* "(" *) * Token.t (* ")" *)) option - ) - | `Word_LPAR_RPAR of ( - word (*tok*) * Token.t (* "(" *) * Token.t (* ")" *) - ) - ] - * [ - `Comp_stmt of compound_statement - | `Subs of subshell - | `Test_cmd of test_command - ] +type arithmetic_ternary_expression (* inlined *) = ( + arithmetic_expression * Token.t (* "?" *) * arithmetic_expression + * Token.t (* ":" *) * arithmetic_expression ) -type if_statement (* inlined *) = ( - Token.t (* "if" *) - * terminated_statement - * Token.t (* "then" *) - * statements2 option - * elif_clause list (* zero or more *) - * else_clause option - * Token.t (* "fi" *) +type c_parenthesized_expression (* inlined *) = ( + Token.t (* "(" *) + * c_expression + * (Token.t (* "," *) * c_expression) list (* zero or more *) + * Token.t (* ")" *) ) -type list_ (* inlined *) = ( - statement - * [ `AMPAMP of Token.t (* "&&" *) | `BARBAR of Token.t (* "||" *) ] - * statement +type c_postfix_expression (* inlined *) = ( + c_expression_not_assignment * anon_choice_PLUSPLUS_e498e28 ) -type negated_command (* inlined *) = ( - Token.t (* "!" *) - * [ `Cmd of command | `Test_cmd of test_command | `Subs of subshell ] +type c_unary_expression (* inlined *) = ( + anon_choice_PLUSPLUS_e498e28 * c_expression_not_assignment ) -type parenthesized_expression (* inlined *) = ( - Token.t (* "(" *) * expression * Token.t (* ")" *) +type c_variable_assignment (* inlined *) = ( + c_word * Token.t (* "=" *) * c_expression ) type pipeline (* inlined *) = ( - statement - * [ `BAR of Token.t (* "|" *) | `BARAMP of Token.t (* "|&" *) ] - * statement + statement_not_pipeline + * (anon_choice_BAR_9062646 * statement_not_pipeline) list (* one or more *) ) type postfix_expression (* inlined *) = ( - expression - * [ `PLUSPLUS of Token.t (* "++" *) | `DASHDASH of Token.t (* "--" *) ] -) - -type redirected_statement (* inlined *) = ( - statement - * [ - `File_redi of file_redirect - | `Here_redi_a9657de of heredoc_redirect - | `Here_redi_7d3292d of herestring_redirect - ] - list (* one or more *) + expression * anon_choice_PLUSPLUS_e498e28 ) type semgrep_deep_expression (* inlined *) = ( @@ -656,20 +1341,7 @@ type ternary_expression (* inlined *) = ( * expression ) -type unary_expression (* inlined *) = ( - [ `BANG of Token.t (* "!" *) | `Test_op of test_operator (*tok*) ] - * expression -) - -type unset_command (* inlined *) = ( - [ `Unset of Token.t (* "unset" *) | `Unse of Token.t (* "unsetenv" *) ] - * [ `Choice_conc of literal | `Choice_semg_meta of simple_variable_name ] - list (* zero or more *) -) - -type while_statement (* inlined *) = ( - Token.t (* "while" *) * terminated_statement * do_group -) +type string_expansion (* inlined *) = (Token.t (* "$" *) * string_) type extra = [ `Comment of Loc.t * comment ] diff --git a/lib/Parse.ml b/lib/Parse.ml index 1649ae5..b8af6ed 100644 --- a/lib/Parse.ml +++ b/lib/Parse.ml @@ -31,41 +31,107 @@ let extras = [ ] let children_regexps : (string * Run.exp option) list = [ - "regex", None; - "empty_value", None; + "external_expansion_sym_hash", None; + "immediate_double_hash", None; "string_content", None; - "pat_42e353e", None; - "heredoc_body_end", None; - "concat", None; - "simple_heredoc_body", None; + "imm_tok_a", None; + "imm_tok_u_", None; + "brace_start", None; + "imm_tok_coloneq", None; + "expansion_word", None; + "tok_prec_p1_plus", None; + "pat_3d340f6", None; + "imm_tok_colonplus", None; + "semgrep_metavar_pluseq", None; + "comment_word", None; + "imm_tok_qmark", None; + "pat_1d78758", None; + "heredoc_end", None; "semgrep_metavariable", None; - "special_character", None; + "external_expansion_sym_bang", None; "heredoc_start", None; - "heredoc_body_middle", None; + "heredoc_body_beginning", None; + "imm_tok_eq", None; + "special_character", None; + "pat_421f39f", None; "semgrep_metavar_eq", None; - "test_operator", None; + "imm_tok_a_", None; + "concat", None; "raw_string", None; - "file_descriptor", None; - "variable_name", None; + "extglob_pattern", None; + "imm_tok_colonqmark", None; + "external_expansion_sym_equal", None; + "tok_prec_p1_plusplus", None; + "imm_tok_l", None; + "regex_no_space", None; + "pat_2b6adbc", None; + "pat_b978cc7", None; + "pat_a883a20", None; + "imm_tok_at", None; + "imm_tok_k", None; + "tok_prec_p1_dash", None; + "pat_42e353e", None; + "test_operator", None; + "imm_tok_dotdot", None; + "simple_heredoc_body_", None; + "imm_tok_u", None; "semgrep_named_ellipsis", None; - "tok_prec_p1_slash", None; - "ansii_c_string", None; - "heredoc_body_beginning", None; + "heredoc_content", None; + "imm_tok_bang", None; + "regex", None; + "imm_tok_star", None; + "imm_tok_q", None; + "tok_prec_p1_tilde", None; + "imm_tok_dash", None; + "imm_tok_hash", None; "word", None; + "imm_tok_p", None; + "variable_name", None; + "empty_value", None; + "imm_tok_pat_217c202", None; + "ansi_c_string", None; + "imm_tok_rcurl", None; + "imm_tok_k_", None; + "regex_no_slash", None; "comment", None; - "semgrep_metavar_pluseq", None; + "tok_prec_p1_dashdash", None; + "imm_tok_e", None; + "imm_tok_colondash", None; + "imm_tok_plus", None; + "tok_prec_n1_rcurl", None; + "bare_dollar", None; + "file_descriptor", None; + "c_terminator", + Some ( + Alt [| + Token (Literal ";"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ); "orig_simple_variable_name", Some ( Token (Name "pat_42e353e"); ); - "heredoc_redirect", + "simple_heredoc_body", + Some ( + Seq [ + Token (Name "simple_heredoc_body_"); + Token (Name "heredoc_end"); + ]; + ); + "expansion_regex_removal", Some ( Seq [ Alt [| - Token (Literal "<<"); - Token (Literal "<<-"); + Token (Literal ","); + Token (Literal ",,"); + Token (Literal "^"); + Token (Literal "^^"); |]; - Token (Name "heredoc_start"); + Opt ( + Token (Name "regex"); + ); ]; ); "extended_word", @@ -75,6 +141,34 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "word"); |]; ); + "brace_expression", + Some ( + Seq [ + Token (Name "brace_start"); + Token (Name "imm_tok_pat_217c202"); + Token (Name "imm_tok_dotdot"); + Token (Name "imm_tok_pat_217c202"); + Token (Name "imm_tok_rcurl"); + ]; + ); + "expansion_operator", + Some ( + Seq [ + Token (Name "imm_tok_at"); + Alt [| + Token (Name "imm_tok_u"); + Token (Name "imm_tok_u_"); + Token (Name "imm_tok_l"); + Token (Name "imm_tok_q"); + Token (Name "imm_tok_e"); + Token (Name "imm_tok_p"); + Token (Name "imm_tok_a"); + Token (Name "imm_tok_k"); + Token (Name "imm_tok_a_"); + Token (Name "imm_tok_k_"); + |]; + ]; + ); "simple_expansion", Some ( Alt [| @@ -86,9 +180,10 @@ let children_regexps : (string * Run.exp option) list = [ Token (Literal "*"); Token (Literal "@"); Token (Literal "?"); + Token (Literal "!"); + Token (Literal "#"); Token (Literal "-"); Token (Literal "$"); - Token (Literal "0"); Token (Literal "_"); |]; Token (Literal "!"); @@ -98,655 +193,733 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "semgrep_named_ellipsis"); |]; ); - "array", + "arithmetic_binary_expression", Some ( - Seq [ - Token (Literal "("); - Repeat ( + Alt [| + Seq [ + Token (Name "arithmetic_expression"); Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); + Token (Literal "+="); + Token (Literal "-="); + Token (Literal "*="); + Token (Literal "/="); + Token (Literal "%="); + Token (Literal "**="); + Token (Literal "<<="); + Token (Literal ">>="); + Token (Literal "&="); + Token (Literal "^="); + Token (Literal "|="); |]; - ); - Token (Literal ")"); - ]; - ); - "binary_expression", - Some ( - Alt [| + Token (Name "arithmetic_expression"); + ]; Seq [ - Token (Name "expression"); + Token (Name "arithmetic_expression"); Alt [| Token (Literal "="); - Token (Literal "=="); Token (Literal "=~"); + |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "||"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "&&"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "|"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "^"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "&"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Alt [| + Token (Literal "=="); Token (Literal "!="); - Token (Literal "+"); - Token (Literal "-"); - Token (Literal "+="); - Token (Literal "-="); + |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Alt [| Token (Literal "<"); Token (Literal ">"); Token (Literal "<="); Token (Literal ">="); - Token (Literal "||"); - Token (Literal "&&"); - Token (Name "test_operator"); |]; - Token (Name "expression"); + Token (Name "arithmetic_expression"); ]; Seq [ - Token (Name "expression"); + Token (Name "arithmetic_expression"); Alt [| - Token (Literal "=="); - Token (Literal "=~"); + Token (Literal "<<"); + Token (Literal ">>"); |]; - Token (Name "regex"); + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Alt [| + Token (Literal "+"); + Token (Literal "-"); + |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Alt [| + Token (Literal "*"); + Token (Literal "/"); + Token (Literal "%"); + |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal "**"); + Token (Name "arithmetic_expression"); ]; |]; ); - "c_style_for_statement", + "arithmetic_expansion", Some ( - Seq [ - Token (Literal "for"); - Token (Literal "(("); - Opt ( - Token (Name "expression"); - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - Opt ( - Token (Name "expression"); - ); + Alt [| + Seq [ + Token (Literal "$(("); + Token (Name "arithmetic_expression"); + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "arithmetic_expression"); + ]; + ); + Token (Literal "))"); + ]; + Seq [ + Token (Literal "$["); + Token (Name "arithmetic_expression"); + Token (Literal "]"); + ]; + |]; + ); + "arithmetic_expression", + Some ( + Alt [| + Token (Name "arithmetic_literal"); + Token (Name "arithmetic_unary_expression"); + Token (Name "arithmetic_ternary_expression"); + Token (Name "arithmetic_binary_expression"); + Token (Name "arithmetic_postfix_expression"); + Token (Name "arithmetic_parenthesized_expression"); + Token (Name "command_substitution"); + |]; + ); + "arithmetic_literal", + Some ( + Alt [| + Token (Name "number"); + Token (Name "subscript"); + Token (Name "simple_expansion"); + Token (Name "expansion"); Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); |]; - Opt ( - Token (Name "expression"); - ); - Token (Literal "))"); - Opt ( - Token (Literal ";"); - ); + Token (Name "variable_name"); + Token (Name "string"); + Token (Name "raw_string"); + |]; + ); + "arithmetic_parenthesized_expression", + Some ( + Seq [ + Token (Literal "("); + Token (Name "arithmetic_expression"); + Token (Literal ")"); + ]; + ); + "arithmetic_postfix_expression", + Some ( + Seq [ + Token (Name "arithmetic_expression"); Alt [| - Token (Name "do_group"); - Token (Name "compound_statement"); + Token (Literal "++"); + Token (Literal "--"); |]; ]; ); - "case_item", + "arithmetic_ternary_expression", Some ( Seq [ - Alt [| - Token (Name "concatenation"); + Token (Name "arithmetic_expression"); + Token (Literal "?"); + Token (Name "arithmetic_expression"); + Token (Literal ":"); + Token (Name "arithmetic_expression"); + ]; + ); + "arithmetic_unary_expression", + Some ( + Alt [| + Seq [ Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; + Token (Name "tok_prec_p1_plusplus"); + Token (Name "tok_prec_p1_dashdash"); |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Alt [| + Token (Name "tok_prec_p1_dash"); + Token (Name "tok_prec_p1_plus"); + Token (Name "tok_prec_p1_tilde"); + |]; + Token (Name "arithmetic_expression"); + ]; + Seq [ + Token (Literal "!"); + Token (Name "arithmetic_expression"); + ]; + |]; + ); + "array", + Some ( + Seq [ + Token (Literal "("); Repeat ( - Seq [ - Token (Literal "|"); + Alt [| + Token (Name "concatenation"); Alt [| - Token (Name "concatenation"); + Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; - Repeat1 ( - Token (Name "special_character"); - ); |]; - ]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; ); Token (Literal ")"); - Opt ( - Token (Name "statements"); - ); - Alt [| - Token (Literal ";;"); - Alt [| - Token (Literal ";&"); - Token (Literal ";;&"); - |]; - |]; ]; ); - "case_statement", + "binary_expression", Some ( - Seq [ - Token (Literal "case"); + Alt [| Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); + Seq [ + Token (Name "expression"); Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Literal "+="); + Token (Literal "-="); + Token (Literal "*="); + Token (Literal "/="); + Token (Literal "%="); + Token (Literal "**="); + Token (Literal "<<="); + Token (Literal ">>="); + Token (Literal "&="); + Token (Literal "^="); + Token (Literal "|="); |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - Opt ( - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Alt [| + Token (Literal "="); + Token (Literal "=~"); + |]; + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Literal "||"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Literal "&&"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Literal "|"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Literal "^"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); Token (Literal "&"); - |]; - ); - Token (Literal "in"); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - Opt ( + Token (Name "expression"); + ]; Seq [ - Repeat ( - Token (Name "case_item"); - ); - Token (Name "last_case_item"); + Token (Name "expression"); + Alt [| + Token (Literal "=="); + Token (Literal "!="); + |]; + Token (Name "expression"); ]; - ); - Token (Literal "esac"); - ]; - ); - "command", - Some ( - Seq [ - Repeat ( - Alt [| - Token (Name "variable_assignment"); - Token (Name "file_redirect"); - |]; - ); - Token (Name "command_name"); - Repeat ( - Alt [| + Seq [ + Token (Name "expression"); Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); + Token (Literal "<"); + Token (Literal ">"); + Token (Literal "<="); + Token (Literal ">="); |]; - Seq [ - Alt [| - Token (Literal "=~"); - Token (Literal "=="); - |]; - Alt [| - Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - Token (Name "regex"); - |]; - ]; - |]; - ); - ]; - ); - "command_name", - Some ( - Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Name "test_operator"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Alt [| + Token (Literal "<<"); + Token (Literal ">>"); + |]; + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Alt [| + Token (Literal "+"); + Token (Literal "-"); + |]; + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Alt [| + Token (Literal "*"); + Token (Literal "/"); + Token (Literal "%"); + |]; + Token (Name "expression"); + ]; + Seq [ + Token (Name "expression"); + Token (Literal "**"); + Token (Name "expression"); + ]; + |]; + Seq [ + Token (Name "expression"); + Token (Literal "=~"); + Token (Name "regex_no_space"); + ]; + Seq [ + Token (Name "expression"); Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Literal "=="); + Token (Literal "!="); |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); + Token (Name "extglob_blob"); + ]; |]; ); - "command_substitution", + "c_binary_expression", Some ( Alt [| Seq [ - Token (Literal "$("); - Token (Name "statements"); - Token (Literal ")"); + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "+="); + Token (Literal "-="); + Token (Literal "*="); + Token (Literal "/="); + Token (Literal "%="); + Token (Literal "**="); + Token (Literal "<<="); + Token (Literal ">>="); + Token (Literal "&="); + Token (Literal "^="); + Token (Literal "|="); + |]; + Token (Name "c_expression_not_assignment"); ]; Seq [ - Token (Literal "$("); - Token (Name "file_redirect"); - Token (Literal ")"); + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "||"); + Token (Literal "-o"); + |]; + Token (Name "c_expression_not_assignment"); ]; Seq [ - Token (Literal "`"); - Token (Name "statements"); - Token (Literal "`"); + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "&&"); + Token (Literal "-a"); + |]; + Token (Name "c_expression_not_assignment"); ]; - |]; - ); - "compound_statement", - Some ( - Seq [ - Token (Literal "{"); - Opt ( - Repeat1 ( - Seq [ - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ]; - ); + Seq [ + Token (Name "c_expression_not_assignment"); + Token (Literal "|"); + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Token (Literal "^"); + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Token (Literal "&"); + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "=="); + Token (Literal "!="); + |]; + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "<"); + Token (Literal ">"); + Token (Literal "<="); + Token (Literal ">="); + |]; + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "<<"); + Token (Literal ">>"); + |]; + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "+"); + Token (Literal "-"); + |]; + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "*"); + Token (Literal "/"); + Token (Literal "%"); + |]; + Token (Name "c_expression_not_assignment"); + ]; + Seq [ + Token (Name "c_expression_not_assignment"); + Token (Literal "**"); + Token (Name "c_expression_not_assignment"); + ]; + |]; + ); + "c_expression", + Some ( + Alt [| + Token (Name "c_expression_not_assignment"); + Token (Name "c_variable_assignment"); + |]; + ); + "c_expression_not_assignment", + Some ( + Alt [| + Token (Name "pat_2b6adbc"); + Token (Name "simple_expansion"); + Token (Name "expansion"); + Token (Name "number"); + Token (Name "string"); + Token (Name "c_unary_expression"); + Token (Name "c_binary_expression"); + Token (Name "c_postfix_expression"); + Token (Name "c_parenthesized_expression"); + Token (Name "command_substitution"); + |]; + ); + "c_parenthesized_expression", + Some ( + Seq [ + Token (Literal "("); + Token (Name "c_expression"); + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "c_expression"); + ]; ); - Token (Literal "}"); + Token (Literal ")"); ]; ); - "concatenation", + "c_postfix_expression", + Some ( + Seq [ + Token (Name "c_expression_not_assignment"); + Alt [| + Token (Literal "++"); + Token (Literal "--"); + |]; + ]; + ); + "c_style_for_statement", + Some ( + Seq [ + Token (Literal "for"); + Token (Literal "(("); + Alt [| + Token (Name "for_body"); + |]; + Token (Literal "))"); + Opt ( + Token (Literal ";"); + ); + Alt [| + Token (Name "do_group"); + Token (Name "compound_statement"); + |]; + ]; + ); + "c_unary_expression", + Some ( + Seq [ + Alt [| + Token (Literal "++"); + Token (Literal "--"); + |]; + Token (Name "c_expression_not_assignment"); + ]; + ); + "c_variable_assignment", + Some ( + Seq [ + Token (Name "pat_2b6adbc"); + Token (Literal "="); + Token (Name "c_expression"); + ]; + ); + "case_item", + Some ( + Seq [ + Alt [| + Seq [ + Opt ( + Token (Literal "("); + ); + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "extglob_blob"); + |]; + Repeat ( + Seq [ + Token (Literal "|"); + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "extglob_blob"); + |]; + ]; + ); + Token (Literal ")"); + ]; + |]; + Opt ( + Token (Name "statements"); + ); + Alt [| + Token (Literal ";;"); + Alt [| + Token (Literal ";&"); + Token (Literal ";;&"); + |]; + |]; + ]; + ); + "case_statement", Some ( Seq [ + Token (Literal "case"); Alt [| + Token (Name "concatenation"); Alt [| Token (Name "semgrep_deep_expression"); Alt [| Token (Name "word"); + Token (Name "test_operator"); Token (Name "string"); Token (Name "raw_string"); - Token (Name "ansii_c_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); Token (Name "expansion"); Token (Name "simple_expansion"); - Token (Name "string_expansion"); Token (Name "command_substitution"); Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; |]; - Token (Name "special_character"); + Repeat1 ( + Token (Name "special_character"); + ); |]; - Repeat1 ( - Seq [ - Token (Name "concat"); - Alt [| - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Token (Name "special_character"); - |]; - ]; + Opt ( + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ); + Token (Literal "in"); + Opt ( + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; ); Opt ( Seq [ - Token (Name "concat"); - Token (Literal "$"); + Repeat ( + Token (Name "case_item"); + ); + Token (Name "last_case_item"); ]; ); + Token (Literal "esac"); ]; ); - "declaration_command", + "command", Some ( Seq [ - Alt [| - Token (Literal "declare"); - Token (Literal "typeset"); - Token (Literal "export"); - Token (Literal "readonly"); - Token (Literal "local"); - |]; Repeat ( Alt [| + Token (Name "variable_assignment"); Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - Alt [| - Token (Name "semgrep_metavariable"); - Token (Name "pat_42e353e"); + Token (Name "file_redirect"); + Token (Name "herestring_redirect"); |]; - Token (Name "variable_assignment"); |]; ); - ]; - ); - "do_group", - Some ( - Seq [ - Token (Literal "do"); - Opt ( - Repeat1 ( - Seq [ + Token (Name "command_name"); + Alt [| + Repeat ( + Alt [| Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ]; - ); - ); - Token (Literal "done"); - ]; - ); - "elif_clause", - Some ( - Seq [ - Token (Literal "elif"); - Token (Name "terminated_statement"); - Token (Literal "then"); - Opt ( - Repeat1 ( - Seq [ - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ]; - ); - ); - ]; - ); - "else_clause", - Some ( - Seq [ - Token (Literal "else"); - Opt ( - Repeat1 ( - Seq [ - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ]; - ); - ); - ]; - ); - "expansion", - Some ( - Seq [ - Token (Literal "${"); - Opt ( - Alt [| - Token (Literal "#"); - Token (Literal "!"); - |]; - ); - Opt ( - Alt [| - Seq [ - Token (Name "variable_name"); - Token (Literal "="); - Opt ( + Token (Name "concatenation"); Alt [| - Token (Name "concatenation"); + Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - ); - ]; - Seq [ - Alt [| - Token (Name "subscript"); - Alt [| - Token (Name "semgrep_metavariable"); - Token (Name "pat_42e353e"); |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "bare_dollar"); + Seq [ Alt [| - Token (Literal "*"); - Token (Literal "@"); - Token (Literal "?"); - Token (Literal "-"); - Token (Literal "$"); - Token (Literal "0"); - Token (Literal "_"); + Token (Literal "=~"); + Token (Literal "=="); |]; - |]; - Opt ( - Seq [ - Token (Name "tok_prec_p1_slash"); - Opt ( - Token (Name "regex"); - ); - ]; - ); - Repeat ( Alt [| Alt [| Token (Name "concatenation"); @@ -754,233 +927,339 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "semgrep_deep_expression"); Alt [| Token (Name "word"); + Token (Name "test_operator"); Token (Name "string"); Token (Name "raw_string"); - Token (Name "ansii_c_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); Token (Name "expansion"); Token (Name "simple_expansion"); - Token (Name "string_expansion"); Token (Name "command_substitution"); Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; |]; Repeat1 ( Token (Name "special_character"); ); |]; - Token (Literal ":"); - Token (Literal ":?"); - Token (Literal "="); - Token (Literal ":-"); - Token (Literal "%"); - Token (Literal "-"); - Token (Literal "#"); + Token (Name "regex"); |]; - ); - ]; + ]; + Token (Name "herestring_redirect"); + |]; + ); + Token (Name "subshell"); + |]; + ]; + ); + "command_name", + Some ( + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; + |]; + Repeat1 ( + Token (Name "special_character"); ); - Token (Literal "}"); - ]; + |]; ); - "expression", + "command_substitution", Some ( Alt [| + Seq [ + Token (Literal "$("); + Token (Name "statements"); + Token (Literal ")"); + ]; + Seq [ + Token (Literal "$("); + Token (Name "file_redirect"); + Token (Literal ")"); + ]; + Seq [ + Token (Literal "`"); + Token (Name "statements"); + Token (Literal "`"); + ]; + Seq [ + Token (Literal "$`"); + Token (Name "statements"); + Token (Literal "`"); + ]; + |]; + ); + "compound_statement", + Some ( + Alt [| + Seq [ + Token (Literal "{"); + Opt ( + Repeat1 ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + ); + Token (Name "tok_prec_n1_rcurl"); + ]; + Seq [ + Token (Literal "(("); + Repeat ( + Seq [ + Token (Name "arithmetic_expression"); + Token (Literal ","); + ]; + ); + Token (Name "arithmetic_expression"); + Token (Literal "))"); + ]; + |]; + ); + "concatenation", + Some ( + Seq [ Alt [| - Token (Name "concatenation"); Alt [| Token (Name "semgrep_deep_expression"); Alt [| Token (Name "word"); + Token (Name "test_operator"); Token (Name "string"); Token (Name "raw_string"); - Token (Name "ansii_c_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); Token (Name "expansion"); Token (Name "simple_expansion"); - Token (Name "string_expansion"); Token (Name "command_substitution"); Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; |]; - Repeat1 ( - Token (Name "special_character"); - ); + Token (Name "special_character"); |]; - Token (Name "unary_expression"); - Token (Name "ternary_expression"); - Token (Name "binary_expression"); - Token (Name "postfix_expression"); - Token (Name "parenthesized_expression"); - |]; - ); - "file_redirect", - Some ( - Seq [ - Opt ( - Token (Name "file_descriptor"); - ); - Alt [| - Token (Literal "<"); - Token (Literal ">"); - Token (Literal ">>"); - Token (Literal "&>"); - Token (Literal "&>>"); - Token (Literal "<&"); - Token (Literal ">&"); - Token (Literal ">|"); - |]; - Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); + Repeat1 ( + Seq [ Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Name "concat"); + Token (Name "pat_a883a20"); |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - ]; - ); - "for_statement", - Some ( - Seq [ - Alt [| - Token (Literal "for"); - Token (Literal "select"); - |]; - Alt [| - Token (Name "semgrep_metavariable"); - Token (Name "pat_42e353e"); - |]; - Opt ( - Seq [ - Token (Literal "in"); - Repeat1 ( + Alt [| Alt [| - Token (Name "concatenation"); + Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; - Repeat1 ( - Token (Name "special_character"); - ); |]; - ); + Token (Name "special_character"); + Token (Name "comment_word"); + Token (Name "bare_dollar"); + |]; + ]; + ); + Opt ( + Seq [ + Token (Name "concat"); + Token (Literal "$"); ]; ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - Token (Name "do_group"); ]; ); - "function_definition", + "concatenation_in_expansion", Some ( Seq [ Alt [| - Seq [ - Token (Literal "function"); - Token (Name "extended_word"); - Opt ( - Seq [ - Token (Literal "("); - Token (Literal ")"); - ]; - ); - ]; - Seq [ - Token (Name "word"); - Token (Literal "("); - Token (Literal ")"); - ]; - |]; - Alt [| - Token (Name "compound_statement"); - Token (Name "subshell"); - Token (Name "test_command"); + Token (Name "word"); + Token (Name "variable_name"); + Token (Name "simple_expansion"); + Token (Name "expansion"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "ansi_c_string"); + Token (Name "command_substitution"); + Token (Name "expansion_word"); + Token (Name "array"); + Token (Name "process_substitution"); |]; - ]; - ); - "heredoc_body", - Some ( - Alt [| - Token (Name "simple_heredoc_body"); - Seq [ - Token (Name "heredoc_body_beginning"); - Repeat ( + Repeat1 ( + Seq [ Alt [| - Token (Name "expansion"); + Token (Name "concat"); + Token (Name "pat_a883a20"); + |]; + Alt [| + Token (Name "word"); + Token (Name "variable_name"); Token (Name "simple_expansion"); + Token (Name "expansion"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "ansi_c_string"); Token (Name "command_substitution"); - Token (Name "heredoc_body_middle"); + Token (Name "expansion_word"); + Token (Name "array"); + Token (Name "process_substitution"); |]; - ); - Token (Name "heredoc_body_end"); - ]; - |]; + ]; + ); + ]; ); - "herestring_redirect", + "declaration_command", Some ( Seq [ - Token (Literal "<<<"); Alt [| - Token (Name "concatenation"); + Token (Literal "declare"); + Token (Literal "typeset"); + Token (Literal "export"); + Token (Literal "readonly"); + Token (Literal "local"); + |]; + Repeat ( Alt [| - Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); |]; + Token (Name "variable_assignment"); |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; + ); ]; ); - "if_statement", + "do_group", Some ( Seq [ - Token (Literal "if"); - Token (Name "terminated_statement"); - Token (Literal "then"); + Token (Literal "do"); Opt ( Repeat1 ( Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + ); + Token (Literal "done"); + ]; + ); + "elif_clause", + Some ( + Seq [ + Token (Literal "elif"); + Repeat1 ( + Seq [ + Alt [| Alt [| Token (Name "redirected_statement"); Token (Name "variable_assignment"); + Token (Name "variable_assignments"); Token (Name "command"); Token (Name "declaration_command"); Token (Name "unset_command"); @@ -993,755 +1272,3626 @@ let children_regexps : (string * Run.exp option) list = [ Token (Name "case_statement"); Token (Name "pipeline"); Token (Name "list"); - Token (Name "subshell"); Token (Name "compound_statement"); Token (Name "function_definition"); |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + Token (Literal "then"); + Opt ( + Repeat1 ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; Alt [| Token (Literal ";"); Token (Literal ";;"); - Token (Literal "\n"); + Token (Name "pat_1d78758"); Token (Literal "&"); |]; ]; ); ); - Repeat ( - Token (Name "elif_clause"); - ); - Opt ( - Token (Name "else_clause"); - ); - Token (Literal "fi"); ]; ); - "last_case_item", + "else_clause", Some ( Seq [ - Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; + Token (Literal "else"); + Opt ( Repeat1 ( - Token (Name "special_character"); - ); - |]; - Repeat ( - Seq [ - Token (Literal "|"); - Alt [| - Token (Name "concatenation"); + Seq [ Alt [| - Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); |]; + Token (Name "subshell"); |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - ]; - ); - Token (Literal ")"); - Opt ( - Token (Name "statements"); - ); - Opt ( - Token (Literal ";;"); + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); ); ]; ); - "list", - Some ( - Seq [ - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Alt [| - Token (Literal "&&"); - Token (Literal "||"); - |]; - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - ]; - ); - "negated_command", + "expansion", Some ( Seq [ - Token (Literal "!"); - Alt [| - Token (Name "command"); - Token (Name "test_command"); - Token (Name "subshell"); - |]; + Token (Literal "${"); + Opt ( + Token (Name "expansion_body"); + ); + Token (Literal "}"); ]; ); - "parenthesized_expression", + "expansion_body", Some ( - Seq [ - Token (Literal "("); - Token (Name "expression"); - Token (Literal ")"); - ]; + Alt [| + Repeat1 ( + Alt [| + Token (Name "external_expansion_sym_hash"); + Token (Name "external_expansion_sym_bang"); + Token (Name "external_expansion_sym_equal"); + |]; + ); + Seq [ + Opt ( + Token (Name "imm_tok_bang"); + ); + Alt [| + Token (Name "variable_name"); + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + Alt [| + Token (Literal "*"); + Token (Literal "@"); + Token (Literal "?"); + Token (Literal "!"); + Token (Literal "#"); + Token (Literal "-"); + Token (Literal "$"); + Token (Literal "_"); + |]; + Token (Name "subscript"); + |]; + Alt [| + Token (Name "expansion_expression"); + Token (Name "expansion_regex"); + Token (Name "expansion_regex_replacement"); + Token (Name "expansion_regex_removal"); + Token (Name "expansion_max_length"); + Token (Name "expansion_operator"); + |]; + ]; + Seq [ + Token (Name "imm_tok_bang"); + Alt [| + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + Token (Name "variable_name"); + |]; + Opt ( + Alt [| + Token (Name "imm_tok_at"); + Token (Name "imm_tok_star"); + |]; + ); + ]; + Seq [ + Opt ( + Alt [| + Token (Name "imm_tok_hash"); + Token (Name "imm_tok_bang"); + Token (Name "imm_tok_eq"); + |]; + ); + Alt [| + Token (Name "subscript"); + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + Alt [| + Token (Literal "*"); + Token (Literal "@"); + Token (Literal "?"); + Token (Literal "!"); + Token (Literal "#"); + Token (Literal "-"); + Token (Literal "$"); + Token (Literal "_"); + |]; + Token (Name "command_substitution"); + |]; + Repeat ( + Alt [| + Token (Name "external_expansion_sym_hash"); + Token (Name "external_expansion_sym_bang"); + Token (Name "external_expansion_sym_equal"); + |]; + ); + ]; + |]; ); - "pipeline", + "expansion_expression", Some ( Seq [ Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Alt [| - Token (Literal "|"); - Token (Literal "|&"); - |]; - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); + Token (Name "imm_tok_eq"); + Token (Name "imm_tok_coloneq"); + Token (Name "imm_tok_dash"); + Token (Name "imm_tok_colondash"); + Token (Name "imm_tok_plus"); + Token (Name "imm_tok_colonplus"); + Token (Name "imm_tok_qmark"); + Token (Name "imm_tok_colonqmark"); |]; + Opt ( + Seq [ + Alt [| + Token (Name "concatenation_in_expansion"); + Token (Name "command_substitution"); + Token (Name "word"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "array"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "ansi_c_string"); + Token (Name "expansion_word"); + |]; + ]; + ); ]; ); - "postfix_expression", + "expansion_max_length", Some ( Seq [ - Token (Name "expression"); - Alt [| - Token (Literal "++"); - Token (Literal "--"); - |]; + Token (Literal ":"); + Opt ( + Alt [| + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + Token (Name "number"); + Token (Name "arithmetic_expansion"); + Token (Name "expansion"); + Token (Name "parenthesized_expression"); + Token (Name "command_substitution"); + Token (Name "expansion_max_length_binary_expression"); + Token (Name "pat_1d78758"); + |]; + ); + Opt ( + Seq [ + Token (Literal ":"); + Opt ( + Token (Name "simple_expansion"); + ); + Opt ( + Alt [| + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + Token (Name "number"); + Token (Name "arithmetic_expansion"); + Token (Name "expansion"); + Token (Name "parenthesized_expression"); + Token (Name "command_substitution"); + Token (Name "expansion_max_length_binary_expression"); + Token (Name "pat_1d78758"); + |]; + ); + ]; + ); ]; ); - "process_substitution", + "expansion_max_length_binary_expression", Some ( - Seq [ + Alt [| + Seq [ + Token (Name "expansion_max_length_expression"); + Alt [| + Token (Literal "+"); + Token (Literal "-"); + |]; + Token (Name "expansion_max_length_expression"); + ]; + Seq [ + Token (Name "expansion_max_length_expression"); + Alt [| + Token (Literal "*"); + Token (Literal "/"); + Token (Literal "%"); + |]; + Token (Name "expansion_max_length_expression"); + ]; + |]; + ); + "expansion_max_length_expression", + Some ( + Alt [| Alt [| - Token (Literal "<("); - Token (Literal ">("); + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); |]; - Token (Name "statements"); - Token (Literal ")"); - ]; + Token (Name "number"); + Token (Name "expansion"); + Token (Name "expansion_max_length_binary_expression"); + |]; ); - "redirected_statement", + "expansion_regex", Some ( Seq [ Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); + Token (Literal "#"); + Token (Name "immediate_double_hash"); + Token (Literal "%"); + Token (Literal "%%"); |]; - Repeat1 ( + Repeat ( Alt [| - Token (Name "file_redirect"); - Token (Name "heredoc_redirect"); - Token (Name "herestring_redirect"); + Token (Name "regex"); + Token (Literal ")"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "pat_3d340f6"); |]; ); ]; ); - "semgrep_deep_expression", + "expansion_regex_replacement", Some ( Seq [ - Token (Literal "<..."); Alt [| - Token (Name "concatenation"); + Token (Literal "/"); + Token (Literal "//"); + Token (Literal "/#"); + Token (Literal "/%"); + |]; + Opt ( Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); + Token (Name "regex_no_slash"); + Token (Name "string"); + Token (Name "command_substitution"); + Seq [ Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; + Token (Name "regex_no_slash"); + ]; |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - Token (Literal "...>"); - ]; - ); - "statements", - Some ( - Seq [ - Repeat ( - Seq [ - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; - ); - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ]; - ); - Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Opt ( - Seq [ - Token (Literal "\n"); - Token (Name "heredoc_body"); - ]; ); Opt ( - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); - |]; - ); - ]; - ); - "string", - Some ( - Seq [ - Token (Literal "\""); - Repeat ( Seq [ - Alt [| + Token (Literal "/"); + Opt ( Seq [ + Alt [| + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + Seq [ + Token (Name "command_substitution"); + Token (Name "expansion_word"); + ]; + Token (Name "expansion_word"); + Token (Name "concatenation_in_expansion"); + Token (Name "array"); + |]; Opt ( - Token (Literal "$"); + Token (Literal "/"); ); - Token (Name "string_content"); ]; - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "command_substitution"); - |]; - Opt ( - Token (Name "concat"); ); ]; ); - Opt ( - Token (Literal "$"); - ); - Token (Literal "\""); - ]; - ); - "string_expansion", - Some ( - Seq [ - Token (Literal "$"); - Alt [| - Token (Name "string"); - Token (Name "raw_string"); - |]; ]; ); - "subscript", + "expression", Some ( - Seq [ - Token (Name "variable_name"); - Token (Literal "["); + Alt [| Alt [| Token (Name "concatenation"); Alt [| Token (Name "semgrep_deep_expression"); Alt [| Token (Name "word"); + Token (Name "test_operator"); Token (Name "string"); Token (Name "raw_string"); - Token (Name "ansii_c_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); Token (Name "expansion"); Token (Name "simple_expansion"); - Token (Name "string_expansion"); Token (Name "command_substitution"); Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; |]; Repeat1 ( Token (Name "special_character"); ); |]; - Opt ( - Token (Name "concat"); - ); - Token (Literal "]"); - Opt ( - Token (Name "concat"); - ); - ]; + Token (Name "unary_expression"); + Token (Name "ternary_expression"); + Token (Name "binary_expression"); + Token (Name "postfix_expression"); + Token (Name "parenthesized_expression"); + |]; ); - "subshell", + "extglob_blob", Some ( - Seq [ - Token (Literal "("); - Token (Name "statements"); - Token (Literal ")"); - ]; + Alt [| + Token (Name "extglob_pattern"); + Seq [ + Token (Name "extglob_pattern"); + Alt [| + Token (Name "string"); + Token (Name "expansion"); + Token (Name "command_substitution"); + |]; + Opt ( + Token (Name "extglob_pattern"); + ); + ]; + |]; ); - "terminated_statement", + "file_redirect", Some ( Seq [ + Opt ( + Token (Name "file_descriptor"); + ); Alt [| - Token (Name "redirected_statement"); - Token (Name "variable_assignment"); - Token (Name "command"); - Token (Name "declaration_command"); - Token (Name "unset_command"); - Token (Name "test_command"); - Token (Name "negated_command"); - Token (Name "for_statement"); - Token (Name "c_style_for_statement"); - Token (Name "while_statement"); - Token (Name "if_statement"); - Token (Name "case_statement"); - Token (Name "pipeline"); - Token (Name "list"); - Token (Name "subshell"); - Token (Name "compound_statement"); - Token (Name "function_definition"); - |]; - Alt [| - Token (Literal ";"); - Token (Literal ";;"); - Token (Literal "\n"); - Token (Literal "&"); + Seq [ + Alt [| + Token (Literal "<"); + Token (Literal ">"); + Token (Literal ">>"); + Token (Literal "&>"); + Token (Literal "&>>"); + Token (Literal "<&"); + Token (Literal ">&"); + Token (Literal ">|"); + |]; + Repeat1 ( + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + ); + ]; + Seq [ + Alt [| + Token (Literal "<&-"); + Token (Literal ">&-"); + |]; + Opt ( + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + ); + ]; |]; ]; ); - "ternary_expression", - Some ( - Seq [ - Token (Name "expression"); - Token (Literal "?"); - Token (Name "expression"); - Token (Literal ":"); - Token (Name "expression"); - ]; - ); - "test_command", + "for_body", Some ( Seq [ - Alt [| + Opt ( Seq [ - Token (Literal "["); - Token (Name "expression"); - Token (Literal "]"); + Token (Name "c_expression"); + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "c_expression"); + ]; + ); ]; + ); + Token (Name "c_terminator"); + Opt ( Seq [ - Token (Literal "[["); - Token (Name "expression"); - Token (Literal "]]"); + Token (Name "c_expression"); + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "c_expression"); + ]; + ); ]; + ); + Token (Name "c_terminator"); + Opt ( Seq [ - Token (Literal "(("); - Token (Name "expression"); - Token (Literal "))"); + Token (Name "c_expression"); + Repeat ( + Seq [ + Token (Literal ","); + Token (Name "c_expression"); + ]; + ); ]; - |]; + ); ]; ); - "unary_expression", + "for_statement", Some ( Seq [ Alt [| - Token (Literal "!"); - Token (Name "test_operator"); + Token (Literal "for"); + Token (Literal "select"); |]; - Token (Name "expression"); - ]; - ); - "unset_command", - Some ( - Seq [ Alt [| - Token (Literal "unset"); - Token (Literal "unsetenv"); + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); |]; - Repeat ( - Alt [| - Alt [| - Token (Name "concatenation"); + Opt ( + Seq [ + Token (Literal "in"); + Repeat1 ( Alt [| - Token (Name "semgrep_deep_expression"); + Token (Name "concatenation"); Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; |]; + Repeat1 ( + Token (Name "special_character"); + ); |]; - Repeat1 ( - Token (Name "special_character"); - ); - |]; - Alt [| - Token (Name "semgrep_metavariable"); - Token (Name "pat_42e353e"); - |]; + ); + ]; + ); + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + Token (Name "do_group"); + ]; + ); + "function_definition", + Some ( + Seq [ + Alt [| + Seq [ + Token (Literal "function"); + Token (Name "extended_word"); + Opt ( + Seq [ + Token (Literal "("); + Token (Literal ")"); + ]; + ); + ]; + Seq [ + Token (Name "word"); + Token (Literal "("); + Token (Literal ")"); + ]; + |]; + Alt [| + Token (Name "compound_statement"); + Token (Name "subshell"); + Token (Name "test_command"); + Token (Name "if_statement"); + |]; + Opt ( + Alt [| + Token (Name "file_redirect"); + Token (Name "herestring_redirect"); |]; ); ]; ); - "variable_assignment", + "heredoc_body", Some ( - Alt [| - Seq [ + Seq [ + Token (Name "heredoc_body_"); + Token (Name "heredoc_end"); + ]; + ); + "heredoc_body_", + Some ( + Seq [ + Token (Name "heredoc_body_beginning"); + Repeat ( Alt [| - Token (Name "semgrep_metavar_eq"); - Token (Name "semgrep_metavar_pluseq"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "heredoc_content"); |]; + ); + ]; + ); + "heredoc_command", + Some ( + Repeat1 ( + Alt [| + Token (Name "concatenation"); Alt [| + Token (Name "semgrep_deep_expression"); Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); - Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); - |]; - |]; - Repeat1 ( - Token (Name "special_character"); - ); + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); |]; - Token (Name "array"); - Token (Name "empty_value"); |]; - ]; - Seq [ + Repeat1 ( + Token (Name "special_character"); + ); + |]; + ); + ); + "heredoc_expression", + Some ( + Seq [ + Alt [| + Token (Literal "||"); + Token (Literal "&&"); + |]; + Alt [| Alt [| - Token (Name "variable_name"); - Token (Name "subscript"); + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); |]; + Token (Name "subshell"); + |]; + ]; + ); + "heredoc_pipeline", + Some ( + Seq [ + Alt [| + Token (Literal "|"); + Token (Literal "|&"); + |]; + Alt [| Alt [| - Token (Literal "="); - Token (Literal "+="); + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); |]; + Token (Name "subshell"); + |]; + ]; + ); + "heredoc_redirect", + Some ( + Seq [ + Opt ( + Token (Name "file_descriptor"); + ); + Alt [| + Token (Literal "<<"); + Token (Literal "<<-"); + |]; + Token (Name "heredoc_start"); + Opt ( Alt [| - Alt [| - Token (Name "concatenation"); - Alt [| - Token (Name "semgrep_deep_expression"); + Token (Name "heredoc_pipeline"); + Seq [ + Repeat1 ( Alt [| - Token (Name "word"); - Token (Name "string"); - Token (Name "raw_string"); - Token (Name "ansii_c_string"); - Token (Name "expansion"); - Token (Name "simple_expansion"); - Token (Name "string_expansion"); - Token (Name "command_substitution"); - Token (Name "process_substitution"); + Token (Name "file_redirect"); + Token (Name "herestring_redirect"); |]; - |]; - Repeat1 ( - Token (Name "special_character"); ); - |]; - Token (Name "array"); - Token (Name "empty_value"); + Opt ( + Token (Name "heredoc_expression"); + ); + ]; + Token (Name "heredoc_expression"); + Token (Name "heredoc_command"); |]; - ]; - |]; + ); + Token (Name "pat_1d78758"); + Alt [| + Token (Name "heredoc_body"); + Token (Name "simple_heredoc_body"); + |]; + ]; ); - "while_statement", + "herestring_redirect", Some ( Seq [ - Token (Literal "while"); - Token (Name "terminated_statement"); - Token (Name "do_group"); + Opt ( + Token (Name "file_descriptor"); + ); + Token (Literal "<<<"); + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; ]; ); - "program", + "if_statement", Some ( - Opt ( - Token (Name "statements"); - ); - ); -] - -let trans_regex ((kind, body) : mt) : CST.regex = - match body with - | Leaf v -> v - | Children _ -> assert false - -let trans_empty_value ((kind, body) : mt) : CST.empty_value = - match body with - | Leaf v -> v - | Children _ -> assert false - -let trans_string_content ((kind, body) : mt) : CST.string_content = - match body with - | Leaf v -> v - | Children _ -> assert false - -let trans_pat_42e353e ((kind, body) : mt) : CST.pat_42e353e = - match body with - | Leaf v -> v + Seq [ + Token (Literal "if"); + Repeat1 ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + Token (Literal "then"); + Opt ( + Repeat1 ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + ); + Repeat ( + Token (Name "elif_clause"); + ); + Opt ( + Token (Name "else_clause"); + ); + Token (Literal "fi"); + ]; + ); + "last_case_item", + Some ( + Seq [ + Opt ( + Token (Literal "("); + ); + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "extglob_blob"); + |]; + Repeat ( + Seq [ + Token (Literal "|"); + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "extglob_blob"); + |]; + ]; + ); + Token (Literal ")"); + Opt ( + Token (Name "statements"); + ); + Opt ( + Token (Literal ";;"); + ); + ]; + ); + "list", + Some ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal "&&"); + Token (Literal "||"); + |]; + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + ]; + ); + "negated_command", + Some ( + Seq [ + Token (Literal "!"); + Alt [| + Token (Name "command"); + Token (Name "variable_assignment"); + Token (Name "test_command"); + Token (Name "subshell"); + |]; + ]; + ); + "number", + Some ( + Alt [| + Token (Name "pat_421f39f"); + Seq [ + Token (Name "pat_b978cc7"); + Alt [| + Token (Name "expansion"); + Token (Name "command_substitution"); + |]; + ]; + |]; + ); + "parenthesized_expression", + Some ( + Seq [ + Token (Literal "("); + Token (Name "expression"); + Token (Literal ")"); + ]; + ); + "pipeline", + Some ( + Seq [ + Token (Name "statement_not_pipeline"); + Repeat1 ( + Seq [ + Alt [| + Token (Literal "|"); + Token (Literal "|&"); + |]; + Token (Name "statement_not_pipeline"); + ]; + ); + ]; + ); + "postfix_expression", + Some ( + Seq [ + Token (Name "expression"); + Alt [| + Token (Literal "++"); + Token (Literal "--"); + |]; + ]; + ); + "process_substitution", + Some ( + Seq [ + Alt [| + Token (Literal "<("); + Token (Literal ">("); + |]; + Token (Name "statements"); + Token (Literal ")"); + ]; + ); + "redirected_statement", + Some ( + Alt [| + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Repeat1 ( + Alt [| + Token (Name "file_redirect"); + Token (Name "heredoc_redirect"); + |]; + ); + |]; + ]; + Seq [ + Alt [| + Token (Name "if_statement"); + Token (Name "while_statement"); + |]; + Token (Name "herestring_redirect"); + ]; + Repeat1 ( + Alt [| + Token (Name "file_redirect"); + Token (Name "herestring_redirect"); + |]; + ); + Token (Name "herestring_redirect"); + |]; + ); + "semgrep_deep_expression", + Some ( + Seq [ + Token (Literal "<..."); + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Literal "...>"); + ]; + ); + "statement_not_pipeline", + Some ( + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + Token (Name "subshell"); + |]; + ); + "statements", + Some ( + Seq [ + Repeat ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Opt ( + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ); + ]; + ); + "string", + Some ( + Seq [ + Token (Literal "\""); + Repeat ( + Seq [ + Alt [| + Seq [ + Opt ( + Token (Literal "$"); + ); + Token (Name "string_content"); + ]; + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "arithmetic_expansion"); + |]; + Opt ( + Token (Name "concat"); + ); + ]; + ); + Opt ( + Token (Literal "$"); + ); + Token (Literal "\""); + ]; + ); + "subscript", + Some ( + Seq [ + Token (Name "variable_name"); + Token (Literal "["); + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "binary_expression"); + Token (Name "unary_expression"); + Token (Name "compound_statement"); + Token (Name "subshell"); + |]; + Opt ( + Token (Name "concat"); + ); + Token (Literal "]"); + Opt ( + Token (Name "concat"); + ); + ]; + ); + "subshell", + Some ( + Seq [ + Token (Literal "("); + Token (Name "statements"); + Token (Literal ")"); + ]; + ); + "ternary_expression", + Some ( + Seq [ + Token (Name "expression"); + Token (Literal "?"); + Token (Name "expression"); + Token (Literal ":"); + Token (Name "expression"); + ]; + ); + "test_command", + Some ( + Seq [ + Alt [| + Seq [ + Token (Literal "["); + Opt ( + Alt [| + Token (Name "expression"); + Token (Name "redirected_statement"); + |]; + ); + Token (Literal "]"); + ]; + Seq [ + Token (Literal "[["); + Alt [| + Token (Name "expression"); + Token (Name "test_command_binary_expression"); + |]; + Token (Literal "]]"); + ]; + |]; + ]; + ); + "test_command_binary_expression", + Some ( + Seq [ + Token (Name "expression"); + Token (Literal "="); + Token (Name "regex_no_space"); + ]; + ); + "translated_string", + Some ( + Seq [ + Token (Literal "$"); + Token (Name "string"); + ]; + ); + "unary_expression", + Some ( + Alt [| + Seq [ + Alt [| + Token (Name "tok_prec_p1_plusplus"); + Token (Name "tok_prec_p1_dashdash"); + |]; + Token (Name "expression"); + ]; + Seq [ + Alt [| + Token (Name "tok_prec_p1_dash"); + Token (Name "tok_prec_p1_plus"); + Token (Name "tok_prec_p1_tilde"); + |]; + Token (Name "expression"); + ]; + Seq [ + Token (Literal "!"); + Token (Name "expression"); + ]; + Seq [ + Token (Name "test_operator"); + Token (Name "expression"); + ]; + |]; + ); + "unset_command", + Some ( + Seq [ + Alt [| + Token (Literal "unset"); + Token (Literal "unsetenv"); + |]; + Repeat ( + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Alt [| + Token (Name "semgrep_metavariable"); + Token (Name "pat_42e353e"); + |]; + |]; + ); + ]; + ); + "variable_assignment", + Some ( + Alt [| + Seq [ + Alt [| + Token (Name "semgrep_metavar_eq"); + Token (Name "semgrep_metavar_pluseq"); + |]; + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "array"); + Token (Name "empty_value"); + |]; + ]; + Seq [ + Alt [| + Token (Name "variable_name"); + Token (Name "subscript"); + |]; + Alt [| + Token (Literal "="); + Token (Literal "+="); + |]; + Alt [| + Alt [| + Token (Name "concatenation"); + Alt [| + Token (Name "semgrep_deep_expression"); + Alt [| + Token (Name "word"); + Token (Name "test_operator"); + Token (Name "string"); + Token (Name "raw_string"); + Token (Name "translated_string"); + Token (Name "ansi_c_string"); + Token (Name "number"); + Token (Name "expansion"); + Token (Name "simple_expansion"); + Token (Name "command_substitution"); + Token (Name "process_substitution"); + Token (Name "arithmetic_expansion"); + Token (Name "brace_expression"); + |]; + |]; + Repeat1 ( + Token (Name "special_character"); + ); + |]; + Token (Name "array"); + Token (Name "empty_value"); + Token (Name "comment_word"); + |]; + ]; + |]; + ); + "variable_assignments", + Some ( + Seq [ + Token (Name "variable_assignment"); + Repeat1 ( + Token (Name "variable_assignment"); + ); + ]; + ); + "while_statement", + Some ( + Seq [ + Alt [| + Token (Literal "while"); + Token (Literal "until"); + |]; + Repeat1 ( + Seq [ + Alt [| + Alt [| + Token (Name "redirected_statement"); + Token (Name "variable_assignment"); + Token (Name "variable_assignments"); + Token (Name "command"); + Token (Name "declaration_command"); + Token (Name "unset_command"); + Token (Name "test_command"); + Token (Name "negated_command"); + Token (Name "for_statement"); + Token (Name "c_style_for_statement"); + Token (Name "while_statement"); + Token (Name "if_statement"); + Token (Name "case_statement"); + Token (Name "pipeline"); + Token (Name "list"); + Token (Name "compound_statement"); + Token (Name "function_definition"); + |]; + Token (Name "subshell"); + |]; + Alt [| + Token (Literal ";"); + Token (Literal ";;"); + Token (Name "pat_1d78758"); + Token (Literal "&"); + |]; + ]; + ); + Token (Name "do_group"); + ]; + ); + "program", + Some ( + Opt ( + Token (Name "statements"); + ); + ); +] + +let trans_external_expansion_sym_hash ((kind, body) : mt) : CST.external_expansion_sym_hash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_immediate_double_hash ((kind, body) : mt) : CST.immediate_double_hash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_string_content ((kind, body) : mt) : CST.string_content = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_a ((kind, body) : mt) : CST.imm_tok_a = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_u_ ((kind, body) : mt) : CST.imm_tok_u_ = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_brace_start ((kind, body) : mt) : CST.brace_start = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_coloneq ((kind, body) : mt) : CST.imm_tok_coloneq = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_expansion_word ((kind, body) : mt) : CST.expansion_word = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_p1_plus ((kind, body) : mt) : CST.tok_prec_p1_plus = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_3d340f6 ((kind, body) : mt) : CST.pat_3d340f6 = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_colonplus ((kind, body) : mt) : CST.imm_tok_colonplus = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_semgrep_metavar_pluseq ((kind, body) : mt) : CST.semgrep_metavar_pluseq = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_comment_word ((kind, body) : mt) : CST.comment_word = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_qmark ((kind, body) : mt) : CST.imm_tok_qmark = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_1d78758 ((kind, body) : mt) : CST.pat_1d78758 = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_heredoc_end ((kind, body) : mt) : CST.heredoc_end = + match body with + | Leaf v -> v + | Children _ -> assert false + + +let trans_semgrep_metavariable ((kind, body) : mt) : CST.semgrep_metavariable = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_external_expansion_sym_bang ((kind, body) : mt) : CST.external_expansion_sym_bang = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_heredoc_start ((kind, body) : mt) : CST.heredoc_start = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_heredoc_body_beginning ((kind, body) : mt) : CST.heredoc_body_beginning = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_eq ((kind, body) : mt) : CST.imm_tok_eq = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_special_character ((kind, body) : mt) : CST.special_character = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_421f39f ((kind, body) : mt) : CST.pat_421f39f = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_semgrep_metavar_eq ((kind, body) : mt) : CST.semgrep_metavar_eq = + match body with + | Leaf v -> v + | Children _ -> assert false + + +let trans_imm_tok_a_ ((kind, body) : mt) : CST.imm_tok_a_ = + match body with + | Leaf v -> v + | Children _ -> assert false + + +let trans_concat ((kind, body) : mt) : CST.concat = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_raw_string ((kind, body) : mt) : CST.raw_string = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_extglob_pattern ((kind, body) : mt) : CST.extglob_pattern = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_colonqmark ((kind, body) : mt) : CST.imm_tok_colonqmark = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_external_expansion_sym_equal ((kind, body) : mt) : CST.external_expansion_sym_equal = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_p1_plusplus ((kind, body) : mt) : CST.tok_prec_p1_plusplus = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_l ((kind, body) : mt) : CST.imm_tok_l = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_regex_no_space ((kind, body) : mt) : CST.regex_no_space = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_2b6adbc ((kind, body) : mt) : CST.pat_2b6adbc = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_b978cc7 ((kind, body) : mt) : CST.pat_b978cc7 = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_pat_a883a20 ((kind, body) : mt) : CST.pat_a883a20 = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_at ((kind, body) : mt) : CST.imm_tok_at = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_k ((kind, body) : mt) : CST.imm_tok_k = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_p1_dash ((kind, body) : mt) : CST.tok_prec_p1_dash = + match body with + | Leaf v -> v | Children _ -> assert false +let trans_pat_42e353e ((kind, body) : mt) : CST.pat_42e353e = + match body with + | Leaf v -> v + | Children _ -> assert false -let trans_heredoc_body_end ((kind, body) : mt) : CST.heredoc_body_end = +let trans_test_operator ((kind, body) : mt) : CST.test_operator = match body with | Leaf v -> v | Children _ -> assert false -let trans_concat ((kind, body) : mt) : CST.concat = +let trans_imm_tok_dotdot ((kind, body) : mt) : CST.imm_tok_dotdot = match body with | Leaf v -> v | Children _ -> assert false -let trans_simple_heredoc_body ((kind, body) : mt) : CST.simple_heredoc_body = +let trans_simple_heredoc_body_ ((kind, body) : mt) : CST.simple_heredoc_body_ = match body with | Leaf v -> v | Children _ -> assert false -let trans_semgrep_metavariable ((kind, body) : mt) : CST.semgrep_metavariable = +let trans_imm_tok_u ((kind, body) : mt) : CST.imm_tok_u = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_semgrep_named_ellipsis ((kind, body) : mt) : CST.semgrep_named_ellipsis = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_heredoc_content ((kind, body) : mt) : CST.heredoc_content = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_bang ((kind, body) : mt) : CST.imm_tok_bang = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_regex ((kind, body) : mt) : CST.regex = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_star ((kind, body) : mt) : CST.imm_tok_star = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_q ((kind, body) : mt) : CST.imm_tok_q = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_p1_tilde ((kind, body) : mt) : CST.tok_prec_p1_tilde = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_dash ((kind, body) : mt) : CST.imm_tok_dash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_hash ((kind, body) : mt) : CST.imm_tok_hash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_word ((kind, body) : mt) : CST.word = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_p ((kind, body) : mt) : CST.imm_tok_p = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_variable_name ((kind, body) : mt) : CST.variable_name = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_empty_value ((kind, body) : mt) : CST.empty_value = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_pat_217c202 ((kind, body) : mt) : CST.imm_tok_pat_217c202 = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_ansi_c_string ((kind, body) : mt) : CST.ansi_c_string = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_rcurl ((kind, body) : mt) : CST.imm_tok_rcurl = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_k_ ((kind, body) : mt) : CST.imm_tok_k_ = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_regex_no_slash ((kind, body) : mt) : CST.regex_no_slash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_comment ((kind, body) : mt) : CST.comment = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_p1_dashdash ((kind, body) : mt) : CST.tok_prec_p1_dashdash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_e ((kind, body) : mt) : CST.imm_tok_e = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_colondash ((kind, body) : mt) : CST.imm_tok_colondash = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_imm_tok_plus ((kind, body) : mt) : CST.imm_tok_plus = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_tok_prec_n1_rcurl ((kind, body) : mt) : CST.tok_prec_n1_rcurl = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_bare_dollar ((kind, body) : mt) : CST.bare_dollar = + match body with + | Leaf v -> v + | Children _ -> assert false + +let trans_file_descriptor ((kind, body) : mt) : CST.file_descriptor = match body with | Leaf v -> v | Children _ -> assert false -let trans_special_character ((kind, body) : mt) : CST.special_character = +let trans_c_terminator ((kind, body) : mt) : CST.c_terminator = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (2, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + + + + + +let trans_orig_simple_variable_name ((kind, body) : mt) : CST.orig_simple_variable_name = + match body with + | Children v -> + trans_pat_42e353e (Run.matcher_token v) + | Leaf _ -> assert false + +let trans_simple_heredoc_body ((kind, body) : mt) : CST.simple_heredoc_body = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_simple_heredoc_body_ (Run.matcher_token v0), + trans_heredoc_end (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_expansion_regex_removal ((kind, body) : mt) : CST.expansion_regex_removal = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `COMMA ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `COMMACOMMA ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `HAT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `HATHAT ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> trans_regex (Run.matcher_token v)) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_extended_word ((kind, body) : mt) : CST.extended_word = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_brace_expression ((kind, body) : mt) : CST.brace_expression = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2; v3; v4] -> + ( + trans_brace_start (Run.matcher_token v0), + trans_imm_tok_pat_217c202 (Run.matcher_token v1), + trans_imm_tok_dotdot (Run.matcher_token v2), + trans_imm_tok_pat_217c202 (Run.matcher_token v3), + trans_imm_tok_rcurl (Run.matcher_token v4) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_expansion_operator ((kind, body) : mt) : CST.expansion_operator = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_imm_tok_at (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Imm_tok_u ( + trans_imm_tok_u (Run.matcher_token v) + ) + | Alt (1, v) -> + `Imm_tok_u_ ( + trans_imm_tok_u_ (Run.matcher_token v) + ) + | Alt (2, v) -> + `Imm_tok_l ( + trans_imm_tok_l (Run.matcher_token v) + ) + | Alt (3, v) -> + `Imm_tok_q ( + trans_imm_tok_q (Run.matcher_token v) + ) + | Alt (4, v) -> + `Imm_tok_e ( + trans_imm_tok_e (Run.matcher_token v) + ) + | Alt (5, v) -> + `Imm_tok_p ( + trans_imm_tok_p (Run.matcher_token v) + ) + | Alt (6, v) -> + `Imm_tok_a ( + trans_imm_tok_a (Run.matcher_token v) + ) + | Alt (7, v) -> + `Imm_tok_k ( + trans_imm_tok_k (Run.matcher_token v) + ) + | Alt (8, v) -> + `Imm_tok_a_ ( + trans_imm_tok_a_ (Run.matcher_token v) + ) + | Alt (9, v) -> + `Imm_tok_k_ ( + trans_imm_tok_k_ (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let trans_simple_expansion ((kind, body) : mt) : CST.simple_expansion = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `DOLLAR_choice_orig_simple_var_name ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Orig_simple_var_name ( + trans_orig_simple_variable_name (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_STAR ( + (match v with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `AT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `QMARK ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `BANG ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `HASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (5, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `DOLLAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `X__ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `BANG ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `HASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Semg_named_ellips ( + trans_semgrep_named_ellipsis (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +let rec trans_arithmetic_binary_expression ((kind, body) : mt) : CST.arithmetic_binary_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Arit_exp_choice_PLUSEQ_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUSEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `STAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `SLASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `PERCEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (5, v) -> + `STARSTAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `LTLTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `GTGTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (8, v) -> + `AMPEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (9, v) -> + `HATEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (10, v) -> + `BAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Arit_exp_choice_EQ_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `EQTILDE ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Arit_exp_BARBAR_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `Arit_exp_AMPAMP_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (4, v) -> + `Arit_exp_BAR_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (5, v) -> + `Arit_exp_HAT_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (6, v) -> + `Arit_exp_AMP_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (7, v) -> + `Arit_exp_choice_EQEQ_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BANGEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (8, v) -> + `Arit_exp_choice_LT_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `LTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `GTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (9, v) -> + `Arit_exp_choice_LTLT_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LTLT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GTGT ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (10, v) -> + `Arit_exp_choice_PLUS_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (11, v) -> + `Arit_exp_choice_STAR_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (12, v) -> + `Arit_exp_STARSTAR_arit_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_heredoc_start ((kind, body) : mt) : CST.heredoc_start = +and trans_arithmetic_expansion ((kind, body) : mt) : CST.arithmetic_expansion = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `DOLLARLPARLPAR_arit_exp_rep_COMMA_arit_exp_RPARRPAR ( + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_arithmetic_expression (Run.matcher_token v1), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_arithmetic_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v2 + , + Run.trans_token (Run.matcher_token v3) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `DOLLARLBRACK_arit_exp_RBRACK ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_arithmetic_expression (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_heredoc_body_middle ((kind, body) : mt) : CST.heredoc_body_middle = +and trans_arithmetic_expression ((kind, body) : mt) : CST.arithmetic_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Arit_lit ( + trans_arithmetic_literal (Run.matcher_token v) + ) + | Alt (1, v) -> + `Arit_un_exp ( + trans_arithmetic_unary_expression (Run.matcher_token v) + ) + | Alt (2, v) -> + `Arit_tern_exp ( + trans_arithmetic_ternary_expression (Run.matcher_token v) + ) + | Alt (3, v) -> + `Arit_bin_exp ( + trans_arithmetic_binary_expression (Run.matcher_token v) + ) + | Alt (4, v) -> + `Arit_post_exp ( + trans_arithmetic_postfix_expression (Run.matcher_token v) + ) + | Alt (5, v) -> + `Arit_paren_exp ( + trans_arithmetic_parenthesized_expression (Run.matcher_token v) + ) + | Alt (6, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_semgrep_metavar_eq ((kind, body) : mt) : CST.semgrep_metavar_eq = +and trans_arithmetic_literal ((kind, body) : mt) : CST.arithmetic_literal = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (1, v) -> + `Subs ( + trans_subscript (Run.matcher_token v) + ) + | Alt (2, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (3, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (4, v) -> + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (5, v) -> + `Var_name ( + trans_variable_name (Run.matcher_token v) + ) + | Alt (6, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (7, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_test_operator ((kind, body) : mt) : CST.test_operator = +and trans_arithmetic_parenthesized_expression ((kind, body) : mt) : CST.arithmetic_parenthesized_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_arithmetic_expression (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_raw_string ((kind, body) : mt) : CST.raw_string = +and trans_arithmetic_postfix_expression ((kind, body) : mt) : CST.arithmetic_postfix_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUSPLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHDASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_file_descriptor ((kind, body) : mt) : CST.file_descriptor = +and trans_arithmetic_ternary_expression ((kind, body) : mt) : CST.arithmetic_ternary_expression = match body with - | Leaf v -> v - | Children _ -> assert false - + | Children v -> + (match v with + | Seq [v0; v1; v2; v3; v4] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_arithmetic_expression (Run.matcher_token v2), + Run.trans_token (Run.matcher_token v3), + trans_arithmetic_expression (Run.matcher_token v4) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_variable_name ((kind, body) : mt) : CST.variable_name = +and trans_arithmetic_unary_expression ((kind, body) : mt) : CST.arithmetic_unary_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Choice_tok_prec_p1_plusps_arit_exp ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Tok_prec_p1_plusps ( + trans_tok_prec_p1_plusplus (Run.matcher_token v) + ) + | Alt (1, v) -> + `Tok_prec_p1_dash ( + trans_tok_prec_p1_dashdash (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Choice_tok_prec_p1_dash_arit_exp ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Tok_prec_p1_dash ( + trans_tok_prec_p1_dash (Run.matcher_token v) + ) + | Alt (1, v) -> + `Tok_prec_p1_plus ( + trans_tok_prec_p1_plus (Run.matcher_token v) + ) + | Alt (2, v) -> + `Tok_prec_p1_tilde ( + trans_tok_prec_p1_tilde (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_arithmetic_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `BANG_arit_exp ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_arithmetic_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_semgrep_named_ellipsis ((kind, body) : mt) : CST.semgrep_named_ellipsis = +and trans_array_ ((kind, body) : mt) : CST.array_ = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_tok_prec_p1_slash ((kind, body) : mt) : CST.tok_prec_p1_slash = +and trans_binary_expression ((kind, body) : mt) : CST.binary_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Choice_exp_choice_PLUSEQ_exp ( + (match v with + | Alt (0, v) -> + `Exp_choice_PLUSEQ_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUSEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `STAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `SLASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `PERCEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (5, v) -> + `STARSTAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `LTLTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `GTGTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (8, v) -> + `AMPEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (9, v) -> + `HATEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (10, v) -> + `BAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Exp_choice_EQ_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `EQTILDE ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Exp_BARBAR_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `Exp_AMPAMP_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (4, v) -> + `Exp_BAR_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (5, v) -> + `Exp_HAT_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (6, v) -> + `Exp_AMP_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (7, v) -> + `Exp_choice_EQEQ_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BANGEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (8, v) -> + `Exp_choice_LT_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `LTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `GTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (9, v) -> + `Exp_test_op_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + trans_test_operator (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (10, v) -> + `Exp_choice_LTLT_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LTLT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GTGT ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (11, v) -> + `Exp_choice_PLUS_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (12, v) -> + `Exp_choice_STAR_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (13, v) -> + `Exp_STARSTAR_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Exp_EQTILDE_regex_no_sp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_regex_no_space (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Exp_choice_EQEQ_extg_blob ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expression (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BANGEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_extglob_blob (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_ansii_c_string ((kind, body) : mt) : CST.ansii_c_string = +and trans_c_binary_expression ((kind, body) : mt) : CST.c_binary_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `C_exp_not_assign_choice_PLUSEQ_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUSEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `STAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `SLASHEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `PERCEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (5, v) -> + `STARSTAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `LTLTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `GTGTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (8, v) -> + `AMPEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (9, v) -> + `HATEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (10, v) -> + `BAREQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `C_exp_not_assign_choice_BARBAR_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `BARBAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHo ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `C_exp_not_assign_choice_AMPAMP_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `AMPAMP ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHa ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `C_exp_not_assign_BAR_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (4, v) -> + `C_exp_not_assign_HAT_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (5, v) -> + `C_exp_not_assign_AMP_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (6, v) -> + `C_exp_not_assign_choice_EQEQ_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BANGEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (7, v) -> + `C_exp_not_assign_choice_LT_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `LTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `GTEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (8, v) -> + `C_exp_not_assign_choice_LTLT_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `LTLT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GTGT ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (9, v) -> + `C_exp_not_assign_choice_PLUS_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (10, v) -> + `C_exp_not_assign_choice_STAR_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (11, v) -> + `C_exp_not_assign_STARSTAR_c_exp_not_assign ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_c_expression_not_assignment (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_heredoc_body_beginning ((kind, body) : mt) : CST.heredoc_body_beginning = +and trans_c_expression ((kind, body) : mt) : CST.c_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `C_exp_not_assign ( + trans_c_expression_not_assignment (Run.matcher_token v) + ) + | Alt (1, v) -> + `C_var_assign ( + trans_c_variable_assignment (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_word ((kind, body) : mt) : CST.word = +and trans_c_expression_not_assignment ((kind, body) : mt) : CST.c_expression_not_assignment = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Alt (0, v) -> + `Pat_2b6adbc ( + trans_pat_2b6adbc (Run.matcher_token v) + ) + | Alt (1, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (2, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (3, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (4, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (5, v) -> + `C_un_exp ( + trans_c_unary_expression (Run.matcher_token v) + ) + | Alt (6, v) -> + `C_bin_exp ( + trans_c_binary_expression (Run.matcher_token v) + ) + | Alt (7, v) -> + `C_post_exp ( + trans_c_postfix_expression (Run.matcher_token v) + ) + | Alt (8, v) -> + `C_paren_exp ( + trans_c_parenthesized_expression (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_comment ((kind, body) : mt) : CST.comment = +and trans_c_parenthesized_expression ((kind, body) : mt) : CST.c_parenthesized_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_c_expression (Run.matcher_token v1), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_c_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v2 + , + Run.trans_token (Run.matcher_token v3) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_semgrep_metavar_pluseq ((kind, body) : mt) : CST.semgrep_metavar_pluseq = +and trans_c_postfix_expression ((kind, body) : mt) : CST.c_postfix_expression = match body with - | Leaf v -> v - | Children _ -> assert false + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_c_expression_not_assignment (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `PLUSPLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASHDASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false -let trans_orig_simple_variable_name ((kind, body) : mt) : CST.orig_simple_variable_name = +and trans_c_style_for_statement ((kind, body) : mt) : CST.c_style_for_statement = match body with | Children v -> - trans_pat_42e353e (Run.matcher_token v) + (match v with + | Seq [v0; v1; v2; v3; v4; v5] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + (match v2 with + | Alt (0, v) -> + `For_body ( + trans_for_body (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v3), + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v4 + , + (match v5 with + | Alt (0, v) -> + `Do_group ( + trans_do_group (Run.matcher_token v) + ) + | Alt (1, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) | Leaf _ -> assert false - -let trans_heredoc_redirect ((kind, body) : mt) : CST.heredoc_redirect = +and trans_c_unary_expression ((kind, body) : mt) : CST.c_unary_expression = match body with | Children v -> (match v with @@ -1749,290 +4899,838 @@ let trans_heredoc_redirect ((kind, body) : mt) : CST.heredoc_redirect = ( (match v0 with | Alt (0, v) -> - `LTLT ( + `PLUSPLUS ( Run.trans_token (Run.matcher_token v) ) | Alt (1, v) -> - `LTLTDASH ( + `DASHDASH ( Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) , - trans_heredoc_start (Run.matcher_token v1) + trans_c_expression_not_assignment (Run.matcher_token v1) ) | _ -> assert false ) | Leaf _ -> assert false -let trans_extended_word ((kind, body) : mt) : CST.extended_word = +and trans_c_variable_assignment ((kind, body) : mt) : CST.c_variable_assignment = match body with | Children v -> (match v with - | Alt (0, v) -> - `Semg_meta ( - trans_semgrep_metavariable (Run.matcher_token v) - ) - | Alt (1, v) -> - `Word ( - trans_word (Run.matcher_token v) + | Seq [v0; v1; v2] -> + ( + trans_pat_2b6adbc (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_c_expression (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false -let trans_simple_expansion ((kind, body) : mt) : CST.simple_expansion = +and trans_case_item ((kind, body) : mt) : CST.case_item = match body with | Children v -> (match v with - | Alt (0, v) -> - `DOLLAR_choice_orig_simple_var_name ( - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with + | Seq [v0; v1; v2] -> + ( + (match v0 with + | Alt (0, v) -> + `Opt_LPAR_choice_choice_conc_rep_BAR_choice_choice_conc_RPAR ( + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v0 + , + (match v1 with + | Alt (0, v) -> + `Choice_conc ( + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Extg_blob ( + trans_extglob_blob (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Choice_conc ( + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Extg_blob ( + trans_extglob_blob (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v2 + , + Run.trans_token (Run.matcher_token v3) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> trans_statements (Run.matcher_token v)) + v1 + , + (match v2 with + | Alt (0, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_SEMIAMP ( + (match v with + | Alt (0, v) -> + `SEMIAMP ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMIAMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_case_statement ((kind, body) : mt) : CST.case_statement = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2; v3; v4; v5; v6] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with | Alt (0, v) -> - `Orig_simple_var_name ( - trans_orig_simple_variable_name (Run.matcher_token v) + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_STAR ( + `Choice_word ( (match v with | Alt (0, v) -> - `STAR ( - Run.trans_token (Run.matcher_token v) + `Word ( + trans_word (Run.matcher_token v) ) | Alt (1, v) -> - `AT ( - Run.trans_token (Run.matcher_token v) + `Test_op ( + trans_test_operator (Run.matcher_token v) ) | Alt (2, v) -> - `QMARK ( - Run.trans_token (Run.matcher_token v) + `Str ( + trans_string_ (Run.matcher_token v) ) | Alt (3, v) -> - `DASH ( - Run.trans_token (Run.matcher_token v) + `Raw_str ( + trans_raw_string (Run.matcher_token v) ) | Alt (4, v) -> - `DOLLAR ( - Run.trans_token (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `X_0 ( - Run.trans_token (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `X__ ( - Run.trans_token (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) ) | _ -> assert false ) ) - | Alt (2, v) -> - `BANG ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `HASH ( - Run.trans_token (Run.matcher_token v) - ) | _ -> assert false ) ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) | _ -> assert false ) - ) - | Alt (1, v) -> - `Semg_named_ellips ( - trans_semgrep_named_ellipsis (Run.matcher_token v) + , + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v2 + , + Run.trans_token (Run.matcher_token v3), + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v4 + , + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.repeat + (fun v -> trans_case_item (Run.matcher_token v)) + v0 + , + trans_last_case_item (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v5 + , + Run.trans_token (Run.matcher_token v6) ) | _ -> assert false ) | Leaf _ -> assert false -let rec trans_array_ ((kind, body) : mt) : CST.array_ = +and trans_command ((kind, body) : mt) : CST.command = match body with | Children v -> (match v with | Seq [v0; v1; v2] -> ( - Run.trans_token (Run.matcher_token v0), Run.repeat (fun v -> (match v with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_semg_deep_exp ( + `Choice_file_redi ( (match v with | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) + `File_redi ( + trans_file_redirect (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_word ( + `Here_redi ( + trans_herestring_redirect (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v0 + , + trans_command_name (Run.matcher_token v1), + (match v2 with + | Alt (0, v) -> + `Rep_choice_choice_conc ( + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Choice_conc ( (match v with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `Conc ( + trans_concatenation (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) ) | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Bare_dollar ( + trans_bare_dollar (Run.matcher_token v) + ) + | Alt (2, v) -> + `Choice_EQTILDE_choice_choice_conc ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `EQTILDE ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `EQEQ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `Choice_conc ( + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Regex ( + trans_regex (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) ) + | Alt (3, v) -> + `Here_redi ( + trans_herestring_redirect (Run.matcher_token v) + ) | _ -> assert false ) ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v - ) - | _ -> assert false + v ) - ) - v1 - , - Run.trans_token (Run.matcher_token v2) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_binary_expression ((kind, body) : mt) : CST.binary_expression = +and trans_command_name ((kind, body) : mt) : CST.command_name = match body with | Children v -> (match v with | Alt (0, v) -> - `Exp_choice_EQ_exp ( + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( (match v with - | Seq [v0; v1; v2] -> - ( - trans_expression (Run.matcher_token v0), - (match v1 with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with | Alt (0, v) -> - `EQ ( - Run.trans_token (Run.matcher_token v) + `Word ( + trans_word (Run.matcher_token v) ) | Alt (1, v) -> - `EQEQ ( - Run.trans_token (Run.matcher_token v) + `Test_op ( + trans_test_operator (Run.matcher_token v) ) | Alt (2, v) -> - `EQTILDE ( - Run.trans_token (Run.matcher_token v) + `Str ( + trans_string_ (Run.matcher_token v) ) | Alt (3, v) -> - `BANGEQ ( - Run.trans_token (Run.matcher_token v) + `Raw_str ( + trans_raw_string (Run.matcher_token v) ) | Alt (4, v) -> - `PLUS ( - Run.trans_token (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `DASH ( - Run.trans_token (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `PLUSEQ ( - Run.trans_token (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> - `DASHEQ ( - Run.trans_token (Run.matcher_token v) + `Expa ( + trans_expansion (Run.matcher_token v) ) | Alt (8, v) -> - `LT ( - Run.trans_token (Run.matcher_token v) + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) ) | Alt (9, v) -> - `GT ( - Run.trans_token (Run.matcher_token v) + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) ) | Alt (10, v) -> - `LTEQ ( - Run.trans_token (Run.matcher_token v) + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) ) | Alt (11, v) -> - `GTEQ ( - Run.trans_token (Run.matcher_token v) + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) ) | Alt (12, v) -> - `BARBAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (13, v) -> - `AMPAMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (14, v) -> - `Test_op ( - trans_test_operator (Run.matcher_token v) + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) ) | _ -> assert false ) - , - trans_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_command_substitution ((kind, body) : mt) : CST.command_substitution = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `DOLLARLPAR_stmts_RPAR ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_statements (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) ) | Alt (1, v) -> - `Exp_choice_EQEQ_regex ( + `DOLLARLPAR_file_redi_RPAR ( (match v with | Seq [v0; v1; v2] -> ( - trans_expression (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `EQEQ ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `EQTILDE ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - , - trans_regex (Run.matcher_token v2) + Run.trans_token (Run.matcher_token v0), + trans_file_redirect (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `BQUOT_stmts_BQUOT ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_statements (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `DOLLARBQUOT_stmts_BQUOT ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_statements (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) @@ -2041,79 +5739,158 @@ and trans_binary_expression ((kind, body) : mt) : CST.binary_expression = ) | Leaf _ -> assert false -and trans_c_style_for_statement ((kind, body) : mt) : CST.c_style_for_statement = +and trans_compound_statement ((kind, body) : mt) : CST.compound_statement = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4; v5; v6; v7; v8; v9] -> - ( - Run.trans_token (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - Run.opt - (fun v -> trans_expression (Run.matcher_token v)) - v2 - , - (match v3 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.opt - (fun v -> trans_expression (Run.matcher_token v)) - v4 - , - (match v5 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) + | Alt (0, v) -> + `LCURL_opt_rep1_choice_choice_redi_stmt_choice_SEMI_tok_prec_n1_rcurl ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v + ) + v1 + , + trans_tok_prec_n1_rcurl (Run.matcher_token v2) ) | _ -> assert false ) - , - Run.opt - (fun v -> trans_expression (Run.matcher_token v)) - v6 - , - Run.trans_token (Run.matcher_token v7), - Run.opt - (fun v -> Run.trans_token (Run.matcher_token v)) - v8 - , - (match v9 with - | Alt (0, v) -> - `Do_group ( - trans_do_group (Run.matcher_token v) - ) - | Alt (1, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `LPARLPAR_rep_arit_exp_COMMA_arit_exp_RPARRPAR ( + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + trans_arithmetic_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v1 + , + trans_arithmetic_expression (Run.matcher_token v2), + Run.trans_token (Run.matcher_token v3) ) | _ -> assert false ) @@ -2122,18 +5899,14 @@ and trans_c_style_for_statement ((kind, body) : mt) : CST.c_style_for_statement ) | Leaf _ -> assert false -and trans_case_item ((kind, body) : mt) : CST.case_item = +and trans_concatenation ((kind, body) : mt) : CST.concatenation = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4] -> + | Seq [v0; v1; v2] -> ( (match v0 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> @@ -2148,64 +5921,85 @@ and trans_case_item ((kind, body) : mt) : CST.case_item = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) | _ -> assert false ) ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + | Alt (1, v) -> + `Spec_char ( + trans_special_character (Run.matcher_token v) ) | _ -> assert false ) , - Run.repeat + Run.repeat1 (fun v -> (match v with | Seq [v0; v1] -> ( - Run.trans_token (Run.matcher_token v0), - (match v1 with + (match v0 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) + `Concat ( + trans_concat (Run.matcher_token v) ) | Alt (1, v) -> + `Pat_a883a20 ( + trans_pat_a883a20 (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> @@ -2220,48 +6014,70 @@ and trans_case_item ((kind, body) : mt) : CST.case_item = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) | _ -> assert false ) ) + | Alt (1, v) -> + `Spec_char ( + trans_special_character (Run.matcher_token v) + ) | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + `Comm_word ( + trans_comment_word (Run.matcher_token v) + ) + | Alt (3, v) -> + `Bare_dollar ( + trans_bare_dollar (Run.matcher_token v) ) | _ -> assert false ) @@ -2271,200 +6087,181 @@ and trans_case_item ((kind, body) : mt) : CST.case_item = ) v1 , - Run.trans_token (Run.matcher_token v2), Run.opt - (fun v -> trans_statements (Run.matcher_token v)) - v3 - , - (match v4 with - | Alt (0, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_SEMIAMP ( - (match v with - | Alt (0, v) -> - `SEMIAMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMIAMP ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + trans_concat (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1) + ) + | _ -> assert false ) - | _ -> assert false - ) + ) + v2 ) | _ -> assert false ) | Leaf _ -> assert false -and trans_case_statement ((kind, body) : mt) : CST.case_statement = +and trans_concatenation_in_expansion ((kind, body) : mt) : CST.concatenation_in_expansion = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4; v5; v6] -> + | Seq [v0; v1] -> ( - Run.trans_token (Run.matcher_token v0), - (match v1 with + (match v0 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) + `Word ( + trans_word (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) + `Var_name ( + trans_variable_name (Run.matcher_token v) ) | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) ) - | _ -> assert false - ) - , - Run.opt - (fun v -> - (match v with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false + | Alt (3, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) ) - ) - v2 - , - Run.trans_token (Run.matcher_token v3), - (match v4 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) + | Alt (4, v) -> + `Str ( + trans_string_ (Run.matcher_token v) ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) + | Alt (5, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + | Alt (6, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (7, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (8, v) -> + `Expa_word ( + trans_expansion_word (Run.matcher_token v) + ) + | Alt (9, v) -> + `Array ( + trans_array_ (Run.matcher_token v) ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) ) | _ -> assert false ) , - Run.opt + Run.repeat1 (fun v -> (match v with | Seq [v0; v1] -> ( - Run.repeat - (fun v -> trans_case_item (Run.matcher_token v)) - v0 + (match v0 with + | Alt (0, v) -> + `Concat ( + trans_concat (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_a883a20 ( + trans_pat_a883a20 (Run.matcher_token v) + ) + | _ -> assert false + ) , - trans_last_case_item (Run.matcher_token v1) + (match v1 with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_name ( + trans_variable_name (Run.matcher_token v) + ) + | Alt (2, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (3, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (4, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (5, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (7, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (8, v) -> + `Expa_word ( + trans_expansion_word (Run.matcher_token v) + ) + | Alt (9, v) -> + `Array ( + trans_array_ (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) ) - v5 - , - Run.trans_token (Run.matcher_token v6) + v1 ) | _ -> assert false ) | Leaf _ -> assert false -and trans_command ((kind, body) : mt) : CST.command = +and trans_declaration_command ((kind, body) : mt) : CST.declaration_command = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( - Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (1, v) -> - `File_redi ( - trans_file_redirect (Run.matcher_token v) - ) - | _ -> assert false + (match v0 with + | Alt (0, v) -> + `Decl ( + Run.trans_token (Run.matcher_token v) ) - ) - v0 + | Alt (1, v) -> + `Type ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Export ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `Read ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `Local ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) , - trans_command_name (Run.matcher_token v1), Run.repeat (fun v -> (match v with @@ -2490,37 +6287,53 @@ and trans_command ((kind, body) : mt) : CST.command = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -2537,229 +6350,406 @@ and trans_command ((kind, body) : mt) : CST.command = ) ) | Alt (1, v) -> - `Choice_EQTILDE_choice_choice_conc ( + `Choice_semg_meta ( (match v with - | Seq [v0; v1] -> - ( - (match v0 with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_do_group ((kind, body) : mt) : CST.do_group = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_elif_clause ((kind, body) : mt) : CST.elif_clause = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2; v3] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with | Alt (0, v) -> - `EQTILDE ( - Run.trans_token (Run.matcher_token v) + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) ) - | Alt (1, v) -> - `EQEQ ( - Run.trans_token (Run.matcher_token v) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) ) - | _ -> assert false - ) - , - (match v1 with - | Alt (0, v) -> - `Choice_conc ( - (match v with - | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v - ) - | _ -> assert false - ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) ) - | Alt (1, v) -> - `Regex ( - trans_regex (Run.matcher_token v) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) ) | _ -> assert false ) ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) | _ -> assert false ) ) | _ -> assert false ) ) - v2 - ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_command_name ((kind, body) : mt) : CST.command_name = - match body with - | Children v -> - (match v with - | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false + v1 + , + Run.trans_token (Run.matcher_token v2), + Run.opt + (fun v -> + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) ) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v - ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_command_substitution ((kind, body) : mt) : CST.command_substitution = - match body with - | Children v -> - (match v with - | Alt (0, v) -> - `DOLLARLPAR_stmts_RPAR ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_statements (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `DOLLARLPAR_file_redi_RPAR ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_file_redirect (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `BQUOT_stmts_BQUOT ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_statements (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) - ) - | _ -> assert false - ) + v + ) + v3 ) | _ -> assert false ) | Leaf _ -> assert false -and trans_compound_statement ((kind, body) : mt) : CST.compound_statement = +and trans_else_clause ((kind, body) : mt) : CST.else_clause = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( Run.trans_token (Run.matcher_token v0), Run.opt @@ -2767,94 +6757,91 @@ and trans_compound_statement ((kind, body) : mt) : CST.compound_statement = Run.repeat1 (fun v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( (match v0 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with + (match v1 with | Alt (0, v) -> `SEMI ( Run.trans_token (Run.matcher_token v) @@ -2864,8 +6851,8 @@ and trans_compound_statement ((kind, body) : mt) : CST.compound_statement = Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | Alt (3, v) -> `AMP ( @@ -2880,168 +6867,322 @@ and trans_compound_statement ((kind, body) : mt) : CST.compound_statement = v ) v1 - , - Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_concatenation ((kind, body) : mt) : CST.concatenation = +and trans_expansion ((kind, body) : mt) : CST.expansion = match body with | Children v -> (match v with | Seq [v0; v1; v2] -> ( - (match v0 with - | Alt (0, v) -> - `Choice_semg_deep_exp ( - (match v with + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> trans_expansion_body (Run.matcher_token v)) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_expansion_body ((kind, body) : mt) : CST.expansion_body = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Rep1_choice_exte_expa_sym_hash ( + Run.repeat1 + (fun v -> + (match v with + | Alt (0, v) -> + `Exte_expa_sym_hash ( + trans_external_expansion_sym_hash (Run.matcher_token v) + ) + | Alt (1, v) -> + `Exte_expa_sym_bang ( + trans_external_expansion_sym_bang (Run.matcher_token v) + ) + | Alt (2, v) -> + `Exte_expa_sym_equal ( + trans_external_expansion_sym_equal (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v + ) + | Alt (1, v) -> + `Opt_imm_tok_bang_choice_var_name_choice_expa_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.opt + (fun v -> trans_imm_tok_bang (Run.matcher_token v)) + v0 + , + (match v1 with | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) + `Var_name ( + trans_variable_name (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_word ( + `Choice_semg_meta ( (match v with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Choice_STAR ( + (match v with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `AT ( + Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) + `QMARK ( + Run.trans_token (Run.matcher_token v) ) | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) + `BANG ( + Run.trans_token (Run.matcher_token v) ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `HASH ( + Run.trans_token (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `DASH ( + Run.trans_token (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `DOLLAR ( + Run.trans_token (Run.matcher_token v) ) | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + `X__ ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) ) + | Alt (3, v) -> + `Subs ( + trans_subscript (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v2 with + | Alt (0, v) -> + `Expa_exp ( + trans_expansion_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Expa_regex ( + trans_expansion_regex (Run.matcher_token v) + ) + | Alt (2, v) -> + `Expa_regex_repl ( + trans_expansion_regex_replacement (Run.matcher_token v) + ) + | Alt (3, v) -> + `Expa_regex_remo ( + trans_expansion_regex_removal (Run.matcher_token v) + ) + | Alt (4, v) -> + `Expa_max_len ( + trans_expansion_max_length (Run.matcher_token v) + ) + | Alt (5, v) -> + `Expa_op ( + trans_expansion_operator (Run.matcher_token v) + ) | _ -> assert false ) ) - | Alt (1, v) -> - `Spec_char ( - trans_special_character (Run.matcher_token v) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Imm_tok_bang_choice_choice_semg_meta_opt_choice_imm_tok_at ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_imm_tok_bang (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Var_name ( + trans_variable_name (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `Imm_tok_at ( + trans_imm_tok_at (Run.matcher_token v) + ) + | Alt (1, v) -> + `Imm_tok_star ( + trans_imm_tok_star (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v2 ) | _ -> assert false ) - , - Run.repeat1 - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - trans_concat (Run.matcher_token v0), - (match v1 with + ) + | Alt (3, v) -> + `Opt_choice_imm_tok_hash_choice_subs_rep_choice_exte_expa_sym_hash ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.opt + (fun v -> + (match v with | Alt (0, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false + `Imm_tok_hash ( + trans_imm_tok_hash (Run.matcher_token v) + ) + | Alt (1, v) -> + `Imm_tok_bang ( + trans_imm_tok_bang (Run.matcher_token v) + ) + | Alt (2, v) -> + `Imm_tok_eq ( + trans_imm_tok_eq (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v0 + , + (match v1 with + | Alt (0, v) -> + `Subs ( + trans_subscript (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Choice_STAR ( + (match v with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `AT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `QMARK ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `BANG ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (4, v) -> + `HASH ( + Run.trans_token (Run.matcher_token v) ) + | Alt (5, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (6, v) -> + `DOLLAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (7, v) -> + `X__ ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Exte_expa_sym_hash ( + trans_external_expansion_sym_hash (Run.matcher_token v) ) | Alt (1, v) -> - `Spec_char ( - trans_special_character (Run.matcher_token v) + `Exte_expa_sym_bang ( + trans_external_expansion_sym_bang (Run.matcher_token v) + ) + | Alt (2, v) -> + `Exte_expa_sym_equal ( + trans_external_expansion_sym_equal (Run.matcher_token v) ) | _ -> assert false ) ) - | _ -> assert false - ) - ) - v1 - , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - trans_concat (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1) - ) - | _ -> assert false + v2 ) - ) - v2 + | _ -> assert false + ) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_declaration_command ((kind, body) : mt) : CST.declaration_command = +and trans_expansion_expression ((kind, body) : mt) : CST.expansion_expression = match body with | Children v -> (match v with @@ -3049,561 +7190,446 @@ and trans_declaration_command ((kind, body) : mt) : CST.declaration_command = ( (match v0 with | Alt (0, v) -> - `Decl ( - Run.trans_token (Run.matcher_token v) + `Imm_tok_eq ( + trans_imm_tok_eq (Run.matcher_token v) ) | Alt (1, v) -> - `Type ( - Run.trans_token (Run.matcher_token v) + `Imm_tok_colo_9c804d8 ( + trans_imm_tok_coloneq (Run.matcher_token v) ) | Alt (2, v) -> - `Export ( - Run.trans_token (Run.matcher_token v) + `Imm_tok_dash ( + trans_imm_tok_dash (Run.matcher_token v) ) | Alt (3, v) -> - `Read ( - Run.trans_token (Run.matcher_token v) + `Imm_tok_colo_a6ba89c ( + trans_imm_tok_colondash (Run.matcher_token v) ) | Alt (4, v) -> - `Local ( - Run.trans_token (Run.matcher_token v) + `Imm_tok_plus ( + trans_imm_tok_plus (Run.matcher_token v) + ) + | Alt (5, v) -> + `Imm_tok_colons ( + trans_imm_tok_colonplus (Run.matcher_token v) + ) + | Alt (6, v) -> + `Imm_tok_qmark ( + trans_imm_tok_qmark (Run.matcher_token v) + ) + | Alt (7, v) -> + `Imm_tok_colo_109b622 ( + trans_imm_tok_colonqmark (Run.matcher_token v) ) | _ -> assert false ) , - Run.repeat + Run.opt (fun v -> (match v with - | Alt (0, v) -> - `Choice_conc ( - (match v with + | Seq [v0] -> + ( + (match v0 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) + `Conc_in_expa ( + trans_concatenation_in_expansion (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) ) | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `Choice_semg_meta ( - (match v with - | Alt (0, v) -> - `Semg_meta ( - trans_semgrep_metavariable (Run.matcher_token v) + `Word ( + trans_word (Run.matcher_token v) ) - | Alt (1, v) -> - `Pat_42e353e ( - trans_pat_42e353e (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - v1 - ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_do_group ((kind, body) : mt) : CST.do_group = - match body with - | Children v -> - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - Run.opt - (fun v -> - Run.repeat1 - (fun v -> - (match v with - | Seq [v0; v1; v2] -> - ( - (match v0 with - | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false + | Alt (3, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) ) - , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false + | Alt (4, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) ) - ) - | _ -> assert false + | Alt (5, v) -> + `Array ( + trans_array_ (Run.matcher_token v) + ) + | Alt (6, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (7, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (8, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (9, v) -> + `Expa_word ( + trans_expansion_word (Run.matcher_token v) + ) + | _ -> assert false + ) ) - ) - v + | _ -> assert false + ) ) v1 - , - Run.trans_token (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_elif_clause ((kind, body) : mt) : CST.elif_clause = +and trans_expansion_max_length ((kind, body) : mt) : CST.expansion_max_length = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3] -> + | Seq [v0; v1; v2] -> ( Run.trans_token (Run.matcher_token v0), - trans_terminated_statement (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2), Run.opt (fun v -> - Run.repeat1 - (fun v -> - (match v with - | Seq [v0; v1; v2] -> - ( - (match v0 with + (match v with + | Alt (0, v) -> + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (2, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (3, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (4, v) -> + `Paren_exp ( + trans_parenthesized_expression (Run.matcher_token v) + ) + | Alt (5, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (6, v) -> + `Expa_max_len_bin_exp ( + trans_expansion_max_length_binary_expression (Run.matcher_token v) + ) + | Alt (7, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + , + Run.opt + (fun v -> + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> trans_simple_expansion (Run.matcher_token v)) + v1 + , + Run.opt + (fun v -> + (match v with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) ) | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) + `Expa ( + trans_expansion (Run.matcher_token v) ) | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) + `Paren_exp ( + trans_parenthesized_expression (Run.matcher_token v) ) | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) ) | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) + `Expa_max_len_bin_exp ( + trans_expansion_max_length_binary_expression (Run.matcher_token v) ) | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | _ -> assert false ) ) - | _ -> assert false + v2 ) - ) - v + | _ -> assert false + ) ) - v3 + v2 ) | _ -> assert false ) | Leaf _ -> assert false -and trans_else_clause ((kind, body) : mt) : CST.else_clause = +and trans_expansion_max_length_binary_expression ((kind, body) : mt) : CST.expansion_max_length_binary_expression = match body with | Children v -> (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - Run.opt - (fun v -> - Run.repeat1 - (fun v -> - (match v with - | Seq [v0; v1; v2] -> - ( - (match v0 with - | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false - ) - , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) + | Alt (0, v) -> + `Expa_max_len_exp_choice_PLUS_expa_max_len_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expansion_max_length_expression (Run.matcher_token v0) + , + (match v1 with + | Alt (0, v) -> + `PLUS ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `DASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false ) - v - ) - v1 + , + trans_expansion_max_length_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Expa_max_len_exp_choice_STAR_expa_max_len_exp ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_expansion_max_length_expression (Run.matcher_token v0) + , + (match v1 with + | Alt (0, v) -> + `STAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_expansion_max_length_expression (Run.matcher_token v2) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_expansion_max_length_expression ((kind, body) : mt) : CST.expansion_max_length_expression = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Choice_semg_meta ( + (match v with + | Alt (0, v) -> + `Semg_meta ( + trans_semgrep_metavariable (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_42e353e ( + trans_pat_42e353e (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (2, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (3, v) -> + `Expa_max_len_bin_exp ( + trans_expansion_max_length_binary_expression (Run.matcher_token v) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_expansion ((kind, body) : mt) : CST.expansion = +and trans_expansion_regex ((kind, body) : mt) : CST.expansion_regex = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3] -> + | Seq [v0; v1] -> ( - Run.trans_token (Run.matcher_token v0), - Run.opt + (match v0 with + | Alt (0, v) -> + `HASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Imme_double_hash ( + trans_immediate_double_hash (Run.matcher_token v) + ) + | Alt (2, v) -> + `PERC ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `PERCPERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.repeat (fun v -> (match v with | Alt (0, v) -> - `HASH ( - Run.trans_token (Run.matcher_token v) + `Regex ( + trans_regex (Run.matcher_token v) ) | Alt (1, v) -> - `BANG ( + `RPAR ( Run.trans_token (Run.matcher_token v) ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Pat_3d340f6 ( + trans_pat_3d340f6 (Run.matcher_token v) + ) | _ -> assert false ) ) v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_expansion_regex_replacement ((kind, body) : mt) : CST.expansion_regex_replacement = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2] -> + ( + (match v0 with + | Alt (0, v) -> + `SLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SLASHSLASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `SLASHHASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (3, v) -> + `SLASHPERC ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) , Run.opt (fun v -> (match v with | Alt (0, v) -> - `Var_name_EQ_opt_choice_conc ( + `Regex_no_slash ( + trans_regex_no_slash (Run.matcher_token v) + ) + | Alt (1, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (2, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (3, v) -> + `Str_regex_no_slash ( (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( - trans_variable_name (Run.matcher_token v0), - Run.trans_token (Run.matcher_token v1), - Run.opt - (fun v -> - (match v with + trans_string_ (Run.matcher_token v0), + trans_regex_no_slash (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v1 + , + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> @@ -3618,246 +7644,104 @@ and trans_expansion ((kind, body) : mt) : CST.expansion = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) | _ -> assert false ) ) - | Alt (2, v) -> + | Alt (1, v) -> `Rep1_spec_char ( Run.repeat1 (fun v -> trans_special_character (Run.matcher_token v)) v ) - | _ -> assert false - ) - ) - v2 - ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `Choice_subs_opt_tok_prec_p1_slash_opt_regex_rep_choice_choice_conc ( - (match v with - | Seq [v0; v1; v2] -> - ( - (match v0 with - | Alt (0, v) -> - `Subs ( - trans_subscript (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_meta ( - (match v with - | Alt (0, v) -> - `Semg_meta ( - trans_semgrep_metavariable (Run.matcher_token v) - ) - | Alt (1, v) -> - `Pat_42e353e ( - trans_pat_42e353e (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `Choice_STAR ( - (match v with - | Alt (0, v) -> - `STAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `AT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `QMARK ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `DASH ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (4, v) -> - `DOLLAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (5, v) -> - `X_0 ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (6, v) -> - `X__ ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) - , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - trans_tok_prec_p1_slash (Run.matcher_token v0), - Run.opt - (fun v -> trans_regex (Run.matcher_token v)) - v1 - ) - | _ -> assert false - ) - ) - v1 - , - Run.repeat - (fun v -> - (match v with - | Alt (0, v) -> - `Choice_conc ( + | Alt (2, v) -> + `Cmd_subs_expa_word ( (match v with - | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( - (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with - | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) - ) - | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) - ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + | Seq [v0; v1] -> + ( + trans_command_substitution (Run.matcher_token v0), + trans_expansion_word (Run.matcher_token v1) ) | _ -> assert false ) ) - | Alt (1, v) -> - `COLON ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `COLONQMARK ( - Run.trans_token (Run.matcher_token v) - ) | Alt (3, v) -> - `EQ ( - Run.trans_token (Run.matcher_token v) + `Expa_word ( + trans_expansion_word (Run.matcher_token v) ) | Alt (4, v) -> - `COLONDASH ( - Run.trans_token (Run.matcher_token v) + `Conc_in_expa ( + trans_concatenation_in_expansion (Run.matcher_token v) ) | Alt (5, v) -> - `PERC ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (6, v) -> - `DASH ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (7, v) -> - `HASH ( - Run.trans_token (Run.matcher_token v) + `Array ( + trans_array_ (Run.matcher_token v) ) | _ -> assert false ) + , + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v1 ) - v2 + | _ -> assert false ) - | _ -> assert false - ) + ) + v1 ) | _ -> assert false ) ) v2 - , - Run.trans_token (Run.matcher_token v3) ) | _ -> assert false ) @@ -3889,37 +7773,53 @@ and trans_expression ((kind, body) : mt) : CST.expression = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -3959,11 +7859,52 @@ and trans_expression ((kind, body) : mt) : CST.expression = ) | Leaf _ -> assert false +and trans_extglob_blob ((kind, body) : mt) : CST.extglob_blob = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Extg_pat ( + trans_extglob_pattern (Run.matcher_token v) + ) + | Alt (1, v) -> + `Extg_pat_choice_str_opt_extg_pat ( + (match v with + | Seq [v0; v1; v2] -> + ( + trans_extglob_pattern (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (1, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (2, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> trans_extglob_pattern (Run.matcher_token v)) + v2 + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_file_redirect ((kind, body) : mt) : CST.file_redirect = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( Run.opt (fun v -> trans_file_descriptor (Run.matcher_token v)) @@ -3971,102 +7912,240 @@ and trans_file_redirect ((kind, body) : mt) : CST.file_redirect = , (match v1 with | Alt (0, v) -> - `LT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `GT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `GTGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMPGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (4, v) -> - `AMPGTGT ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (5, v) -> - `LTAMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (6, v) -> - `GTAMP ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (7, v) -> - `GTBAR ( - Run.trans_token (Run.matcher_token v) - ) - | _ -> assert false - ) - , - (match v2 with - | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( + `Choice_LT_rep1_choice_conc ( (match v with - | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_word ( - (match v with + | Seq [v0; v1] -> + ( + (match v0 with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `LT ( + Run.trans_token (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) + `GT ( + Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) + `GTGT ( + Run.trans_token (Run.matcher_token v) ) | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) + `AMPGT ( + Run.trans_token (Run.matcher_token v) ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `AMPGTGT ( + Run.trans_token (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `LTAMP ( + Run.trans_token (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `GTAMP ( + Run.trans_token (Run.matcher_token v) ) | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + `GTBAR ( + Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) + , + Run.repeat1 + (fun v -> + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + v1 ) | _ -> assert false ) ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + | Alt (1, v) -> + `Choice_LTAMPDASH_opt_choice_conc ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `LTAMPDASH ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `GTAMPDASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) ) | _ -> assert false ) @@ -4075,6 +8154,90 @@ and trans_file_redirect ((kind, body) : mt) : CST.file_redirect = ) | Leaf _ -> assert false +and trans_for_body ((kind, body) : mt) : CST.for_body = + match body with + | Children v -> + (match v with + | Seq [v0; v1; v2; v3; v4] -> + ( + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + trans_c_expression (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_c_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + ) + v0 + , + trans_c_terminator (Run.matcher_token v1), + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + trans_c_expression (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_c_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + ) + v2 + , + trans_c_terminator (Run.matcher_token v3), + Run.opt + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + trans_c_expression (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_c_expression (Run.matcher_token v1) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + ) + v4 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_for_statement ((kind, body) : mt) : CST.for_statement = match body with | Children v -> @@ -4133,37 +8296,53 @@ and trans_for_statement ((kind, body) : mt) : CST.for_statement = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -4196,8 +8375,8 @@ and trans_for_statement ((kind, body) : mt) : CST.for_statement = Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | Alt (3, v) -> `AMP ( @@ -4216,7 +8395,7 @@ and trans_function_definition ((kind, body) : mt) : CST.function_definition = match body with | Children v -> (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2] -> ( (match v0 with | Alt (0, v) -> @@ -4254,22 +8433,388 @@ and trans_function_definition ((kind, body) : mt) : CST.function_definition = | _ -> assert false ) ) - | _ -> assert false - ) - , - (match v1 with - | Alt (0, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | Alt (2, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (3, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `File_redi ( + trans_file_redirect (Run.matcher_token v) + ) + | Alt (1, v) -> + `Here_redi ( + trans_herestring_redirect (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v2 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_heredoc_body ((kind, body) : mt) : CST.heredoc_body = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_heredoc_body_ (Run.matcher_token v0), + trans_heredoc_end (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_heredoc_body_ ((kind, body) : mt) : CST.heredoc_body_ = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_heredoc_body_beginning (Run.matcher_token v0), + Run.repeat + (fun v -> + (match v with + | Alt (0, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (1, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (2, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (3, v) -> + `Here_content ( + trans_heredoc_content (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_heredoc_command ((kind, body) : mt) : CST.heredoc_command = + match body with + | Children v -> + Run.repeat1 + (fun v -> + (match v with + | Alt (0, v) -> + `Conc ( + trans_concatenation (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_semg_deep_exp ( + (match v with + | Alt (0, v) -> + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) + | _ -> assert false + ) + ) + v + | Leaf _ -> assert false + +and trans_heredoc_expression ((kind, body) : mt) : CST.heredoc_expression = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `BARBAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `AMPAMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_heredoc_pipeline ((kind, body) : mt) : CST.heredoc_pipeline = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `BAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BARAMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) | Alt (1, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (2, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) | _ -> assert false ) ) @@ -4277,45 +8822,86 @@ and trans_function_definition ((kind, body) : mt) : CST.function_definition = ) | Leaf _ -> assert false -and trans_heredoc_body ((kind, body) : mt) : CST.heredoc_body = +and trans_heredoc_redirect ((kind, body) : mt) : CST.heredoc_redirect = match body with | Children v -> (match v with - | Alt (0, v) -> - `Simple_here_body ( - trans_simple_heredoc_body (Run.matcher_token v) - ) - | Alt (1, v) -> - `Here_body_begin_rep_choice_expa_here_body_end ( - (match v with - | Seq [v0; v1; v2] -> - ( - trans_heredoc_body_beginning (Run.matcher_token v0), - Run.repeat - (fun v -> + | Seq [v0; v1; v2; v3; v4; v5] -> + ( + Run.opt + (fun v -> trans_file_descriptor (Run.matcher_token v)) + v0 + , + (match v1 with + | Alt (0, v) -> + `LTLT ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `LTLTDASH ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_heredoc_start (Run.matcher_token v2), + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `Here_pipe ( + trans_heredoc_pipeline (Run.matcher_token v) + ) + | Alt (1, v) -> + `Rep1_choice_file_redi_opt_here_exp ( (match v with - | Alt (0, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (1, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (3, v) -> - `Here_body_middle ( - trans_heredoc_body_middle (Run.matcher_token v) + | Seq [v0; v1] -> + ( + Run.repeat1 + (fun v -> + (match v with + | Alt (0, v) -> + `File_redi ( + trans_file_redirect (Run.matcher_token v) + ) + | Alt (1, v) -> + `Here_redi ( + trans_herestring_redirect (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v0 + , + Run.opt + (fun v -> trans_heredoc_expression (Run.matcher_token v)) + v1 ) | _ -> assert false ) ) - v1 - , - trans_heredoc_body_end (Run.matcher_token v2) + | Alt (2, v) -> + `Here_exp ( + trans_heredoc_expression (Run.matcher_token v) + ) + | Alt (3, v) -> + `Here_cmd ( + trans_heredoc_command (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v3 + , + trans_pat_1d78758 (Run.matcher_token v4), + (match v5 with + | Alt (0, v) -> + `Here_body ( + trans_heredoc_body (Run.matcher_token v) + ) + | Alt (1, v) -> + `Simple_here_body ( + trans_simple_heredoc_body (Run.matcher_token v) ) | _ -> assert false ) @@ -4328,10 +8914,14 @@ and trans_herestring_redirect ((kind, body) : mt) : CST.herestring_redirect = match body with | Children v -> (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2] -> ( - Run.trans_token (Run.matcher_token v0), - (match v1 with + Run.opt + (fun v -> trans_file_descriptor (Run.matcher_token v)) + v0 + , + Run.trans_token (Run.matcher_token v1), + (match v2 with | Alt (0, v) -> `Conc ( trans_concatenation (Run.matcher_token v) @@ -4351,37 +8941,53 @@ and trans_herestring_redirect ((kind, body) : mt) : CST.herestring_redirect = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -4408,101 +9014,209 @@ and trans_if_statement ((kind, body) : mt) : CST.if_statement = | Seq [v0; v1; v2; v3; v4; v5; v6] -> ( Run.trans_token (Run.matcher_token v0), - trans_terminated_statement (Run.matcher_token v1), + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v1 + , Run.trans_token (Run.matcher_token v2), Run.opt (fun v -> Run.repeat1 (fun v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( (match v0 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with + (match v1 with | Alt (0, v) -> `SEMI ( Run.trans_token (Run.matcher_token v) @@ -4512,8 +9226,8 @@ and trans_if_statement ((kind, body) : mt) : CST.if_statement = Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | Alt (3, v) -> `AMP ( @@ -4547,70 +9261,100 @@ and trans_last_case_item ((kind, body) : mt) : CST.last_case_item = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4] -> + | Seq [v0; v1; v2; v3; v4; v5] -> ( - (match v0 with - | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( + Run.opt + (fun v -> Run.trans_token (Run.matcher_token v)) + v0 + , + (match v1 with + | Alt (0, v) -> + `Choice_conc ( (match v with | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) + `Conc ( + trans_concatenation (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_word ( + `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) | _ -> assert false ) ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + | Alt (1, v) -> + `Extg_blob ( + trans_extglob_blob (Run.matcher_token v) ) | _ -> assert false ) @@ -4623,66 +9367,92 @@ and trans_last_case_item ((kind, body) : mt) : CST.last_case_item = Run.trans_token (Run.matcher_token v0), (match v1 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( + `Choice_conc ( (match v with | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) + `Conc ( + trans_concatenation (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_word ( + `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) | _ -> assert false ) ) - | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + | Alt (1, v) -> + `Extg_blob ( + trans_extglob_blob (Run.matcher_token v) ) | _ -> assert false ) @@ -4690,16 +9460,16 @@ and trans_last_case_item ((kind, body) : mt) : CST.last_case_item = | _ -> assert false ) ) - v1 + v2 , - Run.trans_token (Run.matcher_token v2), + Run.trans_token (Run.matcher_token v3), Run.opt (fun v -> trans_statements (Run.matcher_token v)) - v3 + v4 , Run.opt (fun v -> Run.trans_token (Run.matcher_token v)) - v4 + v5 ) | _ -> assert false ) @@ -4713,73 +9483,83 @@ and trans_list_ ((kind, body) : mt) : CST.list_ = ( (match v0 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) , @@ -4797,73 +9577,83 @@ and trans_list_ ((kind, body) : mt) : CST.list_ = , (match v2 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) - | Alt (14, v) -> + | Alt (1, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) ) @@ -4884,10 +9674,14 @@ and trans_negated_command ((kind, body) : mt) : CST.negated_command = trans_command (Run.matcher_token v) ) | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> `Test_cmd ( trans_test_command (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) @@ -4898,6 +9692,39 @@ and trans_negated_command ((kind, body) : mt) : CST.negated_command = ) | Leaf _ -> assert false +and trans_number ((kind, body) : mt) : CST.number = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Pat_421f39f ( + trans_pat_421f39f (Run.matcher_token v) + ) + | Alt (1, v) -> + `Pat_b978cc7_choice_expa ( + (match v with + | Seq [v0; v1] -> + ( + trans_pat_b978cc7 (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (1, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_parenthesized_expression ((kind, body) : mt) : CST.parenthesized_expression = match body with | Children v -> @@ -4916,294 +9743,225 @@ and trans_pipeline ((kind, body) : mt) : CST.pipeline = match body with | Children v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( - (match v0 with - | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) + trans_statement_not_pipeline (Run.matcher_token v0), + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `BAR ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `BARAMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_statement_not_pipeline (Run.matcher_token v1) + ) + | _ -> assert false ) - | _ -> assert false - ) - , + ) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_postfix_expression ((kind, body) : mt) : CST.postfix_expression = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_expression (Run.matcher_token v0), (match v1 with | Alt (0, v) -> - `BAR ( + `PLUSPLUS ( Run.trans_token (Run.matcher_token v) ) | Alt (1, v) -> - `BARAMP ( + `DASHDASH ( Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) - , - (match v2 with - | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false - ) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_postfix_expression ((kind, body) : mt) : CST.postfix_expression = +and trans_process_substitution ((kind, body) : mt) : CST.process_substitution = match body with | Children v -> (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2] -> ( - trans_expression (Run.matcher_token v0), - (match v1 with + (match v0 with | Alt (0, v) -> - `PLUSPLUS ( + `LTLPAR ( Run.trans_token (Run.matcher_token v) ) | Alt (1, v) -> - `DASHDASH ( + `GTLPAR ( Run.trans_token (Run.matcher_token v) ) | _ -> assert false ) + , + trans_statements (Run.matcher_token v1), + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_redirected_statement ((kind, body) : mt) : CST.redirected_statement = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Choice_choice_redi_stmt_choice_rep1_choice_file_redi ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `Rep1_choice_file_redi ( + Run.repeat1 + (fun v -> + (match v with + | Alt (0, v) -> + `File_redi ( + trans_file_redirect (Run.matcher_token v) + ) + | Alt (1, v) -> + `Here_redi ( + trans_heredoc_redirect (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_process_substitution ((kind, body) : mt) : CST.process_substitution = - match body with - | Children v -> - (match v with - | Seq [v0; v1; v2] -> - ( - (match v0 with - | Alt (0, v) -> - `LTLPAR ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (1, v) -> - `GTLPAR ( - Run.trans_token (Run.matcher_token v) + | Alt (1, v) -> + `Choice_if_stmt_here_redi ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | _ -> assert false + ) + , + trans_herestring_redirect (Run.matcher_token v1) ) | _ -> assert false ) - , - trans_statements (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_redirected_statement ((kind, body) : mt) : CST.redirected_statement = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - (match v0 with - | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false - ) - , + | Alt (2, v) -> + `Rep1_choice_file_redi ( Run.repeat1 (fun v -> (match v with @@ -5212,17 +9970,17 @@ and trans_redirected_statement ((kind, body) : mt) : CST.redirected_statement = trans_file_redirect (Run.matcher_token v) ) | Alt (1, v) -> - `Here_redi_a9657de ( - trans_heredoc_redirect (Run.matcher_token v) - ) - | Alt (2, v) -> - `Here_redi_7d3292d ( + `Here_redi ( trans_herestring_redirect (Run.matcher_token v) ) | _ -> assert false ) ) - v1 + v + ) + | Alt (3, v) -> + `Here_redi ( + trans_herestring_redirect (Run.matcher_token v) ) | _ -> assert false ) @@ -5255,37 +10013,53 @@ and trans_semgrep_deep_expression ((kind, body) : mt) : CST.semgrep_deep_express trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -5307,103 +10081,176 @@ and trans_semgrep_deep_expression ((kind, body) : mt) : CST.semgrep_deep_express ) | Leaf _ -> assert false +and trans_statement_not_pipeline ((kind, body) : mt) : CST.statement_not_pipeline = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (14, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (15, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | Alt (16, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_statements ((kind, body) : mt) : CST.statements = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3] -> + | Seq [v0; v1; v2] -> ( Run.repeat (fun v -> (match v with - | Seq [v0; v1; v2] -> + | Seq [v0; v1] -> ( (match v0 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v1 - , - (match v2 with + (match v1 with | Alt (0, v) -> `SEMI ( Run.trans_token (Run.matcher_token v) @@ -5413,8 +10260,8 @@ and trans_statements ((kind, body) : mt) : CST.statements = Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | Alt (3, v) -> `AMP ( @@ -5430,89 +10277,86 @@ and trans_statements ((kind, body) : mt) : CST.statements = , (match v1 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> `Subs ( trans_subshell (Run.matcher_token v) ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) | _ -> assert false ) , - Run.opt - (fun v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_heredoc_body (Run.matcher_token v1) - ) - | _ -> assert false - ) - ) - v2 - , Run.opt (fun v -> (match v with @@ -5525,8 +10369,8 @@ and trans_statements ((kind, body) : mt) : CST.statements = Run.trans_token (Run.matcher_token v) ) | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) ) | Alt (3, v) -> `AMP ( @@ -5535,7 +10379,7 @@ and trans_statements ((kind, body) : mt) : CST.statements = | _ -> assert false ) ) - v3 + v2 ) | _ -> assert false ) @@ -5580,6 +10424,10 @@ and trans_string_ ((kind, body) : mt) : CST.string_ = `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) + | Alt (4, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) | _ -> assert false ) , @@ -5602,29 +10450,6 @@ and trans_string_ ((kind, body) : mt) : CST.string_ = ) | Leaf _ -> assert false -and trans_string_expansion ((kind, body) : mt) : CST.string_expansion = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - Run.trans_token (Run.matcher_token v0), - (match v1 with - | Alt (0, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (1, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | _ -> assert false - ) - ) - | _ -> assert false - ) - | Leaf _ -> assert false - and trans_subscript ((kind, body) : mt) : CST.subscript = match body with | Children v -> @@ -5635,66 +10460,104 @@ and trans_subscript ((kind, body) : mt) : CST.subscript = Run.trans_token (Run.matcher_token v1), (match v2 with | Alt (0, v) -> - `Conc ( - trans_concatenation (Run.matcher_token v) - ) - | Alt (1, v) -> - `Choice_semg_deep_exp ( + `Choice_conc ( (match v with | Alt (0, v) -> - `Semg_deep_exp ( - trans_semgrep_deep_expression (Run.matcher_token v) + `Conc ( + trans_concatenation (Run.matcher_token v) ) | Alt (1, v) -> - `Choice_word ( + `Choice_semg_deep_exp ( (match v with | Alt (0, v) -> - `Word ( - trans_word (Run.matcher_token v) + `Semg_deep_exp ( + trans_semgrep_deep_expression (Run.matcher_token v) ) | Alt (1, v) -> - `Str ( - trans_string_ (Run.matcher_token v) - ) - | Alt (2, v) -> - `Raw_str ( - trans_raw_string (Run.matcher_token v) - ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) - | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) - ) - | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) - ) - | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) - ) - | Alt (7, v) -> - `Cmd_subs ( - trans_command_substitution (Run.matcher_token v) - ) - | Alt (8, v) -> - `Proc_subs ( - trans_process_substitution (Run.matcher_token v) + `Choice_word ( + (match v with + | Alt (0, v) -> + `Word ( + trans_word (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> + `Str ( + trans_string_ (Run.matcher_token v) + ) + | Alt (3, v) -> + `Raw_str ( + trans_raw_string (Run.matcher_token v) + ) + | Alt (4, v) -> + `Tran_str ( + trans_translated_string (Run.matcher_token v) + ) + | Alt (5, v) -> + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) + ) + | Alt (6, v) -> + `Num ( + trans_number (Run.matcher_token v) + ) + | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> + `Cmd_subs ( + trans_command_substitution (Run.matcher_token v) + ) + | Alt (10, v) -> + `Proc_subs ( + trans_process_substitution (Run.matcher_token v) + ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) + | _ -> assert false + ) ) | _ -> assert false ) ) + | Alt (2, v) -> + `Rep1_spec_char ( + Run.repeat1 + (fun v -> trans_special_character (Run.matcher_token v)) + v + ) | _ -> assert false ) ) + | Alt (1, v) -> + `Bin_exp ( + trans_binary_expression (Run.matcher_token v) + ) | Alt (2, v) -> - `Rep1_spec_char ( - Run.repeat1 - (fun v -> trans_special_character (Run.matcher_token v)) - v + `Un_exp ( + trans_unary_expression (Run.matcher_token v) + ) + | Alt (3, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (4, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) ) | _ -> assert false ) @@ -5726,100 +10589,78 @@ and trans_subshell ((kind, body) : mt) : CST.subshell = ) | Leaf _ -> assert false -and trans_terminated_statement ((kind, body) : mt) : CST.terminated_statement = +and trans_ternary_expression ((kind, body) : mt) : CST.ternary_expression = match body with | Children v -> (match v with - | Seq [v0; v1] -> + | Seq [v0; v1; v2; v3; v4] -> + ( + trans_expression (Run.matcher_token v0), + Run.trans_token (Run.matcher_token v1), + trans_expression (Run.matcher_token v2), + Run.trans_token (Run.matcher_token v3), + trans_expression (Run.matcher_token v4) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_test_command ((kind, body) : mt) : CST.test_command = + match body with + | Children v -> + (match v with + | Seq [v0] -> ( (match v0 with | Alt (0, v) -> - `Redi_stmt ( - trans_redirected_statement (Run.matcher_token v) - ) - | Alt (1, v) -> - `Var_assign ( - trans_variable_assignment (Run.matcher_token v) - ) - | Alt (2, v) -> - `Cmd ( - trans_command (Run.matcher_token v) - ) - | Alt (3, v) -> - `Decl_cmd ( - trans_declaration_command (Run.matcher_token v) - ) - | Alt (4, v) -> - `Unset_cmd ( - trans_unset_command (Run.matcher_token v) - ) - | Alt (5, v) -> - `Test_cmd ( - trans_test_command (Run.matcher_token v) - ) - | Alt (6, v) -> - `Nega_cmd ( - trans_negated_command (Run.matcher_token v) - ) - | Alt (7, v) -> - `For_stmt ( - trans_for_statement (Run.matcher_token v) - ) - | Alt (8, v) -> - `C_style_for_stmt ( - trans_c_style_for_statement (Run.matcher_token v) - ) - | Alt (9, v) -> - `While_stmt ( - trans_while_statement (Run.matcher_token v) - ) - | Alt (10, v) -> - `If_stmt ( - trans_if_statement (Run.matcher_token v) - ) - | Alt (11, v) -> - `Case_stmt ( - trans_case_statement (Run.matcher_token v) - ) - | Alt (12, v) -> - `Pipe ( - trans_pipeline (Run.matcher_token v) - ) - | Alt (13, v) -> - `List ( - trans_list_ (Run.matcher_token v) - ) - | Alt (14, v) -> - `Subs ( - trans_subshell (Run.matcher_token v) - ) - | Alt (15, v) -> - `Comp_stmt ( - trans_compound_statement (Run.matcher_token v) - ) - | Alt (16, v) -> - `Func_defi ( - trans_function_definition (Run.matcher_token v) - ) - | _ -> assert false - ) - , - (match v1 with - | Alt (0, v) -> - `SEMI ( - Run.trans_token (Run.matcher_token v) + `LBRACK_opt_choice_exp_RBRACK ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + Run.opt + (fun v -> + (match v with + | Alt (0, v) -> + `Exp ( + trans_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + v1 + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) ) | Alt (1, v) -> - `SEMISEMI ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (2, v) -> - `LF ( - Run.trans_token (Run.matcher_token v) - ) - | Alt (3, v) -> - `AMP ( - Run.trans_token (Run.matcher_token v) + `LBRACKLBRACK_choice_exp_RBRACKRBRACK ( + (match v with + | Seq [v0; v1; v2] -> + ( + Run.trans_token (Run.matcher_token v0), + (match v1 with + | Alt (0, v) -> + `Exp ( + trans_expression (Run.matcher_token v) + ) + | Alt (1, v) -> + `Test_cmd_bin_exp ( + trans_test_command_binary_expression (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.trans_token (Run.matcher_token v2) + ) + | _ -> assert false + ) ) | _ -> assert false ) @@ -5828,91 +10669,106 @@ and trans_terminated_statement ((kind, body) : mt) : CST.terminated_statement = ) | Leaf _ -> assert false -and trans_ternary_expression ((kind, body) : mt) : CST.ternary_expression = +and trans_test_command_binary_expression ((kind, body) : mt) : CST.test_command_binary_expression = match body with | Children v -> (match v with - | Seq [v0; v1; v2; v3; v4] -> + | Seq [v0; v1; v2] -> ( trans_expression (Run.matcher_token v0), Run.trans_token (Run.matcher_token v1), - trans_expression (Run.matcher_token v2), - Run.trans_token (Run.matcher_token v3), - trans_expression (Run.matcher_token v4) + trans_regex_no_space (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false -and trans_test_command ((kind, body) : mt) : CST.test_command = +and trans_translated_string ((kind, body) : mt) : CST.translated_string = match body with | Children v -> (match v with - | Seq [v0] -> + | Seq [v0; v1] -> ( - (match v0 with - | Alt (0, v) -> - `LBRACK_exp_RBRACK ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_expression (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) + Run.trans_token (Run.matcher_token v0), + trans_string_ (Run.matcher_token v1) + ) + | _ -> assert false + ) + | Leaf _ -> assert false + +and trans_unary_expression ((kind, body) : mt) : CST.unary_expression = + match body with + | Children v -> + (match v with + | Alt (0, v) -> + `Choice_tok_prec_p1_plusps_exp ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Tok_prec_p1_plusps ( + trans_tok_prec_p1_plusplus (Run.matcher_token v) ) - | _ -> assert false - ) - ) - | Alt (1, v) -> - `LBRACKLBRACK_exp_RBRACKRBRACK ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_expression (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) + | Alt (1, v) -> + `Tok_prec_p1_dash ( + trans_tok_prec_p1_dashdash (Run.matcher_token v) ) | _ -> assert false ) + , + trans_expression (Run.matcher_token v1) ) - | Alt (2, v) -> - `LPARLPAR_exp_RPARRPAR ( - (match v with - | Seq [v0; v1; v2] -> - ( - Run.trans_token (Run.matcher_token v0), - trans_expression (Run.matcher_token v1), - Run.trans_token (Run.matcher_token v2) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Choice_tok_prec_p1_dash_exp ( + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Tok_prec_p1_dash ( + trans_tok_prec_p1_dash (Run.matcher_token v) + ) + | Alt (1, v) -> + `Tok_prec_p1_plus ( + trans_tok_prec_p1_plus (Run.matcher_token v) + ) + | Alt (2, v) -> + `Tok_prec_p1_tilde ( + trans_tok_prec_p1_tilde (Run.matcher_token v) ) | _ -> assert false ) + , + trans_expression (Run.matcher_token v1) ) | _ -> assert false ) ) - | _ -> assert false - ) - | Leaf _ -> assert false - -and trans_unary_expression ((kind, body) : mt) : CST.unary_expression = - match body with - | Children v -> - (match v with - | Seq [v0; v1] -> - ( - (match v0 with - | Alt (0, v) -> - `BANG ( - Run.trans_token (Run.matcher_token v) + | Alt (2, v) -> + `BANG_exp ( + (match v with + | Seq [v0; v1] -> + ( + Run.trans_token (Run.matcher_token v0), + trans_expression (Run.matcher_token v1) ) - | Alt (1, v) -> - `Test_op ( - trans_test_operator (Run.matcher_token v) + | _ -> assert false + ) + ) + | Alt (3, v) -> + `Test_op_exp ( + (match v with + | Seq [v0; v1] -> + ( + trans_test_operator (Run.matcher_token v0), + trans_expression (Run.matcher_token v1) ) | _ -> assert false ) - , - trans_expression (Run.matcher_token v1) ) | _ -> assert false ) @@ -5961,37 +10817,53 @@ and trans_unset_command ((kind, body) : mt) : CST.unset_command = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6074,37 +10946,53 @@ and trans_variable_assignment ((kind, body) : mt) : CST.variable_assignment = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6186,37 +11074,53 @@ and trans_variable_assignment ((kind, body) : mt) : CST.variable_assignment = trans_word (Run.matcher_token v) ) | Alt (1, v) -> + `Test_op ( + trans_test_operator (Run.matcher_token v) + ) + | Alt (2, v) -> `Str ( trans_string_ (Run.matcher_token v) ) - | Alt (2, v) -> + | Alt (3, v) -> `Raw_str ( trans_raw_string (Run.matcher_token v) ) - | Alt (3, v) -> - `Ansii_c_str ( - trans_ansii_c_string (Run.matcher_token v) - ) | Alt (4, v) -> - `Expa ( - trans_expansion (Run.matcher_token v) + `Tran_str ( + trans_translated_string (Run.matcher_token v) ) | Alt (5, v) -> - `Simple_expa ( - trans_simple_expansion (Run.matcher_token v) + `Ansi_c_str ( + trans_ansi_c_string (Run.matcher_token v) ) | Alt (6, v) -> - `Str_expa ( - trans_string_expansion (Run.matcher_token v) + `Num ( + trans_number (Run.matcher_token v) ) | Alt (7, v) -> + `Expa ( + trans_expansion (Run.matcher_token v) + ) + | Alt (8, v) -> + `Simple_expa ( + trans_simple_expansion (Run.matcher_token v) + ) + | Alt (9, v) -> `Cmd_subs ( trans_command_substitution (Run.matcher_token v) ) - | Alt (8, v) -> + | Alt (10, v) -> `Proc_subs ( trans_process_substitution (Run.matcher_token v) ) + | Alt (11, v) -> + `Arit_expa ( + trans_arithmetic_expansion (Run.matcher_token v) + ) + | Alt (12, v) -> + `Brace_exp ( + trans_brace_expression (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6240,6 +11144,10 @@ and trans_variable_assignment ((kind, body) : mt) : CST.variable_assignment = `Empty_value ( trans_empty_value (Run.matcher_token v) ) + | Alt (3, v) -> + `Comm_word ( + trans_comment_word (Run.matcher_token v) + ) | _ -> assert false ) ) @@ -6250,22 +11158,157 @@ and trans_variable_assignment ((kind, body) : mt) : CST.variable_assignment = ) | Leaf _ -> assert false +and trans_variable_assignments ((kind, body) : mt) : CST.variable_assignments = + match body with + | Children v -> + (match v with + | Seq [v0; v1] -> + ( + trans_variable_assignment (Run.matcher_token v0), + Run.repeat1 + (fun v -> trans_variable_assignment (Run.matcher_token v)) + v1 + ) + | _ -> assert false + ) + | Leaf _ -> assert false + and trans_while_statement ((kind, body) : mt) : CST.while_statement = match body with | Children v -> (match v with | Seq [v0; v1; v2] -> ( - Run.trans_token (Run.matcher_token v0), - trans_terminated_statement (Run.matcher_token v1), + (match v0 with + | Alt (0, v) -> + `While ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `Until ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + , + Run.repeat1 + (fun v -> + (match v with + | Seq [v0; v1] -> + ( + (match v0 with + | Alt (0, v) -> + `Choice_redi_stmt ( + (match v with + | Alt (0, v) -> + `Redi_stmt ( + trans_redirected_statement (Run.matcher_token v) + ) + | Alt (1, v) -> + `Var_assign ( + trans_variable_assignment (Run.matcher_token v) + ) + | Alt (2, v) -> + `Var_assigns ( + trans_variable_assignments (Run.matcher_token v) + ) + | Alt (3, v) -> + `Cmd ( + trans_command (Run.matcher_token v) + ) + | Alt (4, v) -> + `Decl_cmd ( + trans_declaration_command (Run.matcher_token v) + ) + | Alt (5, v) -> + `Unset_cmd ( + trans_unset_command (Run.matcher_token v) + ) + | Alt (6, v) -> + `Test_cmd ( + trans_test_command (Run.matcher_token v) + ) + | Alt (7, v) -> + `Nega_cmd ( + trans_negated_command (Run.matcher_token v) + ) + | Alt (8, v) -> + `For_stmt ( + trans_for_statement (Run.matcher_token v) + ) + | Alt (9, v) -> + `C_style_for_stmt ( + trans_c_style_for_statement (Run.matcher_token v) + ) + | Alt (10, v) -> + `While_stmt ( + trans_while_statement (Run.matcher_token v) + ) + | Alt (11, v) -> + `If_stmt ( + trans_if_statement (Run.matcher_token v) + ) + | Alt (12, v) -> + `Case_stmt ( + trans_case_statement (Run.matcher_token v) + ) + | Alt (13, v) -> + `Pipe ( + trans_pipeline (Run.matcher_token v) + ) + | Alt (14, v) -> + `List ( + trans_list_ (Run.matcher_token v) + ) + | Alt (15, v) -> + `Comp_stmt ( + trans_compound_statement (Run.matcher_token v) + ) + | Alt (16, v) -> + `Func_defi ( + trans_function_definition (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | Alt (1, v) -> + `Subs ( + trans_subshell (Run.matcher_token v) + ) + | _ -> assert false + ) + , + (match v1 with + | Alt (0, v) -> + `SEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (1, v) -> + `SEMISEMI ( + Run.trans_token (Run.matcher_token v) + ) + | Alt (2, v) -> + `Pat_1d78758 ( + trans_pat_1d78758 (Run.matcher_token v) + ) + | Alt (3, v) -> + `AMP ( + Run.trans_token (Run.matcher_token v) + ) + | _ -> assert false + ) + ) + | _ -> assert false + ) + ) + v1 + , trans_do_group (Run.matcher_token v2) ) | _ -> assert false ) | Leaf _ -> assert false - - let trans_program ((kind, body) : mt) : CST.program = match body with | Children v -> @@ -6276,6 +11319,11 @@ let trans_program ((kind, body) : mt) : CST.program = + + + + + (* Costly operation that translates a whole tree or subtree. diff --git a/lib/bindings.c b/lib/bindings.c index 3346c22..3a1cf34 100644 --- a/lib/bindings.c +++ b/lib/bindings.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -40,12 +41,26 @@ CAMLprim value octs_create_parser_bash(value unit) { CAMLparam0(); CAMLlocal1(v); - parser_W parserWrapper; TSParser *parser = ts_parser_new(); + + // Fail loudly on an ABI version mismatch: ts_parser_set_language returns + // false (and assigns no language) when the compiled grammar's ABI version + // is outside the linked runtime's supported range. Raising here -- before + // allocating the boxed parser value -- avoids silently handing back a + // parser that yields empty parse trees, and keeps the cleanup path + // unambiguous (no half-initialized custom block for the finalizer to see). + if (!ts_parser_set_language(parser, tree_sitter_bash())) { + ts_parser_delete(parser); + caml_failwith( + "ts_parser_set_language failed for bash: the compiled " + "grammar's ABI version is incompatible with the linked tree-sitter " + "runtime"); + } + + parser_W parserWrapper; parserWrapper.parser = parser; v = caml_alloc_custom(&parser_custom_ops, sizeof(parser_W), 0, 1); memcpy(Data_custom_val(v), &parserWrapper, sizeof(parser_W)); - ts_parser_set_language(parser, tree_sitter_bash()); CAMLreturn(v); }; diff --git a/lib/dune b/lib/dune index b569ff8..5c5479f 100644 --- a/lib/dune +++ b/lib/dune @@ -11,7 +11,7 @@ ; (foreign_stubs (language c) - (names parser bindings) + (names scanner parser bindings) (flags -std=c99 -fPIC -I %{env:TREESITTER_INCDIR=/usr/local/include} @@ -36,7 +36,7 @@ ) (foreign_stubs (language cxx) - (names scanner) + (names ) (flags -fPIC -I %{env:TREESITTER_INCDIR=/usr/local/include} -I .) diff --git a/lib/parser.c b/lib/parser.c index fce24c8..cf525a4 100644 --- a/lib/parser.c +++ b/lib/parser.c @@ -1,3 +1,6 @@ +// semgrep: generated by tree-sitter 0.26.3 +/* Automatically @generated by tree-sitter */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) @@ -13,21 +16,23 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3829 -#define LARGE_STATE_COUNT 153 -#define SYMBOL_COUNT 171 -#define ALIAS_COUNT 2 -#define TOKEN_COUNT 108 -#define EXTERNAL_TOKEN_COUNT 15 +#define STATE_COUNT 6094 +#define LARGE_STATE_COUNT 476 +#define SYMBOL_COUNT 288 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 179 +#define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 19 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 59 +#define MAX_ALIAS_SEQUENCE_LENGTH 8 +#define MAX_RESERVED_WORD_SET_SIZE 0 +#define PRODUCTION_ID_COUNT 98 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { sym_word = 1, - anon_sym_LF = 2, - anon_sym_SEMI = 3, - anon_sym_SEMI_SEMI = 4, + anon_sym_SEMI = 2, + anon_sym_SEMI_SEMI = 3, + aux_sym_statements_token1 = 4, anon_sym_AMP = 5, anon_sym_for = 6, anon_sym_select = 7, @@ -35,183 +40,337 @@ enum ts_symbol_identifiers { anon_sym_in = 9, anon_sym_LPAREN_LPAREN = 10, anon_sym_RPAREN_RPAREN = 11, - anon_sym_while = 12, - anon_sym_do = 13, - anon_sym_done = 14, - anon_sym_if = 15, - anon_sym_then = 16, - anon_sym_fi = 17, - anon_sym_elif = 18, - anon_sym_else = 19, - anon_sym_case = 20, - anon_sym_esac = 21, - anon_sym_PIPE = 22, - anon_sym_RPAREN = 23, - anon_sym_SEMI_AMP = 24, - anon_sym_SEMI_SEMI_AMP = 25, - anon_sym_function = 26, - anon_sym_LPAREN = 27, - anon_sym_LBRACE = 28, - anon_sym_RBRACE = 29, - anon_sym_PIPE_AMP = 30, - anon_sym_AMP_AMP = 31, - anon_sym_PIPE_PIPE = 32, - anon_sym_BANG = 33, - anon_sym_LBRACK = 34, - anon_sym_RBRACK = 35, - anon_sym_LBRACK_LBRACK = 36, - anon_sym_RBRACK_RBRACK = 37, - anon_sym_declare = 38, - anon_sym_typeset = 39, - anon_sym_export = 40, - anon_sym_readonly = 41, - anon_sym_local = 42, - anon_sym_unset = 43, - anon_sym_unsetenv = 44, - anon_sym_EQ_TILDE = 45, - anon_sym_EQ_EQ = 46, - anon_sym_EQ = 47, - anon_sym_PLUS_EQ = 48, - anon_sym_LT = 49, - anon_sym_GT = 50, - anon_sym_GT_GT = 51, - anon_sym_AMP_GT = 52, - anon_sym_AMP_GT_GT = 53, - anon_sym_LT_AMP = 54, - anon_sym_GT_AMP = 55, - anon_sym_GT_PIPE = 56, - anon_sym_LT_LT = 57, - anon_sym_LT_LT_DASH = 58, - anon_sym_LT_LT_LT = 59, - anon_sym_BANG_EQ = 60, - anon_sym_PLUS = 61, - anon_sym_DASH = 62, - anon_sym_DASH_EQ = 63, - anon_sym_LT_EQ = 64, - anon_sym_GT_EQ = 65, - anon_sym_QMARK = 66, - anon_sym_COLON = 67, - anon_sym_PLUS_PLUS = 68, - anon_sym_DASH_DASH = 69, - anon_sym_DOLLAR = 70, - sym_special_character = 71, - anon_sym_DQUOTE = 72, - sym_string_content = 73, - sym_raw_string = 74, - sym_ansii_c_string = 75, - anon_sym_STAR = 76, - anon_sym_AT = 77, - anon_sym_0 = 78, - anon_sym__ = 79, - anon_sym_POUND = 80, - anon_sym_DOLLAR_LBRACE = 81, - anon_sym_SLASH = 82, - anon_sym_COLON_QMARK = 83, - anon_sym_COLON_DASH = 84, - anon_sym_PERCENT = 85, - anon_sym_DOLLAR_LPAREN = 86, - anon_sym_BQUOTE = 87, - anon_sym_LT_LPAREN = 88, - anon_sym_GT_LPAREN = 89, - sym_comment = 90, - sym_test_operator = 91, - anon_sym_LT_DOT_DOT_DOT = 92, - anon_sym_DOT_DOT_DOT_GT = 93, - sym_semgrep_named_ellipsis = 94, - sym_semgrep_metavariable = 95, - sym_semgrep_metavar_eq = 96, - sym_semgrep_metavar_pluseq = 97, - sym_heredoc_start = 98, - sym_simple_heredoc_body = 99, - sym_heredoc_body_beginning = 100, - sym_heredoc_body_middle = 101, - sym_heredoc_body_end = 102, - sym_file_descriptor = 103, - sym_empty_value = 104, - sym_concat = 105, - sym_variable_name = 106, - sym_regex = 107, - sym_program = 108, - sym_statements = 109, - sym_terminated_statement = 110, - sym_redirected_statement = 111, - sym_for_statement = 112, - sym_c_style_for_statement = 113, - sym_while_statement = 114, - sym_do_group = 115, - sym_if_statement = 116, - sym_elif_clause = 117, - sym_else_clause = 118, - sym_case_statement = 119, - sym_case_item = 120, - sym_last_case_item = 121, - sym_function_definition = 122, - sym_compound_statement = 123, - sym_subshell = 124, - sym_pipeline = 125, - sym_list = 126, - sym_negated_command = 127, - sym_test_command = 128, - sym_declaration_command = 129, - sym_unset_command = 130, - sym_command = 131, - sym_command_name = 132, - sym_variable_assignment = 133, - sym_subscript = 134, - sym_file_redirect = 135, - sym_heredoc_redirect = 136, - sym_heredoc_body = 137, - sym_herestring_redirect = 138, - sym_expression = 139, - sym_binary_expression = 140, - sym_ternary_expression = 141, - sym_unary_expression = 142, - sym_postfix_expression = 143, - sym_parenthesized_expression = 144, - sym_concatenation = 145, - sym_string = 146, - sym_array = 147, - sym_simple_expansion = 148, - sym_string_expansion = 149, - sym_expansion = 150, - sym_command_substitution = 151, - sym_process_substitution = 152, - sym_orig_simple_variable_name = 153, - sym_semgrep_deep_expression = 154, - sym_extended_word = 155, - aux_sym_statements_repeat1 = 156, - aux_sym_redirected_statement_repeat1 = 157, - aux_sym_for_statement_repeat1 = 158, - aux_sym_for_statement_repeat2 = 159, - aux_sym_if_statement_repeat1 = 160, - aux_sym_case_statement_repeat1 = 161, - aux_sym_case_item_repeat1 = 162, - aux_sym_declaration_command_repeat1 = 163, - aux_sym_unset_command_repeat1 = 164, - aux_sym_command_repeat1 = 165, - aux_sym_command_repeat2 = 166, - aux_sym_heredoc_body_repeat1 = 167, - aux_sym_concatenation_repeat1 = 168, - aux_sym_string_repeat1 = 169, - aux_sym_expansion_repeat1 = 170, - alias_sym_pat_42e353e = 171, - alias_sym_tok_prec_p1_slash = 172, + anon_sym_COMMA = 12, + aux_sym_c_expression_not_assignment_token1 = 13, + anon_sym_EQ = 14, + anon_sym_PLUS_PLUS = 15, + anon_sym_DASH_DASH = 16, + anon_sym_PLUS_EQ = 17, + anon_sym_DASH_EQ = 18, + anon_sym_STAR_EQ = 19, + anon_sym_SLASH_EQ = 20, + anon_sym_PERCENT_EQ = 21, + anon_sym_STAR_STAR_EQ = 22, + anon_sym_LT_LT_EQ = 23, + anon_sym_GT_GT_EQ = 24, + anon_sym_AMP_EQ = 25, + anon_sym_CARET_EQ = 26, + anon_sym_PIPE_EQ = 27, + anon_sym_PIPE_PIPE = 28, + anon_sym_DASHo = 29, + anon_sym_AMP_AMP = 30, + anon_sym_DASHa = 31, + anon_sym_PIPE = 32, + anon_sym_CARET = 33, + anon_sym_EQ_EQ = 34, + anon_sym_BANG_EQ = 35, + anon_sym_LT = 36, + anon_sym_GT = 37, + anon_sym_LT_EQ = 38, + anon_sym_GT_EQ = 39, + anon_sym_LT_LT = 40, + anon_sym_GT_GT = 41, + anon_sym_PLUS = 42, + anon_sym_DASH = 43, + anon_sym_STAR = 44, + anon_sym_SLASH = 45, + anon_sym_PERCENT = 46, + anon_sym_STAR_STAR = 47, + anon_sym_LPAREN = 48, + anon_sym_RPAREN = 49, + anon_sym_while = 50, + anon_sym_until = 51, + anon_sym_do = 52, + anon_sym_done = 53, + anon_sym_if = 54, + anon_sym_then = 55, + anon_sym_fi = 56, + anon_sym_elif = 57, + anon_sym_else = 58, + anon_sym_case = 59, + anon_sym_esac = 60, + anon_sym_SEMI_AMP = 61, + anon_sym_SEMI_SEMI_AMP = 62, + anon_sym_function = 63, + anon_sym_LBRACE = 64, + anon_sym_RBRACE = 65, + anon_sym_PIPE_AMP = 66, + anon_sym_BANG = 67, + anon_sym_LBRACK = 68, + anon_sym_RBRACK = 69, + anon_sym_LBRACK_LBRACK = 70, + anon_sym_RBRACK_RBRACK = 71, + anon_sym_declare = 72, + anon_sym_typeset = 73, + anon_sym_export = 74, + anon_sym_readonly = 75, + anon_sym_local = 76, + anon_sym_unset = 77, + anon_sym_unsetenv = 78, + anon_sym_EQ_TILDE = 79, + anon_sym_AMP_GT = 80, + anon_sym_AMP_GT_GT = 81, + anon_sym_LT_AMP = 82, + anon_sym_GT_AMP = 83, + anon_sym_GT_PIPE = 84, + anon_sym_LT_AMP_DASH = 85, + anon_sym_GT_AMP_DASH = 86, + anon_sym_LT_LT_DASH = 87, + anon_sym_LT_LT_LT = 88, + anon_sym_QMARK = 89, + anon_sym_COLON = 90, + anon_sym_PLUS_PLUS2 = 91, + anon_sym_DASH_DASH2 = 92, + anon_sym_DASH2 = 93, + anon_sym_PLUS2 = 94, + anon_sym_TILDE = 95, + anon_sym_DOLLAR_LPAREN_LPAREN = 96, + anon_sym_DOLLAR_LBRACK = 97, + aux_sym_brace_expression_token1 = 98, + anon_sym_DOT_DOT = 99, + anon_sym_RBRACE2 = 100, + aux_sym_concatenation_token1 = 101, + anon_sym_DOLLAR = 102, + sym_special_character = 103, + anon_sym_DQUOTE = 104, + sym_string_content = 105, + sym_raw_string = 106, + sym_ansi_c_string = 107, + aux_sym_number_token1 = 108, + aux_sym_number_token2 = 109, + anon_sym_AT = 110, + anon_sym_POUND = 111, + anon_sym__ = 112, + anon_sym_DOLLAR_LBRACE = 113, + anon_sym_RBRACE3 = 114, + anon_sym_BANG2 = 115, + anon_sym_AT2 = 116, + anon_sym_STAR2 = 117, + anon_sym_POUND2 = 118, + anon_sym_EQ2 = 119, + anon_sym_COLON_EQ = 120, + anon_sym_DASH3 = 121, + anon_sym_COLON_DASH = 122, + anon_sym_PLUS3 = 123, + anon_sym_COLON_PLUS = 124, + anon_sym_QMARK2 = 125, + anon_sym_COLON_QMARK = 126, + anon_sym_PERCENT_PERCENT = 127, + aux_sym_expansion_regex_token1 = 128, + anon_sym_SLASH_SLASH = 129, + anon_sym_SLASH_POUND = 130, + anon_sym_SLASH_PERCENT = 131, + anon_sym_COMMA_COMMA = 132, + anon_sym_CARET_CARET = 133, + anon_sym_U = 134, + anon_sym_u = 135, + anon_sym_L = 136, + anon_sym_Q = 137, + anon_sym_E = 138, + anon_sym_P = 139, + anon_sym_A = 140, + anon_sym_K = 141, + anon_sym_a = 142, + anon_sym_k = 143, + anon_sym_DOLLAR_LPAREN = 144, + anon_sym_BQUOTE = 145, + anon_sym_DOLLAR_BQUOTE = 146, + anon_sym_LT_LPAREN = 147, + anon_sym_GT_LPAREN = 148, + sym_comment = 149, + sym_comment_word = 150, + anon_sym_LT_DOT_DOT_DOT = 151, + anon_sym_DOT_DOT_DOT_GT = 152, + sym_semgrep_named_ellipsis = 153, + sym_semgrep_metavariable = 154, + sym_semgrep_metavar_eq = 155, + sym_semgrep_metavar_pluseq = 156, + sym_heredoc_start = 157, + sym_simple_heredoc_body_ = 158, + sym_heredoc_body_beginning = 159, + sym_heredoc_content = 160, + sym_heredoc_end = 161, + sym_file_descriptor = 162, + sym_empty_value = 163, + sym_concat = 164, + sym_variable_name = 165, + sym_test_operator = 166, + sym_regex = 167, + sym_regex_no_slash = 168, + sym_regex_no_space = 169, + sym_expansion_word = 170, + sym_extglob_pattern = 171, + sym_bare_dollar = 172, + sym_brace_start = 173, + sym_immediate_double_hash = 174, + sym_external_expansion_sym_hash = 175, + sym_external_expansion_sym_bang = 176, + sym_external_expansion_sym_equal = 177, + sym_error_recovery = 178, + sym_program = 179, + sym_statements = 180, + sym_statement_not_pipeline = 181, + sym_redirected_statement = 182, + sym_for_statement = 183, + sym_c_style_for_statement = 184, + sym_for_body = 185, + sym_c_expression = 186, + sym_c_expression_not_assignment = 187, + sym_c_variable_assignment = 188, + sym_c_unary_expression = 189, + sym_c_binary_expression = 190, + sym_c_postfix_expression = 191, + sym_c_parenthesized_expression = 192, + sym_while_statement = 193, + sym_do_group = 194, + sym_if_statement = 195, + sym_elif_clause = 196, + sym_else_clause = 197, + sym_case_statement = 198, + sym_case_item = 199, + sym_last_case_item = 200, + sym_function_definition = 201, + sym_compound_statement = 202, + sym_subshell = 203, + sym_pipeline = 204, + sym_list = 205, + sym_negated_command = 206, + sym_test_command = 207, + sym_test_command_binary_expression = 208, + sym_declaration_command = 209, + sym_unset_command = 210, + sym_command = 211, + sym_command_name = 212, + sym_variable_assignment = 213, + sym_variable_assignments = 214, + sym_subscript = 215, + sym_file_redirect = 216, + sym_heredoc_redirect = 217, + sym_heredoc_pipeline = 218, + sym_heredoc_expression = 219, + sym_heredoc_command = 220, + sym_heredoc_body = 221, + sym_heredoc_body_ = 222, + sym_simple_heredoc_body = 223, + sym_herestring_redirect = 224, + sym_expression = 225, + sym_binary_expression = 226, + sym_ternary_expression = 227, + sym_unary_expression = 228, + sym_postfix_expression = 229, + sym_parenthesized_expression = 230, + sym_arithmetic_expansion = 231, + sym_brace_expression = 232, + sym_arithmetic_expression = 233, + sym_arithmetic_literal = 234, + sym_arithmetic_binary_expression = 235, + sym_arithmetic_ternary_expression = 236, + sym_arithmetic_unary_expression = 237, + sym_arithmetic_postfix_expression = 238, + sym_arithmetic_parenthesized_expression = 239, + sym_concatenation = 240, + sym_string = 241, + sym_translated_string = 242, + sym_array = 243, + sym_number = 244, + sym_simple_expansion = 245, + sym_expansion = 246, + sym_expansion_body = 247, + sym_expansion_expression = 248, + sym_expansion_regex = 249, + sym_expansion_regex_replacement = 250, + sym_expansion_regex_removal = 251, + sym_expansion_max_length = 252, + sym_expansion_max_length_expression = 253, + sym_expansion_max_length_binary_expression = 254, + sym_expansion_operator = 255, + sym_concatenation_in_expansion = 256, + sym_command_substitution = 257, + sym_process_substitution = 258, + sym_extglob_blob = 259, + sym_c_terminator = 260, + sym_orig_simple_variable_name = 261, + sym_semgrep_deep_expression = 262, + sym_extended_word = 263, + aux_sym_statements_repeat1 = 264, + aux_sym_redirected_statement_repeat1 = 265, + aux_sym_redirected_statement_repeat2 = 266, + aux_sym_for_statement_repeat1 = 267, + aux_sym_for_statement_repeat2 = 268, + aux_sym_for_body_repeat1 = 269, + aux_sym_if_statement_repeat1 = 270, + aux_sym_case_statement_repeat1 = 271, + aux_sym_case_item_repeat1 = 272, + aux_sym_compound_statement_repeat1 = 273, + aux_sym_pipeline_repeat1 = 274, + aux_sym_declaration_command_repeat1 = 275, + aux_sym_unset_command_repeat1 = 276, + aux_sym_command_repeat1 = 277, + aux_sym_command_repeat2 = 278, + aux_sym_variable_assignments_repeat1 = 279, + aux_sym_heredoc_command_repeat1 = 280, + aux_sym_heredoc_body__repeat1 = 281, + aux_sym_arithmetic_expansion_repeat1 = 282, + aux_sym_concatenation_repeat1 = 283, + aux_sym_string_repeat1 = 284, + aux_sym_expansion_body_repeat1 = 285, + aux_sym_expansion_regex_repeat1 = 286, + aux_sym_concatenation_in_expansion_repeat1 = 287, }; static const char * const ts_symbol_names[] = { [ts_builtin_sym_end] = "end", [sym_word] = "word", - [anon_sym_LF] = "\n", [anon_sym_SEMI] = ";", [anon_sym_SEMI_SEMI] = ";;", + [aux_sym_statements_token1] = "pat_1d78758", [anon_sym_AMP] = "&", [anon_sym_for] = "for", [anon_sym_select] = "select", - [aux_sym_for_statement_token1] = "for_statement_token1", + [aux_sym_for_statement_token1] = "pat_42e353e", [anon_sym_in] = "in", [anon_sym_LPAREN_LPAREN] = "((", [anon_sym_RPAREN_RPAREN] = "))", + [anon_sym_COMMA] = ",", + [aux_sym_c_expression_not_assignment_token1] = "pat_2b6adbc", + [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_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_PIPE_PIPE] = "||", + [anon_sym_DASHo] = "-o", + [anon_sym_AMP_AMP] = "&&", + [anon_sym_DASHa] = "-a", + [anon_sym_PIPE] = "|", + [anon_sym_CARET] = "^", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_LT] = "<", + [anon_sym_GT] = ">", + [anon_sym_LT_EQ] = "<=", + [anon_sym_GT_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_LPAREN] = "(", + [anon_sym_RPAREN] = ")", [anon_sym_while] = "while", + [anon_sym_until] = "until", [anon_sym_do] = "do", [anon_sym_done] = "done", [anon_sym_if] = "if", @@ -221,17 +380,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_else] = "else", [anon_sym_case] = "case", [anon_sym_esac] = "esac", - [anon_sym_PIPE] = "|", - [anon_sym_RPAREN] = ")", [anon_sym_SEMI_AMP] = ";&", [anon_sym_SEMI_SEMI_AMP] = ";;&", [anon_sym_function] = "function", - [anon_sym_LPAREN] = "(", [anon_sym_LBRACE] = "{", - [anon_sym_RBRACE] = "}", + [anon_sym_RBRACE] = "tok_prec_n1_rcurl", [anon_sym_PIPE_AMP] = "|&", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", [anon_sym_BANG] = "!", [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", @@ -245,52 +399,77 @@ static const char * const ts_symbol_names[] = { [anon_sym_unset] = "unset", [anon_sym_unsetenv] = "unsetenv", [anon_sym_EQ_TILDE] = "=~", - [anon_sym_EQ_EQ] = "==", - [anon_sym_EQ] = "=", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_GT_GT] = ">>", [anon_sym_AMP_GT] = "&>", [anon_sym_AMP_GT_GT] = "&>>", [anon_sym_LT_AMP] = "<&", [anon_sym_GT_AMP] = ">&", [anon_sym_GT_PIPE] = ">|", - [anon_sym_LT_LT] = "<<", + [anon_sym_LT_AMP_DASH] = "<&-", + [anon_sym_GT_AMP_DASH] = ">&-", [anon_sym_LT_LT_DASH] = "<<-", [anon_sym_LT_LT_LT] = "<<<", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", [anon_sym_QMARK] = "\?", [anon_sym_COLON] = ":", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", + [anon_sym_PLUS_PLUS2] = "tok_prec_p1_plusplus", + [anon_sym_DASH_DASH2] = "tok_prec_p1_dashdash", + [anon_sym_DASH2] = "tok_prec_p1_dash", + [anon_sym_PLUS2] = "tok_prec_p1_plus", + [anon_sym_TILDE] = "tok_prec_p1_tilde", + [anon_sym_DOLLAR_LPAREN_LPAREN] = "$((", + [anon_sym_DOLLAR_LBRACK] = "$[", + [aux_sym_brace_expression_token1] = "imm_tok_pat_217c202", + [anon_sym_DOT_DOT] = "imm_tok_dotdot", + [anon_sym_RBRACE2] = "imm_tok_rcurl", + [aux_sym_concatenation_token1] = "pat_a883a20", [anon_sym_DOLLAR] = "$", [sym_special_character] = "special_character", [anon_sym_DQUOTE] = "\"", [sym_string_content] = "string_content", [sym_raw_string] = "raw_string", - [sym_ansii_c_string] = "ansii_c_string", - [anon_sym_STAR] = "*", + [sym_ansi_c_string] = "ansi_c_string", + [aux_sym_number_token1] = "pat_421f39f", + [aux_sym_number_token2] = "pat_b978cc7", [anon_sym_AT] = "@", - [anon_sym_0] = "0", - [anon_sym__] = "_", [anon_sym_POUND] = "#", + [anon_sym__] = "_", [anon_sym_DOLLAR_LBRACE] = "${", - [anon_sym_SLASH] = "/", - [anon_sym_COLON_QMARK] = ":\?", - [anon_sym_COLON_DASH] = ":-", - [anon_sym_PERCENT] = "%", + [anon_sym_RBRACE3] = "}", + [anon_sym_BANG2] = "imm_tok_bang", + [anon_sym_AT2] = "imm_tok_at", + [anon_sym_STAR2] = "imm_tok_star", + [anon_sym_POUND2] = "imm_tok_hash", + [anon_sym_EQ2] = "imm_tok_eq", + [anon_sym_COLON_EQ] = "imm_tok_coloneq", + [anon_sym_DASH3] = "imm_tok_dash", + [anon_sym_COLON_DASH] = "imm_tok_colondash", + [anon_sym_PLUS3] = "imm_tok_plus", + [anon_sym_COLON_PLUS] = "imm_tok_colonplus", + [anon_sym_QMARK2] = "imm_tok_qmark", + [anon_sym_COLON_QMARK] = "imm_tok_colonqmark", + [anon_sym_PERCENT_PERCENT] = "%%", + [aux_sym_expansion_regex_token1] = "pat_3d340f6", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_SLASH_POUND] = "/#", + [anon_sym_SLASH_PERCENT] = "/%", + [anon_sym_COMMA_COMMA] = ",,", + [anon_sym_CARET_CARET] = "^^", + [anon_sym_U] = "imm_tok_u", + [anon_sym_u] = "imm_tok_u_", + [anon_sym_L] = "imm_tok_l", + [anon_sym_Q] = "imm_tok_q", + [anon_sym_E] = "imm_tok_e", + [anon_sym_P] = "imm_tok_p", + [anon_sym_A] = "imm_tok_a", + [anon_sym_K] = "imm_tok_k", + [anon_sym_a] = "imm_tok_a_", + [anon_sym_k] = "imm_tok_k_", [anon_sym_DOLLAR_LPAREN] = "$(", [anon_sym_BQUOTE] = "`", + [anon_sym_DOLLAR_BQUOTE] = "$`", [anon_sym_LT_LPAREN] = "<(", [anon_sym_GT_LPAREN] = ">(", [sym_comment] = "comment", - [sym_test_operator] = "test_operator", + [sym_comment_word] = "comment_word", [anon_sym_LT_DOT_DOT_DOT] = "<...", [anon_sym_DOT_DOT_DOT_GT] = "...>", [sym_semgrep_named_ellipsis] = "semgrep_named_ellipsis", @@ -298,21 +477,41 @@ static const char * const ts_symbol_names[] = { [sym_semgrep_metavar_eq] = "semgrep_metavar_eq", [sym_semgrep_metavar_pluseq] = "semgrep_metavar_pluseq", [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_content] = "heredoc_content", + [sym_heredoc_end] = "heredoc_end", [sym_file_descriptor] = "file_descriptor", [sym_empty_value] = "empty_value", [sym_concat] = "concat", [sym_variable_name] = "variable_name", + [sym_test_operator] = "test_operator", [sym_regex] = "regex", + [sym_regex_no_slash] = "regex_no_slash", + [sym_regex_no_space] = "regex_no_space", + [sym_expansion_word] = "expansion_word", + [sym_extglob_pattern] = "extglob_pattern", + [sym_bare_dollar] = "bare_dollar", + [sym_brace_start] = "brace_start", + [sym_immediate_double_hash] = "immediate_double_hash", + [sym_external_expansion_sym_hash] = "external_expansion_sym_hash", + [sym_external_expansion_sym_bang] = "external_expansion_sym_bang", + [sym_external_expansion_sym_equal] = "external_expansion_sym_equal", + [sym_error_recovery] = "error_recovery", [sym_program] = "program", [sym_statements] = "statements", - [sym_terminated_statement] = "terminated_statement", + [sym_statement_not_pipeline] = "statement_not_pipeline", [sym_redirected_statement] = "redirected_statement", [sym_for_statement] = "for_statement", [sym_c_style_for_statement] = "c_style_for_statement", + [sym_for_body] = "for_body", + [sym_c_expression] = "c_expression", + [sym_c_expression_not_assignment] = "c_expression_not_assignment", + [sym_c_variable_assignment] = "c_variable_assignment", + [sym_c_unary_expression] = "c_unary_expression", + [sym_c_binary_expression] = "c_binary_expression", + [sym_c_postfix_expression] = "c_postfix_expression", + [sym_c_parenthesized_expression] = "c_parenthesized_expression", [sym_while_statement] = "while_statement", [sym_do_group] = "do_group", [sym_if_statement] = "if_statement", @@ -328,15 +527,22 @@ static const char * const ts_symbol_names[] = { [sym_list] = "list", [sym_negated_command] = "negated_command", [sym_test_command] = "test_command", + [sym_test_command_binary_expression] = "test_command_binary_expression", [sym_declaration_command] = "declaration_command", [sym_unset_command] = "unset_command", [sym_command] = "command", [sym_command_name] = "command_name", [sym_variable_assignment] = "variable_assignment", + [sym_variable_assignments] = "variable_assignments", [sym_subscript] = "subscript", [sym_file_redirect] = "file_redirect", [sym_heredoc_redirect] = "heredoc_redirect", + [sym_heredoc_pipeline] = "heredoc_pipeline", + [sym_heredoc_expression] = "heredoc_expression", + [sym_heredoc_command] = "heredoc_command", [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", @@ -344,42 +550,71 @@ static const char * const ts_symbol_names[] = { [sym_unary_expression] = "unary_expression", [sym_postfix_expression] = "postfix_expression", [sym_parenthesized_expression] = "parenthesized_expression", + [sym_arithmetic_expansion] = "arithmetic_expansion", + [sym_brace_expression] = "brace_expression", + [sym_arithmetic_expression] = "arithmetic_expression", + [sym_arithmetic_literal] = "arithmetic_literal", + [sym_arithmetic_binary_expression] = "arithmetic_binary_expression", + [sym_arithmetic_ternary_expression] = "arithmetic_ternary_expression", + [sym_arithmetic_unary_expression] = "arithmetic_unary_expression", + [sym_arithmetic_postfix_expression] = "arithmetic_postfix_expression", + [sym_arithmetic_parenthesized_expression] = "arithmetic_parenthesized_expression", [sym_concatenation] = "concatenation", [sym_string] = "string", + [sym_translated_string] = "translated_string", [sym_array] = "array", + [sym_number] = "number", [sym_simple_expansion] = "simple_expansion", - [sym_string_expansion] = "string_expansion", [sym_expansion] = "expansion", + [sym_expansion_body] = "expansion_body", + [sym_expansion_expression] = "expansion_expression", + [sym_expansion_regex] = "expansion_regex", + [sym_expansion_regex_replacement] = "expansion_regex_replacement", + [sym_expansion_regex_removal] = "expansion_regex_removal", + [sym_expansion_max_length] = "expansion_max_length", + [sym_expansion_max_length_expression] = "expansion_max_length_expression", + [sym_expansion_max_length_binary_expression] = "expansion_max_length_binary_expression", + [sym_expansion_operator] = "expansion_operator", + [sym_concatenation_in_expansion] = "concatenation_in_expansion", [sym_command_substitution] = "command_substitution", [sym_process_substitution] = "process_substitution", + [sym_extglob_blob] = "extglob_blob", + [sym_c_terminator] = "c_terminator", [sym_orig_simple_variable_name] = "orig_simple_variable_name", [sym_semgrep_deep_expression] = "semgrep_deep_expression", [sym_extended_word] = "extended_word", [aux_sym_statements_repeat1] = "statements_repeat1", [aux_sym_redirected_statement_repeat1] = "redirected_statement_repeat1", + [aux_sym_redirected_statement_repeat2] = "redirected_statement_repeat2", [aux_sym_for_statement_repeat1] = "for_statement_repeat1", [aux_sym_for_statement_repeat2] = "for_statement_repeat2", + [aux_sym_for_body_repeat1] = "for_body_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", [aux_sym_case_item_repeat1] = "case_item_repeat1", + [aux_sym_compound_statement_repeat1] = "compound_statement_repeat1", + [aux_sym_pipeline_repeat1] = "pipeline_repeat1", [aux_sym_declaration_command_repeat1] = "declaration_command_repeat1", [aux_sym_unset_command_repeat1] = "unset_command_repeat1", [aux_sym_command_repeat1] = "command_repeat1", [aux_sym_command_repeat2] = "command_repeat2", - [aux_sym_heredoc_body_repeat1] = "heredoc_body_repeat1", + [aux_sym_variable_assignments_repeat1] = "variable_assignments_repeat1", + [aux_sym_heredoc_command_repeat1] = "heredoc_command_repeat1", + [aux_sym_heredoc_body__repeat1] = "heredoc_body__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", - [alias_sym_pat_42e353e] = "pat_42e353e", - [alias_sym_tok_prec_p1_slash] = "tok_prec_p1_slash", + [aux_sym_expansion_body_repeat1] = "expansion_body_repeat1", + [aux_sym_expansion_regex_repeat1] = "expansion_regex_repeat1", + [aux_sym_concatenation_in_expansion_repeat1] = "concatenation_in_expansion_repeat1", }; 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_SEMI] = anon_sym_SEMI, [anon_sym_SEMI_SEMI] = anon_sym_SEMI_SEMI, + [aux_sym_statements_token1] = aux_sym_statements_token1, [anon_sym_AMP] = anon_sym_AMP, [anon_sym_for] = anon_sym_for, [anon_sym_select] = anon_sym_select, @@ -387,7 +622,46 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_in] = anon_sym_in, [anon_sym_LPAREN_LPAREN] = anon_sym_LPAREN_LPAREN, [anon_sym_RPAREN_RPAREN] = anon_sym_RPAREN_RPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [aux_sym_c_expression_not_assignment_token1] = aux_sym_c_expression_not_assignment_token1, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, + [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, + [anon_sym_DASHo] = anon_sym_DASHo, + [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, + [anon_sym_DASHa] = anon_sym_DASHa, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_while] = anon_sym_while, + [anon_sym_until] = anon_sym_until, [anon_sym_do] = anon_sym_do, [anon_sym_done] = anon_sym_done, [anon_sym_if] = anon_sym_if, @@ -397,17 +671,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_else] = anon_sym_else, [anon_sym_case] = anon_sym_case, [anon_sym_esac] = anon_sym_esac, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_RPAREN] = anon_sym_RPAREN, [anon_sym_SEMI_AMP] = anon_sym_SEMI_AMP, [anon_sym_SEMI_SEMI_AMP] = anon_sym_SEMI_SEMI_AMP, [anon_sym_function] = anon_sym_function, - [anon_sym_LPAREN] = anon_sym_LPAREN, [anon_sym_LBRACE] = anon_sym_LBRACE, [anon_sym_RBRACE] = anon_sym_RBRACE, [anon_sym_PIPE_AMP] = anon_sym_PIPE_AMP, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, [anon_sym_BANG] = anon_sym_BANG, [anon_sym_LBRACK] = anon_sym_LBRACK, [anon_sym_RBRACK] = anon_sym_RBRACK, @@ -421,52 +690,77 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_unset] = anon_sym_unset, [anon_sym_unsetenv] = anon_sym_unsetenv, [anon_sym_EQ_TILDE] = anon_sym_EQ_TILDE, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_GT_GT] = anon_sym_GT_GT, [anon_sym_AMP_GT] = anon_sym_AMP_GT, [anon_sym_AMP_GT_GT] = anon_sym_AMP_GT_GT, [anon_sym_LT_AMP] = anon_sym_LT_AMP, [anon_sym_GT_AMP] = anon_sym_GT_AMP, [anon_sym_GT_PIPE] = anon_sym_GT_PIPE, - [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_LT_AMP_DASH] = anon_sym_LT_AMP_DASH, + [anon_sym_GT_AMP_DASH] = anon_sym_GT_AMP_DASH, [anon_sym_LT_LT_DASH] = anon_sym_LT_LT_DASH, [anon_sym_LT_LT_LT] = anon_sym_LT_LT_LT, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, [anon_sym_QMARK] = anon_sym_QMARK, [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, + [anon_sym_PLUS_PLUS2] = anon_sym_PLUS_PLUS2, + [anon_sym_DASH_DASH2] = anon_sym_DASH_DASH2, + [anon_sym_DASH2] = anon_sym_DASH2, + [anon_sym_PLUS2] = anon_sym_PLUS2, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_DOLLAR_LPAREN_LPAREN] = anon_sym_DOLLAR_LPAREN_LPAREN, + [anon_sym_DOLLAR_LBRACK] = anon_sym_DOLLAR_LBRACK, + [aux_sym_brace_expression_token1] = aux_sym_brace_expression_token1, + [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, + [anon_sym_RBRACE2] = anon_sym_RBRACE2, + [aux_sym_concatenation_token1] = aux_sym_concatenation_token1, [anon_sym_DOLLAR] = anon_sym_DOLLAR, [sym_special_character] = sym_special_character, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [sym_string_content] = sym_string_content, [sym_raw_string] = sym_raw_string, - [sym_ansii_c_string] = sym_ansii_c_string, - [anon_sym_STAR] = anon_sym_STAR, + [sym_ansi_c_string] = sym_ansi_c_string, + [aux_sym_number_token1] = aux_sym_number_token1, + [aux_sym_number_token2] = aux_sym_number_token2, [anon_sym_AT] = anon_sym_AT, - [anon_sym_0] = anon_sym_0, - [anon_sym__] = anon_sym__, [anon_sym_POUND] = anon_sym_POUND, + [anon_sym__] = anon_sym__, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, + [anon_sym_RBRACE3] = anon_sym_RBRACE, + [anon_sym_BANG2] = anon_sym_BANG2, + [anon_sym_AT2] = anon_sym_AT2, + [anon_sym_STAR2] = anon_sym_STAR2, + [anon_sym_POUND2] = anon_sym_POUND2, + [anon_sym_EQ2] = anon_sym_EQ2, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_DASH3] = anon_sym_DASH3, [anon_sym_COLON_DASH] = anon_sym_COLON_DASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_PLUS3] = anon_sym_PLUS3, + [anon_sym_COLON_PLUS] = anon_sym_COLON_PLUS, + [anon_sym_QMARK2] = anon_sym_QMARK2, + [anon_sym_COLON_QMARK] = anon_sym_COLON_QMARK, + [anon_sym_PERCENT_PERCENT] = anon_sym_PERCENT_PERCENT, + [aux_sym_expansion_regex_token1] = aux_sym_expansion_regex_token1, + [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_CARET_CARET] = anon_sym_CARET_CARET, + [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_DOLLAR_LPAREN] = anon_sym_DOLLAR_LPAREN, [anon_sym_BQUOTE] = anon_sym_BQUOTE, + [anon_sym_DOLLAR_BQUOTE] = anon_sym_DOLLAR_BQUOTE, [anon_sym_LT_LPAREN] = anon_sym_LT_LPAREN, [anon_sym_GT_LPAREN] = anon_sym_GT_LPAREN, [sym_comment] = sym_comment, - [sym_test_operator] = sym_test_operator, + [sym_comment_word] = sym_comment_word, [anon_sym_LT_DOT_DOT_DOT] = anon_sym_LT_DOT_DOT_DOT, [anon_sym_DOT_DOT_DOT_GT] = anon_sym_DOT_DOT_DOT_GT, [sym_semgrep_named_ellipsis] = sym_semgrep_named_ellipsis, @@ -474,21 +768,41 @@ static const TSSymbol ts_symbol_map[] = { [sym_semgrep_metavar_eq] = sym_semgrep_metavar_eq, [sym_semgrep_metavar_pluseq] = sym_semgrep_metavar_pluseq, [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_content] = sym_heredoc_content, + [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_test_operator] = sym_test_operator, [sym_regex] = sym_regex, + [sym_regex_no_slash] = sym_regex_no_slash, + [sym_regex_no_space] = sym_regex_no_space, + [sym_expansion_word] = sym_expansion_word, + [sym_extglob_pattern] = sym_extglob_pattern, + [sym_bare_dollar] = sym_bare_dollar, + [sym_brace_start] = sym_brace_start, + [sym_immediate_double_hash] = sym_immediate_double_hash, + [sym_external_expansion_sym_hash] = sym_external_expansion_sym_hash, + [sym_external_expansion_sym_bang] = sym_external_expansion_sym_bang, + [sym_external_expansion_sym_equal] = sym_external_expansion_sym_equal, + [sym_error_recovery] = sym_error_recovery, [sym_program] = sym_program, [sym_statements] = sym_statements, - [sym_terminated_statement] = sym_terminated_statement, + [sym_statement_not_pipeline] = sym_statement_not_pipeline, [sym_redirected_statement] = sym_redirected_statement, [sym_for_statement] = sym_for_statement, [sym_c_style_for_statement] = sym_c_style_for_statement, + [sym_for_body] = sym_for_body, + [sym_c_expression] = sym_c_expression, + [sym_c_expression_not_assignment] = sym_c_expression_not_assignment, + [sym_c_variable_assignment] = sym_c_variable_assignment, + [sym_c_unary_expression] = sym_c_unary_expression, + [sym_c_binary_expression] = sym_c_binary_expression, + [sym_c_postfix_expression] = sym_c_postfix_expression, + [sym_c_parenthesized_expression] = sym_c_parenthesized_expression, [sym_while_statement] = sym_while_statement, [sym_do_group] = sym_do_group, [sym_if_statement] = sym_if_statement, @@ -504,15 +818,22 @@ static const TSSymbol ts_symbol_map[] = { [sym_list] = sym_list, [sym_negated_command] = sym_negated_command, [sym_test_command] = sym_test_command, + [sym_test_command_binary_expression] = sym_test_command_binary_expression, [sym_declaration_command] = sym_declaration_command, [sym_unset_command] = sym_unset_command, [sym_command] = sym_command, [sym_command_name] = sym_command_name, [sym_variable_assignment] = sym_variable_assignment, + [sym_variable_assignments] = sym_variable_assignments, [sym_subscript] = sym_subscript, [sym_file_redirect] = sym_file_redirect, [sym_heredoc_redirect] = sym_heredoc_redirect, + [sym_heredoc_pipeline] = sym_heredoc_pipeline, + [sym_heredoc_expression] = sym_heredoc_expression, + [sym_heredoc_command] = sym_heredoc_command, [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, @@ -520,34 +841,63 @@ static const TSSymbol ts_symbol_map[] = { [sym_unary_expression] = sym_unary_expression, [sym_postfix_expression] = sym_postfix_expression, [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_arithmetic_expansion] = sym_arithmetic_expansion, + [sym_brace_expression] = sym_brace_expression, + [sym_arithmetic_expression] = sym_arithmetic_expression, + [sym_arithmetic_literal] = sym_arithmetic_literal, + [sym_arithmetic_binary_expression] = sym_arithmetic_binary_expression, + [sym_arithmetic_ternary_expression] = sym_arithmetic_ternary_expression, + [sym_arithmetic_unary_expression] = sym_arithmetic_unary_expression, + [sym_arithmetic_postfix_expression] = sym_arithmetic_postfix_expression, + [sym_arithmetic_parenthesized_expression] = sym_arithmetic_parenthesized_expression, [sym_concatenation] = sym_concatenation, [sym_string] = sym_string, + [sym_translated_string] = sym_translated_string, [sym_array] = sym_array, + [sym_number] = sym_number, [sym_simple_expansion] = sym_simple_expansion, - [sym_string_expansion] = sym_string_expansion, [sym_expansion] = sym_expansion, + [sym_expansion_body] = sym_expansion_body, + [sym_expansion_expression] = sym_expansion_expression, + [sym_expansion_regex] = sym_expansion_regex, + [sym_expansion_regex_replacement] = sym_expansion_regex_replacement, + [sym_expansion_regex_removal] = sym_expansion_regex_removal, + [sym_expansion_max_length] = sym_expansion_max_length, + [sym_expansion_max_length_expression] = sym_expansion_max_length_expression, + [sym_expansion_max_length_binary_expression] = sym_expansion_max_length_binary_expression, + [sym_expansion_operator] = sym_expansion_operator, + [sym_concatenation_in_expansion] = sym_concatenation_in_expansion, [sym_command_substitution] = sym_command_substitution, [sym_process_substitution] = sym_process_substitution, + [sym_extglob_blob] = sym_extglob_blob, + [sym_c_terminator] = sym_c_terminator, [sym_orig_simple_variable_name] = sym_orig_simple_variable_name, [sym_semgrep_deep_expression] = sym_semgrep_deep_expression, [sym_extended_word] = sym_extended_word, [aux_sym_statements_repeat1] = aux_sym_statements_repeat1, [aux_sym_redirected_statement_repeat1] = aux_sym_redirected_statement_repeat1, + [aux_sym_redirected_statement_repeat2] = aux_sym_redirected_statement_repeat2, [aux_sym_for_statement_repeat1] = aux_sym_for_statement_repeat1, [aux_sym_for_statement_repeat2] = aux_sym_for_statement_repeat2, + [aux_sym_for_body_repeat1] = aux_sym_for_body_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, [aux_sym_case_item_repeat1] = aux_sym_case_item_repeat1, + [aux_sym_compound_statement_repeat1] = aux_sym_compound_statement_repeat1, + [aux_sym_pipeline_repeat1] = aux_sym_pipeline_repeat1, [aux_sym_declaration_command_repeat1] = aux_sym_declaration_command_repeat1, [aux_sym_unset_command_repeat1] = aux_sym_unset_command_repeat1, [aux_sym_command_repeat1] = aux_sym_command_repeat1, [aux_sym_command_repeat2] = aux_sym_command_repeat2, - [aux_sym_heredoc_body_repeat1] = aux_sym_heredoc_body_repeat1, + [aux_sym_variable_assignments_repeat1] = aux_sym_variable_assignments_repeat1, + [aux_sym_heredoc_command_repeat1] = aux_sym_heredoc_command_repeat1, + [aux_sym_heredoc_body__repeat1] = aux_sym_heredoc_body__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, - [alias_sym_pat_42e353e] = alias_sym_pat_42e353e, - [alias_sym_tok_prec_p1_slash] = alias_sym_tok_prec_p1_slash, + [aux_sym_expansion_body_repeat1] = aux_sym_expansion_body_repeat1, + [aux_sym_expansion_regex_repeat1] = aux_sym_expansion_regex_repeat1, + [aux_sym_concatenation_in_expansion_repeat1] = aux_sym_concatenation_in_expansion_repeat1, }; static const TSSymbolMetadata ts_symbol_metadata[] = { @@ -559,10 +909,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, [anon_sym_SEMI] = { .visible = true, .named = false, @@ -571,6 +917,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_statements_token1] = { + .visible = true, + .named = true, + }, [anon_sym_AMP] = { .visible = true, .named = false, @@ -584,8 +934,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .named = false, }, [aux_sym_for_statement_token1] = { - .visible = false, - .named = false, + .visible = true, + .named = true, }, [anon_sym_in] = { .visible = true, @@ -599,43 +949,83 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_while] = { + [anon_sym_COMMA] = { .visible = true, .named = false, }, - [anon_sym_do] = { + [aux_sym_c_expression_not_assignment_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_EQ] = { .visible = true, .named = false, }, - [anon_sym_done] = { + [anon_sym_PLUS_PLUS] = { .visible = true, .named = false, }, - [anon_sym_if] = { + [anon_sym_DASH_DASH] = { .visible = true, .named = false, }, - [anon_sym_then] = { + [anon_sym_PLUS_EQ] = { .visible = true, .named = false, }, - [anon_sym_fi] = { + [anon_sym_DASH_EQ] = { .visible = true, .named = false, }, - [anon_sym_elif] = { + [anon_sym_STAR_EQ] = { .visible = true, .named = false, }, - [anon_sym_else] = { + [anon_sym_SLASH_EQ] = { .visible = true, .named = false, }, - [anon_sym_case] = { + [anon_sym_PERCENT_EQ] = { .visible = true, .named = false, }, - [anon_sym_esac] = { + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_DASHo] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_DASHa] = { .visible = true, .named = false, }, @@ -643,19 +1033,63 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_RPAREN] = { + [anon_sym_CARET] = { .visible = true, .named = false, }, - [anon_sym_SEMI_AMP] = { + [anon_sym_EQ_EQ] = { .visible = true, .named = false, }, - [anon_sym_SEMI_SEMI_AMP] = { + [anon_sym_BANG_EQ] = { .visible = true, .named = false, }, - [anon_sym_function] = { + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { .visible = true, .named = false, }, @@ -663,155 +1097,163 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE] = { + [anon_sym_RPAREN] = { .visible = true, .named = false, }, - [anon_sym_RBRACE] = { + [anon_sym_while] = { .visible = true, .named = false, }, - [anon_sym_PIPE_AMP] = { + [anon_sym_until] = { .visible = true, .named = false, }, - [anon_sym_AMP_AMP] = { + [anon_sym_do] = { .visible = true, .named = false, }, - [anon_sym_PIPE_PIPE] = { + [anon_sym_done] = { .visible = true, .named = false, }, - [anon_sym_BANG] = { + [anon_sym_if] = { .visible = true, .named = false, }, - [anon_sym_LBRACK] = { + [anon_sym_then] = { .visible = true, .named = false, }, - [anon_sym_RBRACK] = { + [anon_sym_fi] = { .visible = true, .named = false, }, - [anon_sym_LBRACK_LBRACK] = { + [anon_sym_elif] = { .visible = true, .named = false, }, - [anon_sym_RBRACK_RBRACK] = { + [anon_sym_else] = { .visible = true, .named = false, }, - [anon_sym_declare] = { + [anon_sym_case] = { .visible = true, .named = false, }, - [anon_sym_typeset] = { + [anon_sym_esac] = { .visible = true, .named = false, }, - [anon_sym_export] = { + [anon_sym_SEMI_AMP] = { .visible = true, .named = false, }, - [anon_sym_readonly] = { + [anon_sym_SEMI_SEMI_AMP] = { .visible = true, .named = false, }, - [anon_sym_local] = { + [anon_sym_function] = { .visible = true, .named = false, }, - [anon_sym_unset] = { + [anon_sym_LBRACE] = { .visible = true, .named = false, }, - [anon_sym_unsetenv] = { + [anon_sym_RBRACE] = { + .visible = true, + .named = true, + }, + [anon_sym_PIPE_AMP] = { .visible = true, .named = false, }, - [anon_sym_EQ_TILDE] = { + [anon_sym_BANG] = { .visible = true, .named = false, }, - [anon_sym_EQ_EQ] = { + [anon_sym_LBRACK] = { .visible = true, .named = false, }, - [anon_sym_EQ] = { + [anon_sym_RBRACK] = { .visible = true, .named = false, }, - [anon_sym_PLUS_EQ] = { + [anon_sym_LBRACK_LBRACK] = { .visible = true, .named = false, }, - [anon_sym_LT] = { + [anon_sym_RBRACK_RBRACK] = { .visible = true, .named = false, }, - [anon_sym_GT] = { + [anon_sym_declare] = { .visible = true, .named = false, }, - [anon_sym_GT_GT] = { + [anon_sym_typeset] = { .visible = true, .named = false, }, - [anon_sym_AMP_GT] = { + [anon_sym_export] = { .visible = true, .named = false, }, - [anon_sym_AMP_GT_GT] = { + [anon_sym_readonly] = { .visible = true, .named = false, }, - [anon_sym_LT_AMP] = { + [anon_sym_local] = { .visible = true, .named = false, }, - [anon_sym_GT_AMP] = { + [anon_sym_unset] = { .visible = true, .named = false, }, - [anon_sym_GT_PIPE] = { + [anon_sym_unsetenv] = { .visible = true, .named = false, }, - [anon_sym_LT_LT] = { + [anon_sym_EQ_TILDE] = { .visible = true, .named = false, }, - [anon_sym_LT_LT_DASH] = { + [anon_sym_AMP_GT] = { .visible = true, .named = false, }, - [anon_sym_LT_LT_LT] = { + [anon_sym_AMP_GT_GT] = { .visible = true, .named = false, }, - [anon_sym_BANG_EQ] = { + [anon_sym_LT_AMP] = { .visible = true, .named = false, }, - [anon_sym_PLUS] = { + [anon_sym_GT_AMP] = { .visible = true, .named = false, }, - [anon_sym_DASH] = { + [anon_sym_GT_PIPE] = { .visible = true, .named = false, }, - [anon_sym_DASH_EQ] = { + [anon_sym_LT_AMP_DASH] = { .visible = true, .named = false, }, - [anon_sym_LT_EQ] = { + [anon_sym_GT_AMP_DASH] = { .visible = true, .named = false, }, - [anon_sym_GT_EQ] = { + [anon_sym_LT_LT_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_LT] = { .visible = true, .named = false, }, @@ -823,14 +1265,50 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_PLUS_PLUS] = { + [anon_sym_PLUS_PLUS2] = { + .visible = true, + .named = true, + }, + [anon_sym_DASH_DASH2] = { + .visible = true, + .named = true, + }, + [anon_sym_DASH2] = { + .visible = true, + .named = true, + }, + [anon_sym_PLUS2] = { + .visible = true, + .named = true, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = true, + }, + [anon_sym_DOLLAR_LPAREN_LPAREN] = { .visible = true, .named = false, }, - [anon_sym_DASH_DASH] = { + [anon_sym_DOLLAR_LBRACK] = { .visible = true, .named = false, }, + [aux_sym_brace_expression_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_DOT_DOT] = { + .visible = true, + .named = true, + }, + [anon_sym_RBRACE2] = { + .visible = true, + .named = true, + }, + [aux_sym_concatenation_token1] = { + .visible = true, + .named = true, + }, [anon_sym_DOLLAR] = { .visible = true, .named = false, @@ -851,19 +1329,23 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_ansii_c_string] = { + [sym_ansi_c_string] = { .visible = true, .named = true, }, - [anon_sym_STAR] = { + [aux_sym_number_token1] = { .visible = true, - .named = false, + .named = true, + }, + [aux_sym_number_token2] = { + .visible = true, + .named = true, }, [anon_sym_AT] = { .visible = true, .named = false, }, - [anon_sym_0] = { + [anon_sym_POUND] = { .visible = true, .named = false, }, @@ -871,30 +1353,130 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_POUND] = { + [anon_sym_DOLLAR_LBRACE] = { .visible = true, .named = false, }, - [anon_sym_DOLLAR_LBRACE] = { + [anon_sym_RBRACE3] = { .visible = true, .named = false, }, - [anon_sym_SLASH] = { + [anon_sym_BANG2] = { .visible = true, - .named = false, + .named = true, + }, + [anon_sym_AT2] = { + .visible = true, + .named = true, + }, + [anon_sym_STAR2] = { + .visible = true, + .named = true, + }, + [anon_sym_POUND2] = { + .visible = true, + .named = true, + }, + [anon_sym_EQ2] = { + .visible = true, + .named = true, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = true, + }, + [anon_sym_DASH3] = { + .visible = true, + .named = true, + }, + [anon_sym_COLON_DASH] = { + .visible = true, + .named = true, + }, + [anon_sym_PLUS3] = { + .visible = true, + .named = true, + }, + [anon_sym_COLON_PLUS] = { + .visible = true, + .named = true, + }, + [anon_sym_QMARK2] = { + .visible = true, + .named = true, }, [anon_sym_COLON_QMARK] = { + .visible = true, + .named = true, + }, + [anon_sym_PERCENT_PERCENT] = { .visible = true, .named = false, }, - [anon_sym_COLON_DASH] = { + [aux_sym_expansion_regex_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_SLASH_SLASH] = { .visible = true, .named = false, }, - [anon_sym_PERCENT] = { + [anon_sym_SLASH_POUND] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_CARET] = { .visible = true, .named = false, }, + [anon_sym_U] = { + .visible = true, + .named = true, + }, + [anon_sym_u] = { + .visible = true, + .named = true, + }, + [anon_sym_L] = { + .visible = true, + .named = true, + }, + [anon_sym_Q] = { + .visible = true, + .named = true, + }, + [anon_sym_E] = { + .visible = true, + .named = true, + }, + [anon_sym_P] = { + .visible = true, + .named = true, + }, + [anon_sym_A] = { + .visible = true, + .named = true, + }, + [anon_sym_K] = { + .visible = true, + .named = true, + }, + [anon_sym_a] = { + .visible = true, + .named = true, + }, + [anon_sym_k] = { + .visible = true, + .named = true, + }, [anon_sym_DOLLAR_LPAREN] = { .visible = true, .named = false, @@ -903,6 +1485,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_DOLLAR_BQUOTE] = { + .visible = true, + .named = false, + }, [anon_sym_LT_LPAREN] = { .visible = true, .named = false, @@ -915,7 +1501,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_test_operator] = { + [sym_comment_word] = { .visible = true, .named = true, }, @@ -947,7 +1533,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_simple_heredoc_body] = { + [sym_simple_heredoc_body_] = { .visible = true, .named = true, }, @@ -955,11 +1541,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_heredoc_body_middle] = { + [sym_heredoc_content] = { .visible = true, .named = true, }, - [sym_heredoc_body_end] = { + [sym_heredoc_end] = { .visible = true, .named = true, }, @@ -979,10 +1565,58 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_test_operator] = { + .visible = true, + .named = true, + }, [sym_regex] = { .visible = true, .named = true, }, + [sym_regex_no_slash] = { + .visible = true, + .named = true, + }, + [sym_regex_no_space] = { + .visible = true, + .named = true, + }, + [sym_expansion_word] = { + .visible = true, + .named = true, + }, + [sym_extglob_pattern] = { + .visible = true, + .named = true, + }, + [sym_bare_dollar] = { + .visible = true, + .named = true, + }, + [sym_brace_start] = { + .visible = true, + .named = true, + }, + [sym_immediate_double_hash] = { + .visible = true, + .named = true, + }, + [sym_external_expansion_sym_hash] = { + .visible = true, + .named = true, + }, + [sym_external_expansion_sym_bang] = { + .visible = true, + .named = true, + }, + [sym_external_expansion_sym_equal] = { + .visible = true, + .named = true, + }, + [sym_error_recovery] = { + .visible = true, + .named = true, + }, [sym_program] = { .visible = true, .named = true, @@ -991,7 +1625,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_terminated_statement] = { + [sym_statement_not_pipeline] = { .visible = true, .named = true, }, @@ -1007,6 +1641,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_for_body] = { + .visible = true, + .named = true, + }, + [sym_c_expression] = { + .visible = true, + .named = true, + }, + [sym_c_expression_not_assignment] = { + .visible = true, + .named = true, + }, + [sym_c_variable_assignment] = { + .visible = true, + .named = true, + }, + [sym_c_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_c_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_c_postfix_expression] = { + .visible = true, + .named = true, + }, + [sym_c_parenthesized_expression] = { + .visible = true, + .named = true, + }, [sym_while_statement] = { .visible = true, .named = true, @@ -1067,6 +1733,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_test_command_binary_expression] = { + .visible = true, + .named = true, + }, [sym_declaration_command] = { .visible = true, .named = true, @@ -1087,6 +1757,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variable_assignments] = { + .visible = true, + .named = true, + }, [sym_subscript] = { .visible = true, .named = true, @@ -1099,10 +1773,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_heredoc_pipeline] = { + .visible = true, + .named = true, + }, + [sym_heredoc_expression] = { + .visible = true, + .named = true, + }, + [sym_heredoc_command] = { + .visible = true, + .named = true, + }, [sym_heredoc_body] = { .visible = true, .named = true, }, + [sym_heredoc_body_] = { + .visible = true, + .named = true, + }, + [sym_simple_heredoc_body] = { + .visible = true, + .named = true, + }, [sym_herestring_redirect] = { .visible = true, .named = true, @@ -1131,6 +1825,42 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_arithmetic_expansion] = { + .visible = true, + .named = true, + }, + [sym_brace_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_literal] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_ternary_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_unary_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_postfix_expression] = { + .visible = true, + .named = true, + }, + [sym_arithmetic_parenthesized_expression] = { + .visible = true, + .named = true, + }, [sym_concatenation] = { .visible = true, .named = true, @@ -1139,15 +1869,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_translated_string] = { + .visible = true, + .named = true, + }, [sym_array] = { .visible = true, .named = true, }, - [sym_simple_expansion] = { + [sym_number] = { .visible = true, .named = true, }, - [sym_string_expansion] = { + [sym_simple_expansion] = { .visible = true, .named = true, }, @@ -1155,6 +1889,46 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_expansion_body] = { + .visible = true, + .named = true, + }, + [sym_expansion_expression] = { + .visible = true, + .named = true, + }, + [sym_expansion_regex] = { + .visible = true, + .named = true, + }, + [sym_expansion_regex_replacement] = { + .visible = true, + .named = true, + }, + [sym_expansion_regex_removal] = { + .visible = true, + .named = true, + }, + [sym_expansion_max_length] = { + .visible = true, + .named = true, + }, + [sym_expansion_max_length_expression] = { + .visible = true, + .named = true, + }, + [sym_expansion_max_length_binary_expression] = { + .visible = true, + .named = true, + }, + [sym_expansion_operator] = { + .visible = true, + .named = true, + }, + [sym_concatenation_in_expansion] = { + .visible = true, + .named = true, + }, [sym_command_substitution] = { .visible = true, .named = true, @@ -1163,6 +1937,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_extglob_blob] = { + .visible = true, + .named = true, + }, + [sym_c_terminator] = { + .visible = true, + .named = true, + }, [sym_orig_simple_variable_name] = { .visible = true, .named = true, @@ -1183,6 +1965,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_redirected_statement_repeat2] = { + .visible = false, + .named = false, + }, [aux_sym_for_statement_repeat1] = { .visible = false, .named = false, @@ -1191,6 +1977,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_for_body_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_if_statement_repeat1] = { .visible = false, .named = false, @@ -1203,6 +1993,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_compound_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_pipeline_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_declaration_command_repeat1] = { .visible = false, .named = false, @@ -1219,7 +2017,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_heredoc_body_repeat1] = { + [aux_sym_variable_assignments_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_heredoc_command_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_heredoc_body__repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_arithmetic_expansion_repeat1] = { .visible = false, .named = false, }, @@ -1231,17 +2041,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_expansion_repeat1] = { + [aux_sym_expansion_body_repeat1] = { .visible = false, .named = false, }, - [alias_sym_pat_42e353e] = { - .visible = true, - .named = true, + [aux_sym_expansion_regex_repeat1] = { + .visible = false, + .named = false, }, - [alias_sym_tok_prec_p1_slash] = { - .visible = true, - .named = true, + [aux_sym_concatenation_in_expansion_repeat1] = { + .visible = false, + .named = false, }, }; @@ -1290,249 +2100,439 @@ static const char * const ts_field_names[] = { [field_variable] = "variable", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, - [3] = {.index = 1, .length = 1}, - [4] = {.index = 2, .length = 1}, - [5] = {.index = 3, .length = 2}, + [2] = {.index = 1, .length = 1}, + [3] = {.index = 2, .length = 1}, + [4] = {.index = 3, .length = 1}, + [5] = {.index = 4, .length = 1}, [6] = {.index = 5, .length = 1}, - [7] = {.index = 6, .length = 2}, - [8] = {.index = 8, .length = 1}, - [9] = {.index = 9, .length = 2}, - [10] = {.index = 11, .length = 2}, - [11] = {.index = 13, .length = 2}, - [12] = {.index = 15, .length = 2}, - [14] = {.index = 17, .length = 2}, - [15] = {.index = 19, .length = 2}, - [16] = {.index = 21, .length = 2}, + [7] = {.index = 6, .length = 1}, + [8] = {.index = 7, .length = 2}, + [9] = {.index = 9, .length = 1}, + [10] = {.index = 10, .length = 1}, + [11] = {.index = 11, .length = 3}, + [12] = {.index = 14, .length = 2}, + [13] = {.index = 16, .length = 2}, + [14] = {.index = 18, .length = 2}, + [15] = {.index = 20, .length = 2}, + [16] = {.index = 22, .length = 1}, [17] = {.index = 23, .length = 2}, [18] = {.index = 25, .length = 2}, - [19] = {.index = 25, .length = 2}, - [20] = {.index = 27, .length = 3}, + [19] = {.index = 27, .length = 1}, + [20] = {.index = 28, .length = 2}, [21] = {.index = 30, .length = 1}, - [25] = {.index = 31, .length = 2}, - [26] = {.index = 33, .length = 2}, - [29] = {.index = 35, .length = 3}, - [30] = {.index = 38, .length = 1}, - [31] = {.index = 35, .length = 3}, - [32] = {.index = 39, .length = 3}, - [33] = {.index = 42, .length = 1}, - [34] = {.index = 43, .length = 1}, - [35] = {.index = 44, .length = 2}, - [36] = {.index = 46, .length = 2}, - [37] = {.index = 48, .length = 2}, - [38] = {.index = 50, .length = 2}, - [39] = {.index = 52, .length = 2}, - [40] = {.index = 54, .length = 2}, - [41] = {.index = 56, .length = 2}, - [42] = {.index = 58, .length = 2}, - [43] = {.index = 60, .length = 2}, - [44] = {.index = 62, .length = 3}, - [45] = {.index = 65, .length = 2}, - [46] = {.index = 67, .length = 3}, - [47] = {.index = 70, .length = 3}, - [48] = {.index = 73, .length = 2}, - [49] = {.index = 75, .length = 2}, - [50] = {.index = 77, .length = 3}, - [51] = {.index = 80, .length = 3}, - [52] = {.index = 83, .length = 3}, - [53] = {.index = 86, .length = 3}, - [54] = {.index = 89, .length = 3}, - [55] = {.index = 92, .length = 4}, - [56] = {.index = 96, .length = 3}, - [57] = {.index = 99, .length = 3}, - [58] = {.index = 102, .length = 4}, + [22] = {.index = 31, .length = 2}, + [23] = {.index = 33, .length = 4}, + [24] = {.index = 37, .length = 4}, + [25] = {.index = 41, .length = 2}, + [26] = {.index = 43, .length = 2}, + [27] = {.index = 45, .length = 3}, + [28] = {.index = 48, .length = 1}, + [29] = {.index = 49, .length = 3}, + [30] = {.index = 52, .length = 2}, + [31] = {.index = 54, .length = 2}, + [32] = {.index = 56, .length = 2}, + [33] = {.index = 58, .length = 2}, + [34] = {.index = 60, .length = 1}, + [35] = {.index = 61, .length = 1}, + [36] = {.index = 62, .length = 1}, + [37] = {.index = 63, .length = 1}, + [38] = {.index = 64, .length = 1}, + [39] = {.index = 65, .length = 2}, + [40] = {.index = 67, .length = 3}, + [41] = {.index = 70, .length = 2}, + [42] = {.index = 72, .length = 2}, + [43] = {.index = 74, .length = 3}, + [44] = {.index = 77, .length = 1}, + [45] = {.index = 78, .length = 2}, + [46] = {.index = 80, .length = 2}, + [47] = {.index = 82, .length = 2}, + [48] = {.index = 84, .length = 2}, + [49] = {.index = 86, .length = 2}, + [50] = {.index = 88, .length = 2}, + [51] = {.index = 90, .length = 3}, + [52] = {.index = 93, .length = 2}, + [53] = {.index = 95, .length = 2}, + [54] = {.index = 97, .length = 2}, + [55] = {.index = 99, .length = 2}, + [56] = {.index = 101, .length = 3}, + [57] = {.index = 104, .length = 3}, + [58] = {.index = 107, .length = 2}, + [59] = {.index = 109, .length = 1}, + [60] = {.index = 110, .length = 3}, + [61] = {.index = 113, .length = 3}, + [62] = {.index = 116, .length = 3}, + [63] = {.index = 119, .length = 3}, + [64] = {.index = 122, .length = 3}, + [65] = {.index = 125, .length = 3}, + [66] = {.index = 128, .length = 3}, + [67] = {.index = 131, .length = 2}, + [68] = {.index = 133, .length = 2}, + [69] = {.index = 135, .length = 3}, + [70] = {.index = 138, .length = 3}, + [71] = {.index = 141, .length = 2}, + [72] = {.index = 143, .length = 2}, + [73] = {.index = 145, .length = 2}, + [74] = {.index = 147, .length = 3}, + [75] = {.index = 150, .length = 3}, + [76] = {.index = 153, .length = 2}, + [77] = {.index = 155, .length = 4}, + [78] = {.index = 159, .length = 4}, + [79] = {.index = 163, .length = 4}, + [80] = {.index = 167, .length = 4}, + [81] = {.index = 171, .length = 4}, + [82] = {.index = 175, .length = 4}, + [83] = {.index = 179, .length = 3}, + [84] = {.index = 182, .length = 3}, + [85] = {.index = 185, .length = 2}, + [86] = {.index = 187, .length = 2}, + [87] = {.index = 189, .length = 3}, + [88] = {.index = 192, .length = 3}, + [89] = {.index = 195, .length = 3}, + [90] = {.index = 198, .length = 3}, + [91] = {.index = 201, .length = 5}, + [92] = {.index = 206, .length = 5}, + [93] = {.index = 211, .length = 5}, + [94] = {.index = 216, .length = 3}, + [95] = {.index = 219, .length = 3}, + [96] = {.index = 222, .length = 3}, + [97] = {.index = 225, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { [0] = {field_name, 0}, [1] = - {field_destination, 1}, + {field_redirect, 0}, [2] = - {field_value, 1}, + {field_descriptor, 0}, [3] = + {field_destination, 1}, + [4] = + {field_operator, 0}, + [5] = + {field_operator, 0, .inherited = true}, + [6] = + {field_value, 1}, + [7] = {field_body, 0}, {field_redirect, 1}, - [5] = + [9] = + {field_body, 0}, + [10] = {field_argument, 0}, - [6] = + [11] = {field_argument, 1, .inherited = true}, {field_name, 0}, - [8] = + {field_redirect, 1, .inherited = true}, + [14] = {field_name, 1}, - [9] = + {field_redirect, 0, .inherited = true}, + [16] = + {field_redirect, 0, .inherited = true}, + {field_redirect, 1, .inherited = true}, + [18] = {field_descriptor, 0}, {field_destination, 2}, - [11] = + [20] = {field_name, 0}, {field_value, 2}, - [13] = + [22] = + {field_operator, 1}, + [23] = {field_body, 2}, {field_condition, 1}, - [15] = + [25] = {field_body, 2}, {field_name, 1}, - [17] = + [27] = + {field_operator, 1, .inherited = true}, + [28] = + {field_operator, 0, .inherited = true}, + {field_operator, 1, .inherited = true}, + [30] = + {field_redirect, 1}, + [31] = {field_argument, 0}, {field_argument, 1}, - [19] = + [33] = {field_argument, 0, .inherited = true}, {field_argument, 1, .inherited = true}, - [21] = + {field_redirect, 0, .inherited = true}, + {field_redirect, 1, .inherited = true}, + [37] = {field_argument, 2, .inherited = true}, {field_name, 1}, - [23] = + {field_redirect, 0, .inherited = true}, + {field_redirect, 2, .inherited = true}, + [41] = {field_index, 2}, {field_name, 0}, - [25] = + [43] = {field_body, 3}, {field_variable, 1}, - [27] = + [45] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, - [30] = + [48] = {field_condition, 1}, - [31] = + [49] = + {field_body, 2}, + {field_name, 1}, + {field_redirect, 3}, + [52] = + {field_operator, 0}, + {field_operator, 1}, + [54] = + {field_operator, 0}, + {field_operator, 2}, + [56] = + {field_operator, 0}, + {field_operator, 2, .inherited = true}, + [58] = {field_body, 3}, {field_name, 0}, - [33] = + [60] = + {field_argument, 0, .inherited = true}, + [61] = + {field_body, 4}, + [62] = + {field_initializer, 0}, + [63] = + {field_update, 2}, + [64] = + {field_value, 0}, + [65] = {field_body, 4}, {field_name, 1}, - [35] = + [67] = + {field_body, 3}, + {field_name, 0}, + {field_redirect, 4}, + [70] = + {field_operator, 0}, + {field_right, 1}, + [72] = + {field_argument, 0, .inherited = true}, + {field_argument, 1, .inherited = true}, + [74] = {field_body, 5}, {field_value, 3}, {field_variable, 1}, - [38] = + [77] = {field_body, 5}, - [39] = + [78] = + {field_condition, 2}, + {field_initializer, 0}, + [80] = + {field_initializer, 0}, + {field_update, 3}, + [82] = + {field_initializer, 0}, + {field_initializer, 1}, + [84] = + {field_condition, 1}, + {field_update, 3}, + [86] = + {field_condition, 1}, + {field_condition, 2}, + [88] = + {field_update, 2}, + {field_update, 3}, + [90] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [42] = - {field_value, 0}, - [43] = - {field_body, 6}, - [44] = - {field_body, 6}, - {field_update, 4}, - [46] = - {field_body, 6}, - {field_condition, 3}, - [48] = - {field_body, 6}, - {field_initializer, 2}, - [50] = + [93] = {field_termination, 2}, {field_value, 0}, - [52] = + [95] = {field_fallthrough, 2}, {field_value, 0}, - [54] = + [97] = {field_value, 0}, {field_value, 1, .inherited = true}, - [56] = + [99] = {field_value, 0, .inherited = true}, {field_value, 1, .inherited = true}, - [58] = - {field_body, 7}, + [101] = + {field_body, 4}, + {field_name, 1}, + {field_redirect, 5}, + [104] = + {field_operator, 0}, + {field_operator, 1}, + {field_operator, 3}, + [107] = + {field_operator, 0}, + {field_operator, 3}, + [109] = + {field_redirect, 2}, + [110] = + {field_condition, 2}, + {field_initializer, 0}, {field_update, 4}, - [60] = - {field_body, 7}, + [113] = + {field_condition, 2}, {field_condition, 3}, - [62] = - {field_body, 7}, + {field_initializer, 0}, + [116] = + {field_initializer, 0}, + {field_update, 3}, + {field_update, 4}, + [119] = {field_condition, 3}, - {field_update, 5}, - [65] = - {field_body, 7}, - {field_initializer, 2}, - [67] = - {field_body, 7}, - {field_initializer, 2}, - {field_update, 5}, - [70] = - {field_body, 7}, - {field_condition, 4}, - {field_initializer, 2}, - [73] = + {field_initializer, 0}, + {field_initializer, 1}, + [122] = + {field_initializer, 0}, + {field_initializer, 1}, + {field_update, 4}, + [125] = + {field_condition, 1}, + {field_update, 3}, + {field_update, 4}, + [128] = + {field_condition, 1}, + {field_condition, 2}, + {field_update, 4}, + [131] = {field_termination, 3}, {field_value, 0}, - [75] = + [133] = {field_fallthrough, 3}, {field_value, 0}, - [77] = + [135] = {field_termination, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [80] = + [138] = {field_fallthrough, 3}, {field_value, 0}, {field_value, 1, .inherited = true}, - [83] = - {field_body, 8}, + [141] = + {field_termination, 3}, + {field_value, 1}, + [143] = + {field_fallthrough, 3}, + {field_value, 1}, + [145] = + {field_value, 1}, + {field_value, 2, .inherited = true}, + [147] = + {field_operator, 0}, + {field_operator, 2}, + {field_operator, 4}, + [150] = + {field_operator, 0}, + {field_operator, 1}, + {field_operator, 4}, + [153] = + {field_descriptor, 0}, + {field_redirect, 3}, + [155] = + {field_condition, 2}, + {field_initializer, 0}, + {field_update, 4}, + {field_update, 5}, + [159] = + {field_condition, 2}, {field_condition, 3}, + {field_initializer, 0}, {field_update, 5}, - [86] = - {field_body, 8}, - {field_initializer, 2}, + [163] = + {field_condition, 3}, + {field_initializer, 0}, + {field_initializer, 1}, {field_update, 5}, - [89] = - {field_body, 8}, - {field_condition, 4}, - {field_initializer, 2}, - [92] = - {field_body, 8}, + [167] = + {field_condition, 3}, {field_condition, 4}, - {field_initializer, 2}, - {field_update, 6}, - [96] = + {field_initializer, 0}, + {field_initializer, 1}, + [171] = + {field_initializer, 0}, + {field_initializer, 1}, + {field_update, 4}, + {field_update, 5}, + [175] = + {field_condition, 1}, + {field_condition, 2}, + {field_update, 4}, + {field_update, 5}, + [179] = {field_termination, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [99] = + [182] = {field_fallthrough, 4}, {field_value, 0}, {field_value, 1, .inherited = true}, - [102] = - {field_body, 9}, + [185] = + {field_termination, 4}, + {field_value, 1}, + [187] = + {field_fallthrough, 4}, + {field_value, 1}, + [189] = + {field_termination, 4}, + {field_value, 1}, + {field_value, 2, .inherited = true}, + [192] = + {field_fallthrough, 4}, + {field_value, 1}, + {field_value, 2, .inherited = true}, + [195] = + {field_operator, 0}, + {field_operator, 2}, + {field_operator, 5}, + [198] = + {field_operator, 0}, + {field_operator, 3}, + {field_operator, 5}, + [201] = + {field_condition, 2}, + {field_condition, 3}, + {field_initializer, 0}, + {field_update, 5}, + {field_update, 6}, + [206] = + {field_condition, 3}, + {field_initializer, 0}, + {field_initializer, 1}, + {field_update, 5}, + {field_update, 6}, + [211] = + {field_condition, 3}, + {field_condition, 4}, + {field_initializer, 0}, + {field_initializer, 1}, + {field_update, 6}, + [216] = + {field_termination, 5}, + {field_value, 1}, + {field_value, 2, .inherited = true}, + [219] = + {field_fallthrough, 5}, + {field_value, 1}, + {field_value, 2, .inherited = true}, + [222] = + {field_operator, 0}, + {field_operator, 3}, + {field_operator, 6}, + [225] = + {field_condition, 3}, {field_condition, 4}, - {field_initializer, 2}, + {field_initializer, 0}, + {field_initializer, 1}, {field_update, 6}, + {field_update, 7}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { [0] = {0}, - [2] = { - [0] = alias_sym_pat_42e353e, - }, - [13] = { - [1] = alias_sym_pat_42e353e, - }, - [18] = { - [1] = alias_sym_pat_42e353e, - }, - [22] = { - [1] = alias_sym_pat_42e353e, - [2] = alias_sym_tok_prec_p1_slash, - }, - [23] = { - [2] = alias_sym_pat_42e353e, - }, - [24] = { - [2] = alias_sym_tok_prec_p1_slash, - }, - [27] = { - [2] = alias_sym_pat_42e353e, - [3] = alias_sym_tok_prec_p1_slash, - }, - [28] = { - [3] = alias_sym_tok_prec_p1_slash, - }, - [29] = { - [1] = alias_sym_pat_42e353e, - }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -1544,3834 +2544,6104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 2, - [4] = 4, - [5] = 2, - [6] = 4, - [7] = 4, - [8] = 8, - [9] = 9, - [10] = 10, - [11] = 11, - [12] = 12, + [4] = 2, + [5] = 5, + [6] = 5, + [7] = 5, + [8] = 5, + [9] = 5, + [10] = 5, + [11] = 5, + [12] = 5, [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, - [20] = 19, - [21] = 19, + [16] = 14, + [17] = 13, + [18] = 14, + [19] = 13, + [20] = 14, + [21] = 13, [22] = 22, [23] = 23, [24] = 24, [25] = 25, - [26] = 12, + [26] = 26, [27] = 27, - [28] = 25, + [28] = 28, [29] = 29, - [30] = 22, - [31] = 29, + [30] = 30, + [31] = 31, [32] = 32, [33] = 33, - [34] = 27, - [35] = 25, - [36] = 29, - [37] = 27, - [38] = 32, - [39] = 32, + [34] = 34, + [35] = 35, + [36] = 36, + [37] = 37, + [38] = 38, + [39] = 39, [40] = 40, - [41] = 41, - [42] = 23, - [43] = 22, - [44] = 33, - [45] = 41, - [46] = 23, - [47] = 22, - [48] = 33, - [49] = 23, - [50] = 22, - [51] = 33, - [52] = 23, - [53] = 22, - [54] = 33, - [55] = 23, - [56] = 22, - [57] = 33, - [58] = 23, - [59] = 22, - [60] = 33, - [61] = 23, - [62] = 22, - [63] = 33, - [64] = 23, - [65] = 22, - [66] = 33, - [67] = 23, - [68] = 22, - [69] = 33, - [70] = 23, - [71] = 22, - [72] = 33, - [73] = 23, - [74] = 22, - [75] = 33, - [76] = 23, - [77] = 22, - [78] = 41, - [79] = 23, - [80] = 22, - [81] = 33, - [82] = 23, - [83] = 22, - [84] = 33, - [85] = 23, - [86] = 22, - [87] = 33, - [88] = 23, - [89] = 22, - [90] = 33, - [91] = 23, - [92] = 22, - [93] = 33, - [94] = 23, - [95] = 22, - [96] = 33, - [97] = 23, - [98] = 22, - [99] = 33, - [100] = 23, - [101] = 22, - [102] = 33, - [103] = 23, - [104] = 22, - [105] = 33, - [106] = 23, - [107] = 22, - [108] = 33, - [109] = 23, - [110] = 22, - [111] = 33, - [112] = 23, - [113] = 22, - [114] = 33, - [115] = 23, - [116] = 22, - [117] = 33, - [118] = 23, - [119] = 22, - [120] = 33, - [121] = 23, - [122] = 22, - [123] = 33, - [124] = 23, - [125] = 22, - [126] = 33, - [127] = 23, - [128] = 22, - [129] = 23, - [130] = 33, - [131] = 131, - [132] = 132, - [133] = 132, - [134] = 134, - [135] = 132, - [136] = 136, - [137] = 131, - [138] = 136, - [139] = 131, - [140] = 132, - [141] = 132, - [142] = 136, - [143] = 143, - [144] = 143, - [145] = 145, - [146] = 145, - [147] = 145, - [148] = 143, - [149] = 143, - [150] = 145, - [151] = 145, - [152] = 143, - [153] = 153, - [154] = 154, - [155] = 155, - [156] = 154, - [157] = 153, - [158] = 155, - [159] = 159, - [160] = 160, - [161] = 153, - [162] = 154, - [163] = 163, - [164] = 153, - [165] = 155, - [166] = 154, - [167] = 155, - [168] = 168, - [169] = 159, - [170] = 154, - [171] = 160, - [172] = 153, - [173] = 163, - [174] = 163, - [175] = 163, - [176] = 163, - [177] = 163, - [178] = 163, - [179] = 160, - [180] = 180, - [181] = 160, - [182] = 182, - [183] = 163, - [184] = 159, - [185] = 185, - [186] = 186, - [187] = 163, - [188] = 159, - [189] = 189, - [190] = 180, - [191] = 191, - [192] = 185, - [193] = 193, - [194] = 194, - [195] = 163, - [196] = 196, - [197] = 163, - [198] = 182, - [199] = 199, - [200] = 200, - [201] = 189, - [202] = 202, - [203] = 203, - [204] = 204, - [205] = 168, - [206] = 163, - [207] = 159, - [208] = 203, - [209] = 204, - [210] = 199, - [211] = 163, - [212] = 196, - [213] = 200, - [214] = 193, - [215] = 194, - [216] = 163, - [217] = 202, - [218] = 160, - [219] = 219, - [220] = 163, - [221] = 200, - [222] = 194, - [223] = 163, - [224] = 219, - [225] = 202, - [226] = 203, - [227] = 204, - [228] = 219, - [229] = 196, - [230] = 219, - [231] = 193, - [232] = 203, - [233] = 204, - [234] = 196, - [235] = 193, - [236] = 194, - [237] = 199, - [238] = 200, - [239] = 202, - [240] = 219, - [241] = 199, - [242] = 180, - [243] = 203, - [244] = 191, - [245] = 185, - [246] = 189, - [247] = 196, - [248] = 204, - [249] = 182, - [250] = 186, - [251] = 194, - [252] = 193, - [253] = 202, - [254] = 182, - [255] = 185, - [256] = 189, - [257] = 180, - [258] = 258, - [259] = 259, - [260] = 260, - [261] = 261, - [262] = 262, - [263] = 263, - [264] = 264, - [265] = 265, - [266] = 266, - [267] = 267, - [268] = 258, - [269] = 269, - [270] = 270, - [271] = 271, - [272] = 272, - [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 277, - [278] = 278, - [279] = 279, - [280] = 280, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 288, - [289] = 289, - [290] = 290, - [291] = 291, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 299, - [300] = 300, - [301] = 301, - [302] = 302, - [303] = 266, - [304] = 267, - [305] = 264, - [306] = 262, - [307] = 307, - [308] = 308, - [309] = 259, - [310] = 263, - [311] = 260, - [312] = 261, - [313] = 265, - [314] = 314, - [315] = 264, - [316] = 274, - [317] = 266, - [318] = 275, - [319] = 267, - [320] = 276, - [321] = 277, - [322] = 278, - [323] = 279, - [324] = 280, - [325] = 281, - [326] = 282, - [327] = 283, - [328] = 284, - [329] = 262, - [330] = 285, - [331] = 286, - [332] = 287, - [333] = 314, - [334] = 289, - [335] = 290, - [336] = 291, - [337] = 292, - [338] = 293, - [339] = 294, - [340] = 295, - [341] = 296, - [342] = 297, - [343] = 298, - [344] = 299, - [345] = 300, - [346] = 301, - [347] = 302, - [348] = 348, - [349] = 262, - [350] = 259, - [351] = 262, - [352] = 269, - [353] = 264, - [354] = 354, - [355] = 355, - [356] = 261, - [357] = 265, - [358] = 263, - [359] = 307, - [360] = 270, - [361] = 271, - [362] = 308, - [363] = 263, - [364] = 288, - [365] = 266, - [366] = 258, - [367] = 272, - [368] = 259, - [369] = 267, - [370] = 273, - [371] = 258, - [372] = 266, - [373] = 259, - [374] = 260, - [375] = 260, - [376] = 263, - [377] = 261, - [378] = 265, - [379] = 267, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 290, - [384] = 308, - [385] = 262, - [386] = 301, - [387] = 273, - [388] = 276, - [389] = 277, - [390] = 278, - [391] = 279, - [392] = 280, - [393] = 281, - [394] = 282, - [395] = 283, - [396] = 284, - [397] = 302, - [398] = 285, - [399] = 286, - [400] = 287, - [401] = 314, - [402] = 289, - [403] = 290, - [404] = 262, - [405] = 294, - [406] = 291, - [407] = 292, - [408] = 280, - [409] = 409, - [410] = 293, - [411] = 295, - [412] = 294, - [413] = 295, - [414] = 307, - [415] = 296, - [416] = 296, - [417] = 297, - [418] = 259, - [419] = 263, - [420] = 298, - [421] = 299, - [422] = 348, - [423] = 300, - [424] = 301, - [425] = 382, - [426] = 302, - [427] = 274, - [428] = 262, - [429] = 354, - [430] = 275, - [431] = 308, - [432] = 266, + [41] = 15, + [42] = 42, + [43] = 42, + [44] = 42, + [45] = 45, + [46] = 45, + [47] = 45, + [48] = 42, + [49] = 45, + [50] = 45, + [51] = 51, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 57, + [58] = 58, + [59] = 59, + [60] = 60, + [61] = 61, + [62] = 51, + [63] = 22, + [64] = 22, + [65] = 60, + [66] = 51, + [67] = 67, + [68] = 52, + [69] = 60, + [70] = 51, + [71] = 67, + [72] = 52, + [73] = 60, + [74] = 51, + [75] = 67, + [76] = 52, + [77] = 60, + [78] = 51, + [79] = 67, + [80] = 52, + [81] = 60, + [82] = 51, + [83] = 67, + [84] = 52, + [85] = 60, + [86] = 51, + [87] = 67, + [88] = 52, + [89] = 60, + [90] = 51, + [91] = 67, + [92] = 52, + [93] = 60, + [94] = 94, + [95] = 94, + [96] = 56, + [97] = 57, + [98] = 58, + [99] = 59, + [100] = 61, + [101] = 94, + [102] = 56, + [103] = 57, + [104] = 58, + [105] = 59, + [106] = 61, + [107] = 67, + [108] = 94, + [109] = 56, + [110] = 57, + [111] = 58, + [112] = 59, + [113] = 61, + [114] = 94, + [115] = 56, + [116] = 57, + [117] = 58, + [118] = 59, + [119] = 94, + [120] = 56, + [121] = 57, + [122] = 58, + [123] = 59, + [124] = 94, + [125] = 56, + [126] = 57, + [127] = 58, + [128] = 59, + [129] = 94, + [130] = 56, + [131] = 57, + [132] = 58, + [133] = 59, + [134] = 56, + [135] = 57, + [136] = 58, + [137] = 59, + [138] = 56, + [139] = 57, + [140] = 58, + [141] = 59, + [142] = 56, + [143] = 57, + [144] = 58, + [145] = 59, + [146] = 56, + [147] = 57, + [148] = 58, + [149] = 59, + [150] = 56, + [151] = 57, + [152] = 58, + [153] = 59, + [154] = 56, + [155] = 57, + [156] = 58, + [157] = 59, + [158] = 56, + [159] = 57, + [160] = 58, + [161] = 59, + [162] = 56, + [163] = 57, + [164] = 58, + [165] = 59, + [166] = 56, + [167] = 57, + [168] = 58, + [169] = 59, + [170] = 56, + [171] = 57, + [172] = 58, + [173] = 59, + [174] = 56, + [175] = 57, + [176] = 58, + [177] = 59, + [178] = 56, + [179] = 57, + [180] = 58, + [181] = 59, + [182] = 56, + [183] = 57, + [184] = 58, + [185] = 59, + [186] = 56, + [187] = 57, + [188] = 58, + [189] = 59, + [190] = 56, + [191] = 57, + [192] = 58, + [193] = 59, + [194] = 56, + [195] = 57, + [196] = 58, + [197] = 59, + [198] = 56, + [199] = 57, + [200] = 58, + [201] = 59, + [202] = 56, + [203] = 57, + [204] = 58, + [205] = 59, + [206] = 56, + [207] = 57, + [208] = 58, + [209] = 59, + [210] = 56, + [211] = 57, + [212] = 58, + [213] = 59, + [214] = 56, + [215] = 57, + [216] = 58, + [217] = 59, + [218] = 56, + [219] = 57, + [220] = 58, + [221] = 59, + [222] = 56, + [223] = 57, + [224] = 58, + [225] = 59, + [226] = 56, + [227] = 57, + [228] = 58, + [229] = 59, + [230] = 56, + [231] = 58, + [232] = 58, + [233] = 59, + [234] = 56, + [235] = 57, + [236] = 58, + [237] = 59, + [238] = 56, + [239] = 57, + [240] = 58, + [241] = 59, + [242] = 56, + [243] = 57, + [244] = 58, + [245] = 59, + [246] = 56, + [247] = 57, + [248] = 58, + [249] = 59, + [250] = 56, + [251] = 57, + [252] = 58, + [253] = 59, + [254] = 56, + [255] = 57, + [256] = 58, + [257] = 59, + [258] = 56, + [259] = 57, + [260] = 58, + [261] = 59, + [262] = 56, + [263] = 57, + [264] = 58, + [265] = 59, + [266] = 56, + [267] = 57, + [268] = 58, + [269] = 59, + [270] = 56, + [271] = 57, + [272] = 58, + [273] = 59, + [274] = 56, + [275] = 57, + [276] = 58, + [277] = 59, + [278] = 56, + [279] = 57, + [280] = 58, + [281] = 59, + [282] = 56, + [283] = 57, + [284] = 58, + [285] = 59, + [286] = 56, + [287] = 57, + [288] = 58, + [289] = 59, + [290] = 56, + [291] = 57, + [292] = 58, + [293] = 59, + [294] = 56, + [295] = 57, + [296] = 58, + [297] = 59, + [298] = 56, + [299] = 57, + [300] = 58, + [301] = 59, + [302] = 56, + [303] = 57, + [304] = 58, + [305] = 59, + [306] = 56, + [307] = 57, + [308] = 58, + [309] = 59, + [310] = 56, + [311] = 57, + [312] = 58, + [313] = 59, + [314] = 56, + [315] = 57, + [316] = 58, + [317] = 59, + [318] = 56, + [319] = 57, + [320] = 58, + [321] = 59, + [322] = 56, + [323] = 57, + [324] = 58, + [325] = 59, + [326] = 56, + [327] = 57, + [328] = 58, + [329] = 59, + [330] = 56, + [331] = 57, + [332] = 58, + [333] = 56, + [334] = 57, + [335] = 58, + [336] = 56, + [337] = 57, + [338] = 58, + [339] = 56, + [340] = 57, + [341] = 58, + [342] = 56, + [343] = 57, + [344] = 58, + [345] = 56, + [346] = 57, + [347] = 58, + [348] = 56, + [349] = 57, + [350] = 58, + [351] = 56, + [352] = 57, + [353] = 58, + [354] = 56, + [355] = 57, + [356] = 58, + [357] = 56, + [358] = 57, + [359] = 58, + [360] = 56, + [361] = 57, + [362] = 58, + [363] = 56, + [364] = 57, + [365] = 58, + [366] = 56, + [367] = 57, + [368] = 58, + [369] = 56, + [370] = 57, + [371] = 58, + [372] = 56, + [373] = 57, + [374] = 57, + [375] = 375, + [376] = 376, + [377] = 377, + [378] = 378, + [379] = 376, + [380] = 378, + [381] = 375, + [382] = 375, + [383] = 375, + [384] = 378, + [385] = 378, + [386] = 376, + [387] = 376, + [388] = 388, + [389] = 388, + [390] = 388, + [391] = 391, + [392] = 392, + [393] = 391, + [394] = 391, + [395] = 395, + [396] = 391, + [397] = 391, + [398] = 388, + [399] = 388, + [400] = 400, + [401] = 401, + [402] = 400, + [403] = 401, + [404] = 401, + [405] = 400, + [406] = 401, + [407] = 400, + [408] = 401, + [409] = 400, + [410] = 401, + [411] = 411, + [412] = 411, + [413] = 413, + [414] = 414, + [415] = 415, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 420, + [421] = 421, + [422] = 422, + [423] = 423, + [424] = 424, + [425] = 425, + [426] = 426, + [427] = 427, + [428] = 428, + [429] = 429, + [430] = 430, + [431] = 431, + [432] = 432, [433] = 433, - [434] = 355, - [435] = 307, - [436] = 409, - [437] = 269, - [438] = 267, - [439] = 270, - [440] = 300, - [441] = 288, - [442] = 266, - [443] = 271, - [444] = 267, - [445] = 301, - [446] = 272, - [447] = 276, - [448] = 273, - [449] = 277, - [450] = 274, - [451] = 275, - [452] = 269, - [453] = 278, - [454] = 298, - [455] = 288, - [456] = 269, - [457] = 276, - [458] = 270, - [459] = 298, - [460] = 279, - [461] = 302, - [462] = 277, - [463] = 299, - [464] = 266, - [465] = 278, - [466] = 307, - [467] = 271, - [468] = 308, - [469] = 279, - [470] = 299, - [471] = 267, - [472] = 281, - [473] = 271, - [474] = 272, - [475] = 282, - [476] = 272, - [477] = 281, - [478] = 282, - [479] = 283, - [480] = 283, - [481] = 481, - [482] = 280, - [483] = 284, - [484] = 264, - [485] = 284, - [486] = 300, - [487] = 285, - [488] = 297, - [489] = 273, - [490] = 490, - [491] = 286, - [492] = 287, - [493] = 314, - [494] = 274, - [495] = 289, + [434] = 434, + [435] = 435, + [436] = 436, + [437] = 437, + [438] = 438, + [439] = 439, + [440] = 440, + [441] = 416, + [442] = 415, + [443] = 413, + [444] = 414, + [445] = 417, + [446] = 429, + [447] = 431, + [448] = 427, + [449] = 428, + [450] = 434, + [451] = 423, + [452] = 452, + [453] = 433, + [454] = 436, + [455] = 435, + [456] = 437, + [457] = 430, + [458] = 452, + [459] = 419, + [460] = 424, + [461] = 421, + [462] = 425, + [463] = 420, + [464] = 426, + [465] = 418, + [466] = 432, + [467] = 422, + [468] = 438, + [469] = 439, + [470] = 440, + [471] = 471, + [472] = 472, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 473, + [477] = 472, + [478] = 473, + [479] = 474, + [480] = 472, + [481] = 475, + [482] = 475, + [483] = 471, + [484] = 471, + [485] = 474, + [486] = 486, + [487] = 487, + [488] = 488, + [489] = 487, + [490] = 488, + [491] = 488, + [492] = 487, + [493] = 486, + [494] = 486, + [495] = 495, [496] = 496, - [497] = 293, - [498] = 260, - [499] = 291, - [500] = 275, - [501] = 285, - [502] = 261, - [503] = 265, + [497] = 497, + [498] = 472, + [499] = 475, + [500] = 471, + [501] = 473, + [502] = 502, + [503] = 503, [504] = 504, - [505] = 286, - [506] = 292, - [507] = 293, - [508] = 294, - [509] = 287, - [510] = 295, - [511] = 296, - [512] = 314, - [513] = 289, - [514] = 380, - [515] = 290, - [516] = 297, - [517] = 291, - [518] = 381, - [519] = 292, - [520] = 270, - [521] = 380, - [522] = 307, - [523] = 308, - [524] = 266, - [525] = 267, - [526] = 262, - [527] = 381, - [528] = 528, - [529] = 529, - [530] = 266, - [531] = 267, - [532] = 532, - [533] = 262, - [534] = 269, - [535] = 270, - [536] = 271, - [537] = 272, - [538] = 273, - [539] = 274, - [540] = 275, - [541] = 276, - [542] = 277, - [543] = 278, - [544] = 269, - [545] = 270, - [546] = 279, - [547] = 280, - [548] = 271, - [549] = 272, - [550] = 281, - [551] = 282, - [552] = 283, - [553] = 284, - [554] = 273, - [555] = 274, - [556] = 275, - [557] = 285, - [558] = 286, - [559] = 287, - [560] = 314, - [561] = 289, - [562] = 290, - [563] = 291, - [564] = 292, - [565] = 293, - [566] = 294, - [567] = 295, - [568] = 296, - [569] = 297, - [570] = 298, - [571] = 299, - [572] = 300, - [573] = 301, - [574] = 302, - [575] = 575, - [576] = 576, - [577] = 276, - [578] = 277, - [579] = 278, - [580] = 279, - [581] = 280, - [582] = 281, - [583] = 282, - [584] = 283, - [585] = 284, - [586] = 285, - [587] = 286, - [588] = 287, - [589] = 314, - [590] = 289, - [591] = 290, - [592] = 291, - [593] = 292, - [594] = 293, - [595] = 294, - [596] = 295, - [597] = 296, - [598] = 297, - [599] = 298, - [600] = 299, - [601] = 263, - [602] = 301, - [603] = 302, - [604] = 266, - [605] = 267, - [606] = 481, - [607] = 529, - [608] = 262, - [609] = 266, - [610] = 267, - [611] = 269, - [612] = 490, - [613] = 270, - [614] = 271, - [615] = 272, - [616] = 348, - [617] = 273, - [618] = 274, - [619] = 275, - [620] = 496, - [621] = 382, - [622] = 262, - [623] = 354, - [624] = 276, - [625] = 277, - [626] = 278, - [627] = 279, - [628] = 280, - [629] = 281, - [630] = 282, - [631] = 283, - [632] = 284, - [633] = 285, - [634] = 286, - [635] = 287, - [636] = 314, - [637] = 289, - [638] = 290, - [639] = 291, - [640] = 292, - [641] = 293, - [642] = 294, - [643] = 295, - [644] = 296, - [645] = 297, - [646] = 298, - [647] = 299, - [648] = 300, - [649] = 301, - [650] = 302, - [651] = 504, - [652] = 355, - [653] = 529, - [654] = 348, - [655] = 382, - [656] = 354, - [657] = 355, - [658] = 259, - [659] = 348, - [660] = 382, - [661] = 529, - [662] = 380, - [663] = 354, - [664] = 529, - [665] = 381, - [666] = 355, - [667] = 259, - [668] = 263, - [669] = 300, - [670] = 290, - [671] = 299, - [672] = 300, - [673] = 301, - [674] = 302, - [675] = 280, - [676] = 262, - [677] = 348, - [678] = 382, - [679] = 354, - [680] = 266, - [681] = 355, - [682] = 269, - [683] = 270, - [684] = 271, - [685] = 272, - [686] = 273, - [687] = 274, - [688] = 275, - [689] = 276, - [690] = 277, - [691] = 278, - [692] = 279, - [693] = 280, - [694] = 281, - [695] = 282, - [696] = 283, - [697] = 284, - [698] = 285, - [699] = 286, - [700] = 287, - [701] = 314, - [702] = 289, - [703] = 291, - [704] = 292, - [705] = 293, - [706] = 294, - [707] = 295, - [708] = 708, - [709] = 296, - [710] = 504, - [711] = 267, - [712] = 490, - [713] = 713, - [714] = 262, - [715] = 297, - [716] = 298, - [717] = 299, - [718] = 300, - [719] = 301, - [720] = 302, - [721] = 504, - [722] = 266, - [723] = 267, - [724] = 267, - [725] = 262, + [505] = 496, + [506] = 506, + [507] = 496, + [508] = 495, + [509] = 495, + [510] = 510, + [511] = 497, + [512] = 497, + [513] = 513, + [514] = 514, + [515] = 513, + [516] = 503, + [517] = 502, + [518] = 513, + [519] = 519, + [520] = 520, + [521] = 506, + [522] = 513, + [523] = 503, + [524] = 506, + [525] = 486, + [526] = 513, + [527] = 510, + [528] = 488, + [529] = 411, + [530] = 520, + [531] = 514, + [532] = 495, + [533] = 496, + [534] = 497, + [535] = 519, + [536] = 514, + [537] = 411, + [538] = 520, + [539] = 519, + [540] = 411, + [541] = 411, + [542] = 411, + [543] = 411, + [544] = 503, + [545] = 497, + [546] = 474, + [547] = 472, + [548] = 473, + [549] = 411, + [550] = 475, + [551] = 495, + [552] = 496, + [553] = 497, + [554] = 411, + [555] = 411, + [556] = 495, + [557] = 496, + [558] = 411, + [559] = 471, + [560] = 411, + [561] = 411, + [562] = 495, + [563] = 497, + [564] = 506, + [565] = 496, + [566] = 506, + [567] = 495, + [568] = 568, + [569] = 569, + [570] = 519, + [571] = 496, + [572] = 568, + [573] = 568, + [574] = 506, + [575] = 503, + [576] = 569, + [577] = 514, + [578] = 569, + [579] = 503, + [580] = 504, + [581] = 568, + [582] = 495, + [583] = 569, + [584] = 496, + [585] = 497, + [586] = 506, + [587] = 503, + [588] = 504, + [589] = 497, + [590] = 568, + [591] = 569, + [592] = 411, + [593] = 510, + [594] = 488, + [595] = 496, + [596] = 497, + [597] = 506, + [598] = 503, + [599] = 495, + [600] = 496, + [601] = 486, + [602] = 506, + [603] = 487, + [604] = 502, + [605] = 411, + [606] = 503, + [607] = 495, + [608] = 506, + [609] = 497, + [610] = 610, + [611] = 611, + [612] = 411, + [613] = 503, + [614] = 496, + [615] = 495, + [616] = 495, + [617] = 506, + [618] = 411, + [619] = 619, + [620] = 503, + [621] = 621, + [622] = 411, + [623] = 411, + [624] = 411, + [625] = 496, + [626] = 503, + [627] = 610, + [628] = 506, + [629] = 629, + [630] = 619, + [631] = 629, + [632] = 503, + [633] = 611, + [634] = 411, + [635] = 629, + [636] = 611, + [637] = 411, + [638] = 629, + [639] = 629, + [640] = 610, + [641] = 621, + [642] = 619, + [643] = 621, + [644] = 506, + [645] = 411, + [646] = 415, + [647] = 416, + [648] = 497, + [649] = 417, + [650] = 415, + [651] = 416, + [652] = 652, + [653] = 514, + [654] = 520, + [655] = 417, + [656] = 656, + [657] = 495, + [658] = 519, + [659] = 659, + [660] = 660, + [661] = 496, + [662] = 411, + [663] = 663, + [664] = 420, + [665] = 415, + [666] = 496, + [667] = 416, + [668] = 432, + [669] = 411, + [670] = 431, + [671] = 506, + [672] = 503, + [673] = 673, + [674] = 674, + [675] = 675, + [676] = 676, + [677] = 416, + [678] = 416, + [679] = 436, + [680] = 656, + [681] = 652, + [682] = 415, + [683] = 660, + [684] = 497, + [685] = 417, + [686] = 411, + [687] = 435, + [688] = 437, + [689] = 674, + [690] = 659, + [691] = 621, + [692] = 417, + [693] = 427, + [694] = 663, + [695] = 434, + [696] = 429, + [697] = 610, + [698] = 411, + [699] = 619, + [700] = 700, + [701] = 652, + [702] = 702, + [703] = 660, + [704] = 674, + [705] = 495, + [706] = 663, + [707] = 496, + [708] = 433, + [709] = 415, + [710] = 497, + [711] = 422, + [712] = 652, + [713] = 423, + [714] = 424, + [715] = 421, + [716] = 430, + [717] = 420, + [718] = 659, + [719] = 419, + [720] = 425, + [721] = 415, + [722] = 656, + [723] = 416, + [724] = 436, + [725] = 422, [726] = 726, - [727] = 269, - [728] = 270, - [729] = 271, - [730] = 272, - [731] = 273, - [732] = 274, - [733] = 275, - [734] = 528, + [727] = 611, + [728] = 417, + [729] = 426, + [730] = 423, + [731] = 428, + [732] = 424, + [733] = 421, + [734] = 416, [735] = 735, - [736] = 276, - [737] = 277, - [738] = 278, - [739] = 269, - [740] = 270, - [741] = 279, - [742] = 280, - [743] = 271, - [744] = 272, - [745] = 281, - [746] = 282, - [747] = 283, - [748] = 284, - [749] = 273, - [750] = 274, - [751] = 275, - [752] = 285, - [753] = 286, - [754] = 287, - [755] = 314, - [756] = 289, - [757] = 290, - [758] = 291, - [759] = 292, - [760] = 293, - [761] = 294, - [762] = 298, - [763] = 296, - [764] = 297, - [765] = 298, - [766] = 299, - [767] = 300, - [768] = 301, - [769] = 302, - [770] = 269, - [771] = 532, - [772] = 270, - [773] = 271, - [774] = 272, - [775] = 575, - [776] = 266, - [777] = 276, - [778] = 277, - [779] = 278, - [780] = 279, - [781] = 280, - [782] = 281, - [783] = 282, - [784] = 283, - [785] = 284, - [786] = 285, - [787] = 286, - [788] = 287, - [789] = 314, - [790] = 289, - [791] = 290, - [792] = 291, - [793] = 292, - [794] = 293, - [795] = 294, - [796] = 295, - [797] = 296, - [798] = 297, - [799] = 298, - [800] = 299, - [801] = 300, - [802] = 301, - [803] = 302, - [804] = 273, - [805] = 274, - [806] = 275, - [807] = 262, - [808] = 276, - [809] = 277, - [810] = 278, - [811] = 279, - [812] = 576, - [813] = 281, - [814] = 282, - [815] = 283, - [816] = 284, - [817] = 285, - [818] = 286, - [819] = 307, - [820] = 287, - [821] = 314, - [822] = 289, - [823] = 496, - [824] = 481, - [825] = 290, - [826] = 291, - [827] = 292, - [828] = 293, - [829] = 481, - [830] = 294, - [831] = 490, - [832] = 295, - [833] = 307, - [834] = 496, - [835] = 266, - [836] = 296, - [837] = 308, - [838] = 267, - [839] = 297, - [840] = 308, - [841] = 295, - [842] = 269, - [843] = 276, - [844] = 272, - [845] = 271, - [846] = 277, - [847] = 273, - [848] = 274, - [849] = 275, - [850] = 272, - [851] = 286, - [852] = 287, - [853] = 735, - [854] = 278, - [855] = 281, - [856] = 299, - [857] = 295, - [858] = 276, - [859] = 279, - [860] = 273, - [861] = 314, - [862] = 282, - [863] = 300, - [864] = 270, - [865] = 281, - [866] = 708, - [867] = 275, - [868] = 289, - [869] = 355, - [870] = 282, - [871] = 279, - [872] = 283, - [873] = 297, - [874] = 354, - [875] = 285, - [876] = 286, - [877] = 298, - [878] = 280, - [879] = 287, - [880] = 314, - [881] = 289, - [882] = 163, - [883] = 576, - [884] = 290, - [885] = 291, - [886] = 292, - [887] = 293, - [888] = 294, - [889] = 295, - [890] = 296, - [891] = 297, - [892] = 298, - [893] = 299, - [894] = 300, - [895] = 301, - [896] = 302, - [897] = 277, - [898] = 284, - [899] = 278, - [900] = 283, - [901] = 301, - [902] = 269, - [903] = 285, - [904] = 286, - [905] = 287, - [906] = 314, - [907] = 289, - [908] = 290, - [909] = 291, - [910] = 292, - [911] = 293, - [912] = 294, - [913] = 295, - [914] = 296, - [915] = 297, - [916] = 298, - [917] = 299, - [918] = 300, - [919] = 301, - [920] = 302, - [921] = 275, - [922] = 726, - [923] = 285, - [924] = 271, - [925] = 284, - [926] = 270, - [927] = 271, - [928] = 280, - [929] = 280, - [930] = 290, - [931] = 272, - [932] = 281, - [933] = 291, - [934] = 292, - [935] = 293, - [936] = 294, - [937] = 282, - [938] = 295, - [939] = 279, - [940] = 283, - [941] = 296, - [942] = 274, - [943] = 297, - [944] = 298, - [945] = 299, - [946] = 276, - [947] = 300, - [948] = 348, - [949] = 284, - [950] = 273, - [951] = 301, - [952] = 274, - [953] = 302, - [954] = 528, - [955] = 302, - [956] = 277, - [957] = 532, - [958] = 293, - [959] = 292, - [960] = 575, - [961] = 354, - [962] = 528, - [963] = 294, - [964] = 163, - [965] = 291, - [966] = 532, - [967] = 280, - [968] = 348, - [969] = 278, - [970] = 289, - [971] = 276, - [972] = 277, - [973] = 278, - [974] = 290, - [975] = 576, - [976] = 270, - [977] = 279, - [978] = 575, - [979] = 382, - [980] = 296, - [981] = 355, - [982] = 382, - [983] = 271, - [984] = 269, - [985] = 272, - [986] = 281, - [987] = 282, - [988] = 283, - [989] = 284, - [990] = 273, - [991] = 274, - [992] = 269, - [993] = 270, - [994] = 275, - [995] = 285, - [996] = 286, - [997] = 287, - [998] = 314, - [999] = 713, - [1000] = 726, - [1001] = 708, - [1002] = 713, - [1003] = 735, - [1004] = 726, - [1005] = 163, - [1006] = 735, - [1007] = 163, - [1008] = 708, - [1009] = 713, - [1010] = 1010, - [1011] = 1010, - [1012] = 163, + [736] = 435, + [737] = 415, + [738] = 416, + [739] = 419, + [740] = 673, + [741] = 425, + [742] = 418, + [743] = 432, + [744] = 431, + [745] = 437, + [746] = 417, + [747] = 417, + [748] = 675, + [749] = 426, + [750] = 427, + [751] = 428, + [752] = 434, + [753] = 429, + [754] = 433, + [755] = 660, + [756] = 418, + [757] = 417, + [758] = 415, + [759] = 495, + [760] = 430, + [761] = 422, + [762] = 762, + [763] = 735, + [764] = 676, + [765] = 673, + [766] = 700, + [767] = 675, + [768] = 673, + [769] = 673, + [770] = 675, + [771] = 432, + [772] = 425, + [773] = 439, + [774] = 423, + [775] = 424, + [776] = 421, + [777] = 420, + [778] = 430, + [779] = 419, + [780] = 425, + [781] = 431, + [782] = 423, + [783] = 422, + [784] = 427, + [785] = 420, + [786] = 428, + [787] = 423, + [788] = 439, + [789] = 424, + [790] = 421, + [791] = 420, + [792] = 419, + [793] = 434, + [794] = 425, + [795] = 426, + [796] = 428, + [797] = 652, + [798] = 422, + [799] = 426, + [800] = 418, + [801] = 415, + [802] = 432, + [803] = 431, + [804] = 423, + [805] = 428, + [806] = 416, + [807] = 424, + [808] = 421, + [809] = 726, + [810] = 420, + [811] = 422, + [812] = 419, + [813] = 425, + [814] = 417, + [815] = 423, + [816] = 424, + [817] = 421, + [818] = 420, + [819] = 735, + [820] = 418, + [821] = 415, + [822] = 432, + [823] = 431, + [824] = 416, + [825] = 419, + [826] = 425, + [827] = 427, + [828] = 434, + [829] = 429, + [830] = 433, + [831] = 430, + [832] = 417, + [833] = 702, + [834] = 726, + [835] = 426, + [836] = 428, + [837] = 436, + [838] = 435, + [839] = 437, + [840] = 427, + [841] = 434, + [842] = 429, + [843] = 433, + [844] = 430, + [845] = 426, + [846] = 428, + [847] = 418, + [848] = 432, + [849] = 702, + [850] = 436, + [851] = 435, + [852] = 437, + [853] = 418, + [854] = 432, + [855] = 431, + [856] = 427, + [857] = 434, + [858] = 429, + [859] = 433, + [860] = 430, + [861] = 427, + [862] = 434, + [863] = 429, + [864] = 433, + [865] = 436, + [866] = 435, + [867] = 437, + [868] = 430, + [869] = 436, + [870] = 435, + [871] = 437, + [872] = 675, + [873] = 417, + [874] = 676, + [875] = 660, + [876] = 415, + [877] = 422, + [878] = 418, + [879] = 673, + [880] = 675, + [881] = 506, + [882] = 503, + [883] = 423, + [884] = 422, + [885] = 416, + [886] = 419, + [887] = 424, + [888] = 421, + [889] = 425, + [890] = 420, + [891] = 426, + [892] = 418, + [893] = 432, + [894] = 431, + [895] = 427, + [896] = 428, + [897] = 434, + [898] = 429, + [899] = 433, + [900] = 436, + [901] = 435, + [902] = 437, + [903] = 430, + [904] = 417, + [905] = 415, + [906] = 906, + [907] = 907, + [908] = 416, + [909] = 652, + [910] = 660, + [911] = 495, + [912] = 496, + [913] = 497, + [914] = 421, + [915] = 506, + [916] = 503, + [917] = 426, + [918] = 419, + [919] = 429, + [920] = 433, + [921] = 436, + [922] = 922, + [923] = 435, + [924] = 437, + [925] = 424, + [926] = 700, + [927] = 431, + [928] = 659, + [929] = 762, + [930] = 425, + [931] = 432, + [932] = 431, + [933] = 427, + [934] = 428, + [935] = 422, + [936] = 434, + [937] = 415, + [938] = 423, + [939] = 429, + [940] = 433, + [941] = 439, + [942] = 416, + [943] = 424, + [944] = 421, + [945] = 420, + [946] = 436, + [947] = 439, + [948] = 419, + [949] = 435, + [950] = 437, + [951] = 425, + [952] = 906, + [953] = 426, + [954] = 439, + [955] = 428, + [956] = 956, + [957] = 957, + [958] = 417, + [959] = 426, + [960] = 418, + [961] = 432, + [962] = 431, + [963] = 428, + [964] = 430, + [965] = 418, + [966] = 432, + [967] = 431, + [968] = 427, + [969] = 434, + [970] = 429, + [971] = 433, + [972] = 430, + [973] = 973, + [974] = 974, + [975] = 439, + [976] = 436, + [977] = 435, + [978] = 437, + [979] = 427, + [980] = 434, + [981] = 429, + [982] = 433, + [983] = 430, + [984] = 436, + [985] = 435, + [986] = 437, + [987] = 922, + [988] = 423, + [989] = 989, + [990] = 989, + [991] = 989, + [992] = 419, + [993] = 989, + [994] = 439, + [995] = 422, + [996] = 996, + [997] = 422, + [998] = 989, + [999] = 922, + [1000] = 906, + [1001] = 907, + [1002] = 423, + [1003] = 1003, + [1004] = 1004, + [1005] = 422, + [1006] = 419, + [1007] = 424, + [1008] = 421, + [1009] = 424, + [1010] = 420, + [1011] = 421, + [1012] = 419, [1013] = 1013, - [1014] = 1014, - [1015] = 1013, - [1016] = 1010, - [1017] = 1014, - [1018] = 1014, - [1019] = 1013, - [1020] = 163, - [1021] = 163, - [1022] = 1022, - [1023] = 1023, - [1024] = 1022, + [1014] = 425, + [1015] = 1015, + [1016] = 426, + [1017] = 427, + [1018] = 428, + [1019] = 423, + [1020] = 429, + [1021] = 430, + [1022] = 506, + [1023] = 418, + [1024] = 503, [1025] = 1025, - [1026] = 1023, - [1027] = 1027, - [1028] = 1028, - [1029] = 1029, + [1026] = 432, + [1027] = 431, + [1028] = 434, + [1029] = 906, [1030] = 1030, - [1031] = 1031, - [1032] = 1032, - [1033] = 1023, - [1034] = 1022, - [1035] = 1027, - [1036] = 1028, - [1037] = 1029, - [1038] = 1030, - [1039] = 1031, - [1040] = 1032, - [1041] = 1023, - [1042] = 1022, - [1043] = 1027, - [1044] = 1028, - [1045] = 1029, - [1046] = 1030, - [1047] = 1031, - [1048] = 1032, - [1049] = 1023, - [1050] = 1022, - [1051] = 1027, - [1052] = 1028, - [1053] = 1029, - [1054] = 1030, - [1055] = 1031, - [1056] = 1032, - [1057] = 1023, - [1058] = 1022, - [1059] = 1027, - [1060] = 1028, - [1061] = 1029, - [1062] = 1030, - [1063] = 1031, - [1064] = 1032, - [1065] = 1023, - [1066] = 1022, - [1067] = 1027, - [1068] = 1028, - [1069] = 1029, - [1070] = 1030, - [1071] = 1031, - [1072] = 1032, - [1073] = 1023, - [1074] = 1022, - [1075] = 1027, - [1076] = 1028, - [1077] = 1029, - [1078] = 1030, - [1079] = 1031, - [1080] = 1032, - [1081] = 1023, - [1082] = 1022, - [1083] = 1027, - [1084] = 1028, - [1085] = 1029, - [1086] = 1030, - [1087] = 1031, - [1088] = 1032, - [1089] = 1023, - [1090] = 1022, - [1091] = 1027, - [1092] = 1028, - [1093] = 1029, - [1094] = 1030, - [1095] = 1031, - [1096] = 1032, - [1097] = 1023, - [1098] = 1022, - [1099] = 1027, - [1100] = 1028, - [1101] = 1029, - [1102] = 1030, - [1103] = 1031, - [1104] = 1032, - [1105] = 1023, - [1106] = 1022, - [1107] = 1027, - [1108] = 1028, - [1109] = 1029, - [1110] = 1030, - [1111] = 1031, - [1112] = 1032, - [1113] = 1023, - [1114] = 1022, - [1115] = 1027, - [1116] = 1028, - [1117] = 1029, - [1118] = 1030, - [1119] = 1031, - [1120] = 1032, - [1121] = 1023, - [1122] = 1022, - [1123] = 1027, - [1124] = 1028, - [1125] = 1029, - [1126] = 1030, - [1127] = 1031, - [1128] = 1032, - [1129] = 1023, - [1130] = 1022, - [1131] = 1027, - [1132] = 1028, - [1133] = 1029, - [1134] = 1030, - [1135] = 1031, - [1136] = 1032, - [1137] = 1023, - [1138] = 1022, - [1139] = 1027, - [1140] = 1028, - [1141] = 1029, - [1142] = 1030, - [1143] = 1031, - [1144] = 1032, - [1145] = 1023, - [1146] = 1022, - [1147] = 1027, - [1148] = 1028, - [1149] = 1029, - [1150] = 1030, - [1151] = 1031, - [1152] = 1032, - [1153] = 1023, - [1154] = 1022, - [1155] = 1027, - [1156] = 1028, - [1157] = 1029, - [1158] = 1030, - [1159] = 1031, - [1160] = 1032, - [1161] = 1023, + [1031] = 907, + [1032] = 424, + [1033] = 433, + [1034] = 421, + [1035] = 411, + [1036] = 420, + [1037] = 425, + [1038] = 420, + [1039] = 436, + [1040] = 435, + [1041] = 437, + [1042] = 762, + [1043] = 907, + [1044] = 426, + [1045] = 418, + [1046] = 1046, + [1047] = 973, + [1048] = 1048, + [1049] = 996, + [1050] = 439, + [1051] = 989, + [1052] = 496, + [1053] = 1030, + [1054] = 429, + [1055] = 433, + [1056] = 423, + [1057] = 430, + [1058] = 415, + [1059] = 1025, + [1060] = 1030, + [1061] = 416, + [1062] = 996, + [1063] = 956, + [1064] = 1064, + [1065] = 1065, + [1066] = 495, + [1067] = 907, + [1068] = 1048, + [1069] = 1069, + [1070] = 1070, + [1071] = 906, + [1072] = 973, + [1073] = 422, + [1074] = 956, + [1075] = 996, + [1076] = 411, + [1077] = 1077, + [1078] = 439, + [1079] = 417, + [1080] = 974, + [1081] = 426, + [1082] = 424, + [1083] = 428, + [1084] = 1048, + [1085] = 497, + [1086] = 417, + [1087] = 973, + [1088] = 1088, + [1089] = 415, + [1090] = 973, + [1091] = 421, + [1092] = 416, + [1093] = 996, + [1094] = 436, + [1095] = 435, + [1096] = 1004, + [1097] = 1003, + [1098] = 437, + [1099] = 1004, + [1100] = 1046, + [1101] = 439, + [1102] = 420, + [1103] = 1103, + [1104] = 957, + [1105] = 973, + [1106] = 1013, + [1107] = 1015, + [1108] = 1003, + [1109] = 417, + [1110] = 1046, + [1111] = 495, + [1112] = 1112, + [1113] = 974, + [1114] = 906, + [1115] = 496, + [1116] = 907, + [1117] = 497, + [1118] = 1118, + [1119] = 1003, + [1120] = 439, + [1121] = 411, + [1122] = 1122, + [1123] = 1004, + [1124] = 419, + [1125] = 1125, + [1126] = 1126, + [1127] = 1015, + [1128] = 411, + [1129] = 957, + [1130] = 1013, + [1131] = 427, + [1132] = 1015, + [1133] = 425, + [1134] = 1013, + [1135] = 418, + [1136] = 415, + [1137] = 432, + [1138] = 1112, + [1139] = 996, + [1140] = 434, + [1141] = 431, + [1142] = 1088, + [1143] = 735, + [1144] = 439, + [1145] = 416, + [1146] = 1025, + [1147] = 411, + [1148] = 429, + [1149] = 421, + [1150] = 425, + [1151] = 415, + [1152] = 420, + [1153] = 426, + [1154] = 418, + [1155] = 432, + [1156] = 431, + [1157] = 427, + [1158] = 428, + [1159] = 434, + [1160] = 1103, + [1161] = 415, [1162] = 1162, - [1163] = 1027, - [1164] = 1028, - [1165] = 1029, - [1166] = 1030, - [1167] = 1031, - [1168] = 1032, - [1169] = 1023, - [1170] = 1031, - [1171] = 1027, - [1172] = 1028, - [1173] = 1029, - [1174] = 1030, - [1175] = 1031, - [1176] = 1032, - [1177] = 1023, - [1178] = 1022, - [1179] = 1027, - [1180] = 1028, - [1181] = 1029, - [1182] = 1030, - [1183] = 1031, - [1184] = 1032, - [1185] = 1023, - [1186] = 1022, - [1187] = 1027, - [1188] = 1028, - [1189] = 1029, - [1190] = 1030, - [1191] = 1031, - [1192] = 1032, - [1193] = 1023, - [1194] = 1022, - [1195] = 1027, - [1196] = 1028, - [1197] = 1029, - [1198] = 1030, - [1199] = 1031, - [1200] = 1032, - [1201] = 1023, - [1202] = 1022, - [1203] = 1027, - [1204] = 1028, - [1205] = 1029, - [1206] = 1030, - [1207] = 1031, - [1208] = 1032, - [1209] = 1023, - [1210] = 1022, - [1211] = 1027, - [1212] = 1028, - [1213] = 1029, - [1214] = 1030, - [1215] = 1031, - [1216] = 1032, - [1217] = 1023, - [1218] = 1022, - [1219] = 1027, - [1220] = 1028, - [1221] = 1029, - [1222] = 1030, - [1223] = 1031, - [1224] = 1032, - [1225] = 1023, - [1226] = 1022, - [1227] = 1027, - [1228] = 1028, - [1229] = 1029, - [1230] = 1030, - [1231] = 1031, - [1232] = 1032, - [1233] = 1023, - [1234] = 1022, - [1235] = 1027, - [1236] = 1028, - [1237] = 1029, - [1238] = 1030, - [1239] = 1031, - [1240] = 1032, - [1241] = 1023, - [1242] = 1022, - [1243] = 1027, - [1244] = 1028, - [1245] = 1029, - [1246] = 1030, - [1247] = 1031, - [1248] = 1032, - [1249] = 1023, - [1250] = 1022, - [1251] = 1027, - [1252] = 1028, - [1253] = 1029, - [1254] = 1030, - [1255] = 1031, - [1256] = 1032, - [1257] = 1023, - [1258] = 1022, - [1259] = 1027, - [1260] = 1028, - [1261] = 1029, - [1262] = 1030, - [1263] = 1031, - [1264] = 1032, - [1265] = 1265, - [1266] = 1022, - [1267] = 1267, - [1268] = 1268, - [1269] = 1162, - [1270] = 1265, - [1271] = 1267, - [1272] = 1268, - [1273] = 1162, - [1274] = 1265, - [1275] = 1267, - [1276] = 1025, - [1277] = 1027, - [1278] = 1028, - [1279] = 1029, - [1280] = 1030, - [1281] = 1032, - [1282] = 1025, - [1283] = 1025, - [1284] = 1268, - [1285] = 1025, - [1286] = 1022, - [1287] = 1287, - [1288] = 1288, - [1289] = 1289, - [1290] = 1290, - [1291] = 1291, - [1292] = 1292, - [1293] = 1293, - [1294] = 1294, - [1295] = 1287, - [1296] = 1296, + [1163] = 1112, + [1164] = 1122, + [1165] = 429, + [1166] = 433, + [1167] = 436, + [1168] = 435, + [1169] = 437, + [1170] = 430, + [1171] = 416, + [1172] = 432, + [1173] = 417, + [1174] = 426, + [1175] = 1125, + [1176] = 419, + [1177] = 1162, + [1178] = 1112, + [1179] = 1126, + [1180] = 431, + [1181] = 1077, + [1182] = 424, + [1183] = 428, + [1184] = 1088, + [1185] = 422, + [1186] = 415, + [1187] = 416, + [1188] = 1188, + [1189] = 425, + [1190] = 621, + [1191] = 506, + [1192] = 423, + [1193] = 411, + [1194] = 420, + [1195] = 429, + [1196] = 506, + [1197] = 1162, + [1198] = 503, + [1199] = 421, + [1200] = 1103, + [1201] = 1069, + [1202] = 1003, + [1203] = 1070, + [1204] = 424, + [1205] = 420, + [1206] = 1004, + [1207] = 427, + [1208] = 1013, + [1209] = 735, + [1210] = 434, + [1211] = 434, + [1212] = 424, + [1213] = 430, + [1214] = 418, + [1215] = 417, + [1216] = 1126, + [1217] = 432, + [1218] = 431, + [1219] = 426, + [1220] = 619, + [1221] = 1162, + [1222] = 1088, + [1223] = 433, + [1224] = 1004, + [1225] = 416, + [1226] = 423, + [1227] = 1112, + [1228] = 1077, + [1229] = 419, + [1230] = 1013, + [1231] = 436, + [1232] = 1015, + [1233] = 435, + [1234] = 437, + [1235] = 1015, + [1236] = 425, + [1237] = 428, + [1238] = 1125, + [1239] = 735, + [1240] = 1118, + [1241] = 503, + [1242] = 1162, + [1243] = 430, + [1244] = 1112, + [1245] = 418, + [1246] = 439, + [1247] = 423, + [1248] = 1088, + [1249] = 1070, + [1250] = 1088, + [1251] = 421, + [1252] = 422, + [1253] = 1003, + [1254] = 419, + [1255] = 417, + [1256] = 436, + [1257] = 1257, + [1258] = 422, + [1259] = 435, + [1260] = 735, + [1261] = 427, + [1262] = 1118, + [1263] = 1069, + [1264] = 619, + [1265] = 411, + [1266] = 1122, + [1267] = 437, + [1268] = 433, + [1269] = 411, + [1270] = 435, + [1271] = 424, + [1272] = 421, + [1273] = 437, + [1274] = 430, + [1275] = 420, + [1276] = 419, + [1277] = 425, + [1278] = 436, + [1279] = 435, + [1280] = 437, + [1281] = 426, + [1282] = 428, + [1283] = 1283, + [1284] = 1257, + [1285] = 735, + [1286] = 418, + [1287] = 432, + [1288] = 431, + [1289] = 427, + [1290] = 434, + [1291] = 429, + [1292] = 433, + [1293] = 430, + [1294] = 436, + [1295] = 435, + [1296] = 437, [1297] = 1297, - [1298] = 1292, - [1299] = 1292, - [1300] = 1293, - [1301] = 1294, - [1302] = 1302, - [1303] = 1297, - [1304] = 1304, - [1305] = 1302, - [1306] = 1304, - [1307] = 1307, - [1308] = 1308, - [1309] = 1309, - [1310] = 1310, - [1311] = 1311, - [1312] = 1288, - [1313] = 1289, - [1314] = 1290, - [1315] = 1291, - [1316] = 1307, - [1317] = 1308, - [1318] = 1309, - [1319] = 1287, - [1320] = 1310, - [1321] = 1311, - [1322] = 1288, - [1323] = 1292, - [1324] = 1293, - [1325] = 1294, - [1326] = 1289, + [1298] = 1283, + [1299] = 1283, + [1300] = 1297, + [1301] = 422, + [1302] = 1297, + [1303] = 1188, + [1304] = 1297, + [1305] = 423, + [1306] = 1297, + [1307] = 424, + [1308] = 735, + [1309] = 1297, + [1310] = 421, + [1311] = 1297, + [1312] = 1297, + [1313] = 1297, + [1314] = 1297, + [1315] = 1297, + [1316] = 1297, + [1317] = 1297, + [1318] = 1297, + [1319] = 1297, + [1320] = 1297, + [1321] = 1297, + [1322] = 1297, + [1323] = 1297, + [1324] = 1297, + [1325] = 1297, + [1326] = 1297, [1327] = 1297, - [1328] = 1290, - [1329] = 1302, - [1330] = 1304, - [1331] = 1307, - [1332] = 1308, - [1333] = 1309, - [1334] = 1310, - [1335] = 1311, - [1336] = 1288, - [1337] = 1289, - [1338] = 1290, - [1339] = 1291, - [1340] = 1291, - [1341] = 1341, - [1342] = 1293, - [1343] = 1287, - [1344] = 1294, - [1345] = 1302, - [1346] = 1287, - [1347] = 1292, - [1348] = 1293, - [1349] = 1294, + [1328] = 1297, + [1329] = 1297, + [1330] = 1297, + [1331] = 1297, + [1332] = 1297, + [1333] = 1297, + [1334] = 1297, + [1335] = 1297, + [1336] = 1297, + [1337] = 1297, + [1338] = 1297, + [1339] = 1297, + [1340] = 1297, + [1341] = 1297, + [1342] = 1297, + [1343] = 1297, + [1344] = 1297, + [1345] = 1297, + [1346] = 1297, + [1347] = 1297, + [1348] = 1297, + [1349] = 1297, [1350] = 1297, [1351] = 1297, - [1352] = 1296, - [1353] = 1302, - [1354] = 1304, - [1355] = 1307, - [1356] = 1308, - [1357] = 1309, - [1358] = 1310, - [1359] = 1311, - [1360] = 1288, - [1361] = 1289, - [1362] = 1290, - [1363] = 1291, - [1364] = 1302, - [1365] = 1292, - [1366] = 1293, - [1367] = 1287, - [1368] = 1294, - [1369] = 1304, + [1352] = 1297, + [1353] = 1297, + [1354] = 1297, + [1355] = 1297, + [1356] = 1297, + [1357] = 436, + [1358] = 1297, + [1359] = 1297, + [1360] = 1297, + [1361] = 1297, + [1362] = 1297, + [1363] = 1297, + [1364] = 1297, + [1365] = 1297, + [1366] = 1297, + [1367] = 1297, + [1368] = 1297, + [1369] = 1297, [1370] = 1297, - [1371] = 1292, - [1372] = 1293, - [1373] = 1294, - [1374] = 1307, + [1371] = 1297, + [1372] = 1297, + [1373] = 1297, + [1374] = 1297, [1375] = 1297, - [1376] = 1302, - [1377] = 1302, - [1378] = 1304, - [1379] = 1307, - [1380] = 1308, - [1381] = 1309, - [1382] = 1310, - [1383] = 1311, - [1384] = 1288, - [1385] = 1289, - [1386] = 1290, - [1387] = 1291, - [1388] = 1304, - [1389] = 1307, - [1390] = 1308, - [1391] = 1287, - [1392] = 1309, - [1393] = 1310, - [1394] = 1311, - [1395] = 1292, - [1396] = 1293, - [1397] = 1294, - [1398] = 1288, - [1399] = 1297, - [1400] = 1289, - [1401] = 1302, - [1402] = 1304, - [1403] = 1307, - [1404] = 1308, - [1405] = 1309, - [1406] = 1310, - [1407] = 1311, - [1408] = 1288, - [1409] = 1289, - [1410] = 1290, - [1411] = 1291, - [1412] = 1290, - [1413] = 1291, + [1376] = 420, + [1377] = 1377, + [1378] = 419, + [1379] = 425, + [1380] = 1377, + [1381] = 1297, + [1382] = 1377, + [1383] = 1377, + [1384] = 1377, + [1385] = 1377, + [1386] = 1377, + [1387] = 1377, + [1388] = 415, + [1389] = 1046, + [1390] = 439, + [1391] = 439, + [1392] = 416, + [1393] = 426, + [1394] = 428, + [1395] = 1283, + [1396] = 417, + [1397] = 418, + [1398] = 415, + [1399] = 432, + [1400] = 431, + [1401] = 423, + [1402] = 422, + [1403] = 416, + [1404] = 424, + [1405] = 421, + [1406] = 1257, + [1407] = 420, + [1408] = 419, + [1409] = 439, + [1410] = 425, + [1411] = 433, + [1412] = 417, + [1413] = 1283, [1414] = 1414, - [1415] = 1287, - [1416] = 1308, - [1417] = 1309, - [1418] = 1287, - [1419] = 1292, - [1420] = 1293, - [1421] = 1294, - [1422] = 1310, - [1423] = 1297, - [1424] = 1311, - [1425] = 1302, - [1426] = 1304, - [1427] = 1307, - [1428] = 1308, - [1429] = 1309, - [1430] = 1310, - [1431] = 1311, - [1432] = 1288, - [1433] = 1289, - [1434] = 1290, - [1435] = 1291, - [1436] = 1288, - [1437] = 1292, - [1438] = 1293, - [1439] = 1287, - [1440] = 1294, - [1441] = 1289, - [1442] = 1297, - [1443] = 1292, - [1444] = 1293, - [1445] = 1294, - [1446] = 1290, - [1447] = 1297, - [1448] = 1302, - [1449] = 1302, - [1450] = 1304, - [1451] = 1307, - [1452] = 1308, - [1453] = 1309, - [1454] = 1310, - [1455] = 1311, - [1456] = 1288, - [1457] = 1289, - [1458] = 1290, - [1459] = 1291, - [1460] = 1304, - [1461] = 1307, - [1462] = 1308, - [1463] = 1287, - [1464] = 1309, - [1465] = 1310, - [1466] = 1311, - [1467] = 1292, - [1468] = 1293, - [1469] = 1294, - [1470] = 1288, - [1471] = 1297, - [1472] = 1289, - [1473] = 1302, - [1474] = 1304, - [1475] = 1307, - [1476] = 1308, - [1477] = 1309, - [1478] = 1310, - [1479] = 1311, - [1480] = 1288, - [1481] = 1289, - [1482] = 1290, - [1483] = 1291, - [1484] = 1290, - [1485] = 1291, - [1486] = 1291, - [1487] = 1287, - [1488] = 1414, - [1489] = 1308, - [1490] = 1287, - [1491] = 1292, - [1492] = 1293, - [1493] = 1294, - [1494] = 1341, - [1495] = 1297, - [1496] = 1309, - [1497] = 1302, - [1498] = 1304, - [1499] = 1307, - [1500] = 1308, - [1501] = 1309, - [1502] = 1310, - [1503] = 1311, - [1504] = 1288, - [1505] = 1289, - [1506] = 1290, - [1507] = 1291, - [1508] = 1508, - [1509] = 1292, - [1510] = 1293, - [1511] = 1287, - [1512] = 1294, - [1513] = 1304, - [1514] = 1297, - [1515] = 1292, - [1516] = 1293, - [1517] = 1294, - [1518] = 1310, - [1519] = 1297, - [1520] = 1302, - [1521] = 1302, - [1522] = 1304, - [1523] = 1307, - [1524] = 1308, - [1525] = 1309, - [1526] = 1310, - [1527] = 1311, - [1528] = 1288, - [1529] = 1289, - [1530] = 1290, - [1531] = 1291, - [1532] = 1304, - [1533] = 1307, - [1534] = 1308, - [1535] = 1287, - [1536] = 1309, - [1537] = 1310, - [1538] = 1311, - [1539] = 1292, - [1540] = 1293, - [1541] = 1294, - [1542] = 1288, - [1543] = 1297, - [1544] = 1289, - [1545] = 1302, - [1546] = 1304, - [1547] = 1307, - [1548] = 1308, - [1549] = 1309, - [1550] = 1310, - [1551] = 1311, - [1552] = 1288, - [1553] = 1289, - [1554] = 1290, - [1555] = 1291, - [1556] = 1290, - [1557] = 1291, - [1558] = 1287, - [1559] = 1287, - [1560] = 1560, - [1561] = 1287, - [1562] = 1292, - [1563] = 1293, - [1564] = 1294, - [1565] = 1341, - [1566] = 1297, - [1567] = 1297, - [1568] = 1302, - [1569] = 1304, - [1570] = 1307, - [1571] = 1308, - [1572] = 1309, - [1573] = 1310, - [1574] = 1311, - [1575] = 1288, - [1576] = 1289, - [1577] = 1290, - [1578] = 1291, - [1579] = 1292, - [1580] = 1292, - [1581] = 1293, - [1582] = 1287, - [1583] = 1294, - [1584] = 1311, - [1585] = 1297, - [1586] = 1292, - [1587] = 1293, - [1588] = 1294, - [1589] = 1293, - [1590] = 1590, - [1591] = 1302, - [1592] = 1302, - [1593] = 1304, - [1594] = 1307, - [1595] = 1308, - [1596] = 1309, - [1597] = 1310, - [1598] = 1311, - [1599] = 1288, - [1600] = 1289, - [1601] = 1290, - [1602] = 1291, - [1603] = 1304, - [1604] = 1307, - [1605] = 1308, - [1606] = 1287, - [1607] = 1309, - [1608] = 1310, - [1609] = 1311, - [1610] = 1292, - [1611] = 1293, - [1612] = 1294, - [1613] = 1288, - [1614] = 1297, - [1615] = 1289, - [1616] = 1302, - [1617] = 1304, - [1618] = 1307, - [1619] = 1308, - [1620] = 1309, - [1621] = 1310, - [1622] = 1311, - [1623] = 1288, - [1624] = 1289, - [1625] = 1290, - [1626] = 1291, - [1627] = 1290, - [1628] = 1291, - [1629] = 1294, - [1630] = 1287, - [1631] = 1297, - [1632] = 1287, - [1633] = 1292, - [1634] = 1293, - [1635] = 1294, - [1636] = 1296, - [1637] = 1297, - [1638] = 1302, - [1639] = 1302, - [1640] = 1304, - [1641] = 1307, - [1642] = 1308, - [1643] = 1309, - [1644] = 1310, - [1645] = 1311, - [1646] = 1288, - [1647] = 1289, - [1648] = 1290, - [1649] = 1291, - [1650] = 1304, - [1651] = 1292, - [1652] = 1293, - [1653] = 1287, - [1654] = 1294, - [1655] = 1307, - [1656] = 1297, - [1657] = 1292, - [1658] = 1293, - [1659] = 1294, - [1660] = 1308, - [1661] = 1297, - [1662] = 1302, - [1663] = 1302, - [1664] = 1304, - [1665] = 1307, - [1666] = 1308, - [1667] = 1309, - [1668] = 1310, - [1669] = 1311, - [1670] = 1288, - [1671] = 1289, - [1672] = 1290, - [1673] = 1291, - [1674] = 1304, - [1675] = 1307, - [1676] = 1308, - [1677] = 1287, - [1678] = 1309, - [1679] = 1310, - [1680] = 1311, - [1681] = 1292, - [1682] = 1293, - [1683] = 1294, - [1684] = 1288, - [1685] = 1297, - [1686] = 1289, - [1687] = 1302, - [1688] = 1304, - [1689] = 1307, - [1690] = 1308, - [1691] = 1309, - [1692] = 1310, - [1693] = 1311, - [1694] = 1288, - [1695] = 1289, - [1696] = 1290, - [1697] = 1291, - [1698] = 1290, - [1699] = 1291, - [1700] = 1309, - [1701] = 1287, - [1702] = 1310, - [1703] = 1311, - [1704] = 1287, - [1705] = 1292, - [1706] = 1293, - [1707] = 1294, - [1708] = 1288, - [1709] = 1297, - [1710] = 1289, - [1711] = 1302, - [1712] = 1304, - [1713] = 1307, - [1714] = 1308, - [1715] = 1309, - [1716] = 1310, - [1717] = 1311, - [1718] = 1288, - [1719] = 1289, - [1720] = 1290, - [1721] = 1291, - [1722] = 1290, - [1723] = 1292, - [1724] = 1293, - [1725] = 1287, - [1726] = 1294, - [1727] = 1291, - [1728] = 1297, - [1729] = 1292, - [1730] = 1293, - [1731] = 1294, - [1732] = 1288, - [1733] = 1297, - [1734] = 1302, - [1735] = 1302, - [1736] = 1304, - [1737] = 1307, - [1738] = 1308, - [1739] = 1309, - [1740] = 1310, - [1741] = 1311, - [1742] = 1288, - [1743] = 1289, - [1744] = 1290, - [1745] = 1291, - [1746] = 1304, - [1747] = 1307, - [1748] = 1308, - [1749] = 1287, - [1750] = 1309, - [1751] = 1310, - [1752] = 1311, - [1753] = 1292, - [1754] = 1293, - [1755] = 1294, - [1756] = 1288, - [1757] = 1297, - [1758] = 1289, - [1759] = 1302, - [1760] = 1304, - [1761] = 1307, - [1762] = 1308, - [1763] = 1309, - [1764] = 1310, - [1765] = 1311, - [1766] = 1288, - [1767] = 1289, - [1768] = 1290, - [1769] = 1291, - [1770] = 1770, - [1771] = 1289, - [1772] = 1508, - [1773] = 1773, - [1774] = 1290, - [1775] = 1291, - [1776] = 1776, - [1777] = 1560, - [1778] = 1341, - [1779] = 1307, - [1780] = 1287, - [1781] = 1770, - [1782] = 1508, - [1783] = 1773, - [1784] = 1776, - [1785] = 1560, - [1786] = 1414, - [1787] = 1287, - [1788] = 1287, - [1789] = 1292, - [1790] = 1773, - [1791] = 1776, - [1792] = 1560, - [1793] = 1290, - [1794] = 1293, - [1795] = 163, - [1796] = 1291, - [1797] = 1770, - [1798] = 1776, - [1799] = 1414, - [1800] = 1293, - [1801] = 1341, - [1802] = 163, - [1803] = 1296, - [1804] = 1294, - [1805] = 1414, - [1806] = 1297, - [1807] = 1296, - [1808] = 1302, - [1809] = 1294, - [1810] = 1292, - [1811] = 1304, - [1812] = 1560, - [1813] = 1307, - [1814] = 1308, - [1815] = 1309, - [1816] = 1310, - [1817] = 1311, - [1818] = 1297, - [1819] = 163, - [1820] = 1820, - [1821] = 267, - [1822] = 266, - [1823] = 1823, - [1824] = 1824, - [1825] = 262, - [1826] = 163, - [1827] = 1827, - [1828] = 1828, - [1829] = 276, - [1830] = 1830, - [1831] = 1831, - [1832] = 280, - [1833] = 1833, - [1834] = 270, - [1835] = 275, - [1836] = 285, - [1837] = 286, - [1838] = 287, - [1839] = 314, - [1840] = 289, - [1841] = 279, - [1842] = 290, - [1843] = 291, - [1844] = 1833, - [1845] = 1845, - [1846] = 292, - [1847] = 259, - [1848] = 1845, - [1849] = 1833, - [1850] = 1845, - [1851] = 277, - [1852] = 293, - [1853] = 294, - [1854] = 1854, - [1855] = 295, - [1856] = 269, - [1857] = 271, - [1858] = 296, - [1859] = 297, - [1860] = 272, - [1861] = 263, - [1862] = 281, - [1863] = 282, - [1864] = 1864, - [1865] = 1865, - [1866] = 283, - [1867] = 1867, - [1868] = 298, - [1869] = 284, - [1870] = 273, - [1871] = 274, - [1872] = 1872, - [1873] = 299, - [1874] = 300, - [1875] = 301, - [1876] = 302, - [1877] = 278, - [1878] = 1878, - [1879] = 1879, - [1880] = 1879, + [1415] = 426, + [1416] = 427, + [1417] = 428, + [1418] = 429, + [1419] = 430, + [1420] = 422, + [1421] = 418, + [1422] = 432, + [1423] = 431, + [1424] = 434, + [1425] = 433, + [1426] = 423, + [1427] = 427, + [1428] = 434, + [1429] = 429, + [1430] = 1297, + [1431] = 430, + [1432] = 434, + [1433] = 429, + [1434] = 433, + [1435] = 430, + [1436] = 1436, + [1437] = 436, + [1438] = 435, + [1439] = 437, + [1440] = 1440, + [1441] = 1441, + [1442] = 1442, + [1443] = 1443, + [1444] = 1444, + [1445] = 439, + [1446] = 418, + [1447] = 416, + [1448] = 659, + [1449] = 1449, + [1450] = 1450, + [1451] = 1440, + [1452] = 1452, + [1453] = 1453, + [1454] = 432, + [1455] = 1441, + [1456] = 1442, + [1457] = 1443, + [1458] = 1449, + [1459] = 1450, + [1460] = 1460, + [1461] = 1440, + [1462] = 1441, + [1463] = 1442, + [1464] = 1443, + [1465] = 1444, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1469, + [1470] = 1470, + [1471] = 431, + [1472] = 1444, + [1473] = 1466, + [1474] = 1474, + [1475] = 1460, + [1476] = 1467, + [1477] = 1468, + [1478] = 1469, + [1479] = 673, + [1480] = 1046, + [1481] = 1470, + [1482] = 1482, + [1483] = 1483, + [1484] = 1449, + [1485] = 1450, + [1486] = 1460, + [1487] = 411, + [1488] = 1452, + [1489] = 1453, + [1490] = 1482, + [1491] = 1483, + [1492] = 1440, + [1493] = 1441, + [1494] = 1466, + [1495] = 1442, + [1496] = 439, + [1497] = 1482, + [1498] = 1483, + [1499] = 1443, + [1500] = 1474, + [1501] = 702, + [1502] = 1046, + [1503] = 1467, + [1504] = 652, + [1505] = 660, + [1506] = 675, + [1507] = 1444, + [1508] = 1452, + [1509] = 1449, + [1510] = 1453, + [1511] = 1450, + [1512] = 423, + [1513] = 1468, + [1514] = 1460, + [1515] = 422, + [1516] = 1440, + [1517] = 1441, + [1518] = 1452, + [1519] = 1442, + [1520] = 1443, + [1521] = 427, + [1522] = 421, + [1523] = 1436, + [1524] = 420, + [1525] = 1444, + [1526] = 1453, + [1527] = 1466, + [1528] = 1467, + [1529] = 419, + [1530] = 1468, + [1531] = 1469, + [1532] = 1470, + [1533] = 1474, + [1534] = 425, + [1535] = 1452, + [1536] = 1466, + [1537] = 1453, + [1538] = 1469, + [1539] = 1474, + [1540] = 1470, + [1541] = 417, + [1542] = 422, + [1543] = 411, + [1544] = 1482, + [1545] = 415, + [1546] = 426, + [1547] = 427, + [1548] = 428, + [1549] = 423, + [1550] = 429, + [1551] = 1436, + [1552] = 1467, + [1553] = 1468, + [1554] = 424, + [1555] = 421, + [1556] = 1469, + [1557] = 416, + [1558] = 1436, + [1559] = 420, + [1560] = 1436, + [1561] = 418, + [1562] = 417, + [1563] = 432, + [1564] = 1470, + [1565] = 1188, + [1566] = 431, + [1567] = 434, + [1568] = 1474, + [1569] = 419, + [1570] = 439, + [1571] = 433, + [1572] = 1483, + [1573] = 663, + [1574] = 436, + [1575] = 425, + [1576] = 435, + [1577] = 437, + [1578] = 415, + [1579] = 1449, + [1580] = 415, + [1581] = 1069, + [1582] = 426, + [1583] = 1070, + [1584] = 1450, + [1585] = 416, + [1586] = 1460, + [1587] = 428, + [1588] = 735, + [1589] = 417, + [1590] = 656, + [1591] = 1046, + [1592] = 1103, + [1593] = 700, + [1594] = 1483, + [1595] = 424, + [1596] = 439, + [1597] = 419, + [1598] = 1046, + [1599] = 437, + [1600] = 437, + [1601] = 433, + [1602] = 429, + [1603] = 700, + [1604] = 426, + [1605] = 423, + [1606] = 673, + [1607] = 415, + [1608] = 430, + [1609] = 436, + [1610] = 435, + [1611] = 431, + [1612] = 437, + [1613] = 424, + [1614] = 432, + [1615] = 425, + [1616] = 422, + [1617] = 430, + [1618] = 417, + [1619] = 702, + [1620] = 424, + [1621] = 421, + [1622] = 675, + [1623] = 726, + [1624] = 420, + [1625] = 422, + [1626] = 436, + [1627] = 428, + [1628] = 425, + [1629] = 434, + [1630] = 433, + [1631] = 421, + [1632] = 419, + [1633] = 426, + [1634] = 419, + [1635] = 432, + [1636] = 426, + [1637] = 427, + [1638] = 428, + [1639] = 416, + [1640] = 660, + [1641] = 429, + [1642] = 735, + [1643] = 673, + [1644] = 676, + [1645] = 418, + [1646] = 675, + [1647] = 418, + [1648] = 430, + [1649] = 418, + [1650] = 432, + [1651] = 431, + [1652] = 423, + [1653] = 431, + [1654] = 439, + [1655] = 1046, + [1656] = 435, + [1657] = 422, + [1658] = 420, + [1659] = 417, + [1660] = 652, + [1661] = 424, + [1662] = 421, + [1663] = 415, + [1664] = 434, + [1665] = 420, + [1666] = 427, + [1667] = 416, + [1668] = 434, + [1669] = 433, + [1670] = 436, + [1671] = 428, + [1672] = 429, + [1673] = 423, + [1674] = 427, + [1675] = 435, + [1676] = 425, + [1677] = 420, + [1678] = 426, + [1679] = 922, + [1680] = 418, + [1681] = 432, + [1682] = 431, + [1683] = 427, + [1684] = 428, + [1685] = 434, + [1686] = 1686, + [1687] = 429, + [1688] = 1686, + [1689] = 433, + [1690] = 425, + [1691] = 973, + [1692] = 430, + [1693] = 1693, + [1694] = 424, + [1695] = 418, + [1696] = 432, + [1697] = 431, + [1698] = 434, + [1699] = 433, + [1700] = 436, + [1701] = 435, + [1702] = 421, + [1703] = 1693, + [1704] = 437, + [1705] = 419, + [1706] = 1025, + [1707] = 424, + [1708] = 439, + [1709] = 419, + [1710] = 436, + [1711] = 437, + [1712] = 421, + [1713] = 906, + [1714] = 1030, + [1715] = 425, + [1716] = 907, + [1717] = 996, + [1718] = 439, + [1719] = 1693, + [1720] = 426, + [1721] = 762, + [1722] = 423, + [1723] = 427, + [1724] = 428, + [1725] = 420, + [1726] = 422, + [1727] = 423, + [1728] = 429, + [1729] = 1686, + [1730] = 1686, + [1731] = 1693, + [1732] = 1046, + [1733] = 439, + [1734] = 422, + [1735] = 430, + [1736] = 435, + [1737] = 1030, + [1738] = 1013, + [1739] = 1015, + [1740] = 417, + [1741] = 973, + [1742] = 1122, + [1743] = 735, + [1744] = 417, + [1745] = 1112, + [1746] = 996, + [1747] = 996, + [1748] = 415, + [1749] = 417, + [1750] = 956, + [1751] = 1003, + [1752] = 1088, + [1753] = 974, + [1754] = 1046, + [1755] = 907, + [1756] = 1069, + [1757] = 957, + [1758] = 1004, + [1759] = 1070, + [1760] = 1048, + [1761] = 416, + [1762] = 439, + [1763] = 415, + [1764] = 1025, + [1765] = 906, + [1766] = 415, + [1767] = 973, + [1768] = 416, + [1769] = 439, + [1770] = 416, + [1771] = 1771, + [1772] = 1118, + [1773] = 1069, + [1774] = 1088, + [1775] = 425, + [1776] = 428, + [1777] = 1088, + [1778] = 418, + [1779] = 419, + [1780] = 1077, + [1781] = 436, + [1782] = 427, + [1783] = 429, + [1784] = 433, + [1785] = 436, + [1786] = 435, + [1787] = 437, + [1788] = 1122, + [1789] = 424, + [1790] = 1070, + [1791] = 420, + [1792] = 432, + [1793] = 430, + [1794] = 430, + [1795] = 735, + [1796] = 420, + [1797] = 428, + [1798] = 1125, + [1799] = 1015, + [1800] = 417, + [1801] = 426, + [1802] = 418, + [1803] = 431, + [1804] = 434, + [1805] = 418, + [1806] = 425, + [1807] = 433, + [1808] = 419, + [1809] = 415, + [1810] = 416, + [1811] = 432, + [1812] = 431, + [1813] = 424, + [1814] = 421, + [1815] = 421, + [1816] = 415, + [1817] = 1112, + [1818] = 421, + [1819] = 434, + [1820] = 1103, + [1821] = 426, + [1822] = 426, + [1823] = 437, + [1824] = 419, + [1825] = 416, + [1826] = 417, + [1827] = 417, + [1828] = 433, + [1829] = 1013, + [1830] = 1004, + [1831] = 430, + [1832] = 423, + [1833] = 417, + [1834] = 432, + [1835] = 429, + [1836] = 1003, + [1837] = 735, + [1838] = 431, + [1839] = 417, + [1840] = 436, + [1841] = 1118, + [1842] = 422, + [1843] = 425, + [1844] = 427, + [1845] = 1112, + [1846] = 428, + [1847] = 423, + [1848] = 434, + [1849] = 423, + [1850] = 1126, + [1851] = 435, + [1852] = 422, + [1853] = 437, + [1854] = 424, + [1855] = 420, + [1856] = 422, + [1857] = 427, + [1858] = 429, + [1859] = 435, + [1860] = 432, + [1861] = 417, + [1862] = 422, + [1863] = 423, + [1864] = 424, + [1865] = 421, + [1866] = 420, + [1867] = 419, + [1868] = 425, + [1869] = 427, + [1870] = 434, + [1871] = 429, + [1872] = 433, + [1873] = 430, + [1874] = 426, + [1875] = 428, + [1876] = 436, + [1877] = 435, + [1878] = 437, + [1879] = 1771, + [1880] = 418, [1881] = 1881, - [1882] = 1879, - [1883] = 1879, - [1884] = 1879, - [1885] = 1879, - [1886] = 1879, - [1887] = 1827, - [1888] = 1879, - [1889] = 1879, - [1890] = 1878, - [1891] = 1867, - [1892] = 1878, - [1893] = 1879, - [1894] = 1879, - [1895] = 1872, - [1896] = 1879, - [1897] = 1879, - [1898] = 1881, - [1899] = 1881, - [1900] = 1879, - [1901] = 1879, - [1902] = 1879, - [1903] = 1830, - [1904] = 1879, - [1905] = 307, - [1906] = 1879, - [1907] = 1907, - [1908] = 1879, - [1909] = 1831, - [1910] = 1879, - [1911] = 1879, - [1912] = 1879, - [1913] = 1879, - [1914] = 1879, - [1915] = 1879, - [1916] = 1916, - [1917] = 1854, - [1918] = 1879, - [1919] = 308, - [1920] = 1879, - [1921] = 1879, - [1922] = 262, - [1923] = 1879, - [1924] = 1879, - [1925] = 1854, - [1926] = 1827, - [1927] = 1872, - [1928] = 1879, - [1929] = 1929, - [1930] = 1930, - [1931] = 1929, - [1932] = 348, - [1933] = 1933, - [1934] = 1930, - [1935] = 1935, - [1936] = 262, - [1937] = 266, - [1938] = 1935, - [1939] = 1823, - [1940] = 1867, - [1941] = 1930, - [1942] = 1929, - [1943] = 1867, - [1944] = 1933, - [1945] = 1935, - [1946] = 163, - [1947] = 1930, - [1948] = 1930, - [1949] = 1930, - [1950] = 1929, - [1951] = 1929, - [1952] = 1854, - [1953] = 1867, - [1954] = 1824, - [1955] = 1830, - [1956] = 1831, - [1957] = 1864, - [1958] = 1930, - [1959] = 1929, - [1960] = 1830, - [1961] = 1872, - [1962] = 382, - [1963] = 280, - [1964] = 1831, - [1965] = 1827, - [1966] = 1830, - [1967] = 262, - [1968] = 267, - [1969] = 1930, - [1970] = 1828, - [1971] = 354, - [1972] = 1831, - [1973] = 1973, + [1882] = 431, + [1883] = 1046, + [1884] = 415, + [1885] = 427, + [1886] = 434, + [1887] = 429, + [1888] = 433, + [1889] = 439, + [1890] = 430, + [1891] = 416, + [1892] = 436, + [1893] = 435, + [1894] = 437, + [1895] = 735, + [1896] = 1896, + [1897] = 1897, + [1898] = 1898, + [1899] = 439, + [1900] = 416, + [1901] = 1898, + [1902] = 1881, + [1903] = 1771, + [1904] = 1897, + [1905] = 1898, + [1906] = 1897, + [1907] = 1898, + [1908] = 1257, + [1909] = 1897, + [1910] = 1898, + [1911] = 1911, + [1912] = 1897, + [1913] = 439, + [1914] = 415, + [1915] = 423, + [1916] = 422, + [1917] = 424, + [1918] = 421, + [1919] = 420, + [1920] = 419, + [1921] = 425, + [1922] = 1898, + [1923] = 426, + [1924] = 427, + [1925] = 428, + [1926] = 439, + [1927] = 429, + [1928] = 430, + [1929] = 418, + [1930] = 432, + [1931] = 431, + [1932] = 434, + [1933] = 433, + [1934] = 436, + [1935] = 435, + [1936] = 437, + [1937] = 415, + [1938] = 1897, + [1939] = 423, + [1940] = 435, + [1941] = 437, + [1942] = 1942, + [1943] = 1943, + [1944] = 422, + [1945] = 424, + [1946] = 421, + [1947] = 420, + [1948] = 419, + [1949] = 425, + [1950] = 426, + [1951] = 427, + [1952] = 428, + [1953] = 439, + [1954] = 429, + [1955] = 430, + [1956] = 418, + [1957] = 1046, + [1958] = 432, + [1959] = 431, + [1960] = 434, + [1961] = 433, + [1962] = 436, + [1963] = 435, + [1964] = 437, + [1965] = 421, + [1966] = 1966, + [1967] = 419, + [1968] = 1968, + [1969] = 418, + [1970] = 1970, + [1971] = 1971, + [1972] = 432, + [1973] = 431, [1974] = 1974, - [1975] = 1929, - [1976] = 355, - [1977] = 1933, - [1978] = 262, - [1979] = 1930, - [1980] = 1929, - [1981] = 1929, - [1982] = 1982, - [1983] = 266, - [1984] = 296, - [1985] = 297, - [1986] = 298, - [1987] = 266, - [1988] = 299, - [1989] = 300, - [1990] = 301, - [1991] = 302, - [1992] = 269, - [1993] = 278, - [1994] = 1994, - [1995] = 1995, - [1996] = 280, - [1997] = 1995, - [1998] = 267, - [1999] = 1974, - [2000] = 284, - [2001] = 273, - [2002] = 1994, - [2003] = 1995, - [2004] = 274, - [2005] = 271, - [2006] = 1824, - [2007] = 2007, - [2008] = 1994, - [2009] = 1994, - [2010] = 2010, - [2011] = 272, - [2012] = 1864, - [2013] = 279, - [2014] = 1828, - [2015] = 267, - [2016] = 1995, - [2017] = 283, - [2018] = 1995, - [2019] = 2019, - [2020] = 1995, - [2021] = 1995, - [2022] = 1973, - [2023] = 1994, - [2024] = 267, - [2025] = 280, - [2026] = 1994, - [2027] = 285, - [2028] = 276, - [2029] = 275, - [2030] = 286, - [2031] = 287, - [2032] = 1823, - [2033] = 266, - [2034] = 1995, - [2035] = 282, - [2036] = 314, - [2037] = 289, - [2038] = 1994, - [2039] = 2039, - [2040] = 290, - [2041] = 1994, - [2042] = 1865, - [2043] = 291, - [2044] = 2010, - [2045] = 1994, - [2046] = 1995, - [2047] = 262, - [2048] = 1973, - [2049] = 292, - [2050] = 1823, - [2051] = 1824, - [2052] = 293, - [2053] = 270, - [2054] = 294, - [2055] = 295, - [2056] = 277, - [2057] = 281, - [2058] = 2039, - [2059] = 272, - [2060] = 273, - [2061] = 274, - [2062] = 2062, - [2063] = 275, + [1975] = 1975, + [1976] = 1970, + [1977] = 1971, + [1978] = 1881, + [1979] = 1881, + [1980] = 439, + [1981] = 1970, + [1982] = 1971, + [1983] = 426, + [1984] = 424, + [1985] = 428, + [1986] = 1896, + [1987] = 427, + [1988] = 434, + [1989] = 429, + [1990] = 1990, + [1991] = 439, + [1992] = 1992, + [1993] = 411, + [1994] = 433, + [1995] = 411, + [1996] = 430, + [1997] = 427, + [1998] = 434, + [1999] = 429, + [2000] = 433, + [2001] = 439, + [2002] = 1970, + [2003] = 2003, + [2004] = 436, + [2005] = 435, + [2006] = 437, + [2007] = 430, + [2008] = 1971, + [2009] = 1046, + [2010] = 423, + [2011] = 425, + [2012] = 422, + [2013] = 436, + [2014] = 2014, + [2015] = 420, + [2016] = 2016, + [2017] = 426, + [2018] = 411, + [2019] = 437, + [2020] = 416, + [2021] = 2021, + [2022] = 430, + [2023] = 2023, + [2024] = 418, + [2025] = 2016, + [2026] = 2026, + [2027] = 2027, + [2028] = 1896, + [2029] = 2029, + [2030] = 2014, + [2031] = 2016, + [2032] = 1974, + [2033] = 2027, + [2034] = 2034, + [2035] = 2016, + [2036] = 2036, + [2037] = 2037, + [2038] = 2027, + [2039] = 427, + [2040] = 700, + [2041] = 2016, + [2042] = 673, + [2043] = 2016, + [2044] = 2016, + [2045] = 2016, + [2046] = 2016, + [2047] = 2016, + [2048] = 2016, + [2049] = 432, + [2050] = 2016, + [2051] = 2016, + [2052] = 431, + [2053] = 2016, + [2054] = 2016, + [2055] = 2055, + [2056] = 2016, + [2057] = 2016, + [2058] = 427, + [2059] = 2016, + [2060] = 428, + [2061] = 2016, + [2062] = 434, + [2063] = 2016, [2064] = 2064, - [2065] = 2065, - [2066] = 2066, - [2067] = 276, - [2068] = 277, - [2069] = 278, - [2070] = 2070, - [2071] = 279, - [2072] = 281, - [2073] = 282, - [2074] = 284, - [2075] = 285, - [2076] = 2062, - [2077] = 286, - [2078] = 287, - [2079] = 314, - [2080] = 289, - [2081] = 290, - [2082] = 291, - [2083] = 292, - [2084] = 293, - [2085] = 2066, - [2086] = 294, - [2087] = 295, - [2088] = 296, - [2089] = 297, - [2090] = 298, - [2091] = 299, - [2092] = 300, - [2093] = 301, - [2094] = 302, - [2095] = 2070, - [2096] = 271, - [2097] = 2066, - [2098] = 2070, - [2099] = 2066, - [2100] = 2066, - [2101] = 2101, - [2102] = 2070, - [2103] = 2103, - [2104] = 2104, + [2065] = 2016, + [2066] = 2016, + [2067] = 2067, + [2068] = 2016, + [2069] = 2016, + [2070] = 2016, + [2071] = 2016, + [2072] = 2016, + [2073] = 2016, + [2074] = 2016, + [2075] = 2016, + [2076] = 2016, + [2077] = 2016, + [2078] = 2016, + [2079] = 2016, + [2080] = 2016, + [2081] = 2016, + [2082] = 2016, + [2083] = 2016, + [2084] = 2016, + [2085] = 2016, + [2086] = 2016, + [2087] = 2016, + [2088] = 2016, + [2089] = 702, + [2090] = 2016, + [2091] = 2016, + [2092] = 2016, + [2093] = 2016, + [2094] = 675, + [2095] = 2016, + [2096] = 2016, + [2097] = 2016, + [2098] = 2016, + [2099] = 2016, + [2100] = 2016, + [2101] = 2016, + [2102] = 2016, + [2103] = 435, + [2104] = 2027, [2105] = 2105, - [2106] = 2106, + [2106] = 1966, [2107] = 2107, - [2108] = 2066, + [2108] = 2108, [2109] = 2109, [2110] = 2110, - [2111] = 2070, - [2112] = 2112, + [2111] = 2111, + [2112] = 2026, [2113] = 2113, - [2114] = 2114, - [2115] = 2115, - [2116] = 2066, - [2117] = 2117, - [2118] = 2118, - [2119] = 2119, - [2120] = 2070, - [2121] = 2121, + [2114] = 2109, + [2115] = 2111, + [2116] = 2026, + [2117] = 2109, + [2118] = 2111, + [2119] = 2026, + [2120] = 2120, + [2121] = 652, [2122] = 2122, - [2123] = 266, - [2124] = 267, - [2125] = 2066, - [2126] = 2126, + [2123] = 1943, + [2124] = 2124, + [2125] = 2125, + [2126] = 660, [2127] = 2127, [2128] = 2128, [2129] = 2129, [2130] = 2130, - [2131] = 2070, + [2131] = 2131, [2132] = 2132, [2133] = 2133, [2134] = 2134, [2135] = 2135, [2136] = 2136, [2137] = 2137, - [2138] = 2066, - [2139] = 2139, - [2140] = 2070, - [2141] = 2141, - [2142] = 2066, - [2143] = 262, - [2144] = 2070, - [2145] = 266, - [2146] = 267, - [2147] = 2066, - [2148] = 2148, - [2149] = 2070, - [2150] = 2066, - [2151] = 2070, - [2152] = 2152, - [2153] = 2066, - [2154] = 2070, - [2155] = 2155, - [2156] = 269, - [2157] = 2157, - [2158] = 270, - [2159] = 280, - [2160] = 271, - [2161] = 2161, - [2162] = 272, - [2163] = 2066, - [2164] = 273, - [2165] = 274, - [2166] = 2166, - [2167] = 275, - [2168] = 2070, - [2169] = 276, - [2170] = 2066, - [2171] = 277, - [2172] = 278, - [2173] = 279, - [2174] = 2070, - [2175] = 281, - [2176] = 282, - [2177] = 283, - [2178] = 284, - [2179] = 2179, - [2180] = 285, - [2181] = 286, - [2182] = 287, - [2183] = 314, - [2184] = 289, - [2185] = 290, - [2186] = 2066, - [2187] = 291, - [2188] = 292, - [2189] = 293, - [2190] = 294, - [2191] = 295, - [2192] = 296, - [2193] = 297, - [2194] = 298, - [2195] = 2070, - [2196] = 299, - [2197] = 300, - [2198] = 301, - [2199] = 302, + [2138] = 2138, + [2139] = 429, + [2140] = 433, + [2141] = 1046, + [2142] = 2142, + [2143] = 436, + [2144] = 435, + [2145] = 2145, + [2146] = 434, + [2147] = 2147, + [2148] = 437, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2027, + [2153] = 2153, + [2154] = 1942, + [2155] = 1990, + [2156] = 2016, + [2157] = 2109, + [2158] = 2158, + [2159] = 415, + [2160] = 439, + [2161] = 2027, + [2162] = 417, + [2163] = 416, + [2164] = 2164, + [2165] = 2165, + [2166] = 415, + [2167] = 2111, + [2168] = 2168, + [2169] = 429, + [2170] = 433, + [2171] = 417, + [2172] = 2172, + [2173] = 735, + [2174] = 430, + [2175] = 1992, + [2176] = 735, + [2177] = 436, + [2178] = 2016, + [2179] = 2016, + [2180] = 2180, + [2181] = 2113, + [2182] = 427, + [2183] = 428, + [2184] = 2184, + [2185] = 429, + [2186] = 436, + [2187] = 435, + [2188] = 2188, + [2189] = 437, + [2190] = 2190, + [2191] = 430, + [2192] = 2190, + [2193] = 2193, + [2194] = 2194, + [2195] = 2195, + [2196] = 2107, + [2197] = 1974, + [2198] = 418, + [2199] = 2199, [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2066, - [2204] = 2070, - [2205] = 2066, - [2206] = 2070, - [2207] = 2066, - [2208] = 2070, - [2209] = 1907, - [2210] = 2066, - [2211] = 2070, - [2212] = 1916, - [2213] = 2066, - [2214] = 2070, - [2215] = 2066, - [2216] = 2070, - [2217] = 2066, - [2218] = 2070, - [2219] = 2066, - [2220] = 262, - [2221] = 2070, - [2222] = 276, - [2223] = 1973, - [2224] = 1974, - [2225] = 2062, - [2226] = 2066, - [2227] = 2070, - [2228] = 2066, - [2229] = 2070, - [2230] = 1823, - [2231] = 1828, - [2232] = 277, - [2233] = 278, - [2234] = 269, - [2235] = 266, - [2236] = 2066, - [2237] = 270, - [2238] = 279, - [2239] = 2070, - [2240] = 2062, - [2241] = 280, - [2242] = 1824, - [2243] = 1864, - [2244] = 2066, - [2245] = 2070, - [2246] = 271, - [2247] = 272, - [2248] = 281, - [2249] = 282, - [2250] = 283, - [2251] = 284, - [2252] = 2066, - [2253] = 273, - [2254] = 274, - [2255] = 2070, - [2256] = 2256, - [2257] = 2070, - [2258] = 2258, - [2259] = 2259, - [2260] = 2066, - [2261] = 2070, - [2262] = 275, - [2263] = 285, - [2264] = 286, - [2265] = 287, - [2266] = 314, - [2267] = 289, - [2268] = 2268, - [2269] = 290, - [2270] = 291, - [2271] = 292, - [2272] = 293, - [2273] = 294, - [2274] = 295, - [2275] = 296, - [2276] = 297, - [2277] = 298, - [2278] = 299, - [2279] = 300, - [2280] = 301, - [2281] = 302, - [2282] = 2066, - [2283] = 2070, - [2284] = 2256, - [2285] = 2258, - [2286] = 269, - [2287] = 270, - [2288] = 2256, - [2289] = 2258, - [2290] = 283, - [2291] = 287, - [2292] = 280, - [2293] = 271, - [2294] = 270, - [2295] = 272, - [2296] = 273, - [2297] = 274, - [2298] = 271, - [2299] = 2019, - [2300] = 275, - [2301] = 272, - [2302] = 276, - [2303] = 277, - [2304] = 278, - [2305] = 273, - [2306] = 279, - [2307] = 274, - [2308] = 262, - [2309] = 281, - [2310] = 282, - [2311] = 283, - [2312] = 2312, - [2313] = 284, - [2314] = 275, - [2315] = 285, - [2316] = 286, - [2317] = 287, - [2318] = 314, - [2319] = 2064, - [2320] = 2065, - [2321] = 289, - [2322] = 262, - [2323] = 290, + [2201] = 1968, + [2202] = 432, + [2203] = 431, + [2204] = 2204, + [2205] = 434, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2153, + [2210] = 2142, + [2211] = 2145, + [2212] = 2158, + [2213] = 2188, + [2214] = 433, + [2215] = 2190, + [2216] = 2193, + [2217] = 2217, + [2218] = 2105, + [2219] = 2219, + [2220] = 2220, + [2221] = 2195, + [2222] = 2199, + [2223] = 2193, + [2224] = 2122, + [2225] = 2037, + [2226] = 2208, + [2227] = 2142, + [2228] = 2145, + [2229] = 2158, + [2230] = 2188, + [2231] = 426, + [2232] = 411, + [2233] = 2190, + [2234] = 2193, + [2235] = 1966, + [2236] = 2195, + [2237] = 2199, + [2238] = 2208, + [2239] = 2188, + [2240] = 2188, + [2241] = 2190, + [2242] = 2193, + [2243] = 2107, + [2244] = 2108, + [2245] = 2195, + [2246] = 2188, + [2247] = 2190, + [2248] = 2193, + [2249] = 2249, + [2250] = 2250, + [2251] = 2110, + [2252] = 2195, + [2253] = 2188, + [2254] = 2190, + [2255] = 2193, + [2256] = 436, + [2257] = 2195, + [2258] = 435, + [2259] = 437, + [2260] = 2188, + [2261] = 2261, + [2262] = 2190, + [2263] = 2193, + [2264] = 2113, + [2265] = 2195, + [2266] = 2188, + [2267] = 2120, + [2268] = 2195, + [2269] = 428, + [2270] = 2122, + [2271] = 2055, + [2272] = 1943, + [2273] = 2137, + [2274] = 2147, + [2275] = 2149, + [2276] = 2151, + [2277] = 2147, + [2278] = 2153, + [2279] = 1942, + [2280] = 2208, + [2281] = 2281, + [2282] = 2137, + [2283] = 2029, + [2284] = 2149, + [2285] = 423, + [2286] = 2151, + [2287] = 2067, + [2288] = 422, + [2289] = 1968, + [2290] = 424, + [2291] = 421, + [2292] = 420, + [2293] = 2107, + [2294] = 427, + [2295] = 2295, + [2296] = 434, + [2297] = 429, + [2298] = 433, + [2299] = 2195, + [2300] = 2037, + [2301] = 419, + [2302] = 2055, + [2303] = 2067, + [2304] = 425, + [2305] = 2105, + [2306] = 2108, + [2307] = 2110, + [2308] = 2113, + [2309] = 2120, + [2310] = 2122, + [2311] = 2137, + [2312] = 2147, + [2313] = 2149, + [2314] = 2151, + [2315] = 2153, + [2316] = 2142, + [2317] = 2199, + [2318] = 2145, + [2319] = 426, + [2320] = 2029, + [2321] = 2321, + [2322] = 2322, + [2323] = 2208, [2324] = 2324, - [2325] = 291, - [2326] = 292, - [2327] = 293, - [2328] = 2328, - [2329] = 294, - [2330] = 295, - [2331] = 296, - [2332] = 297, - [2333] = 298, - [2334] = 2334, - [2335] = 2335, - [2336] = 2336, - [2337] = 299, - [2338] = 300, - [2339] = 301, - [2340] = 2340, + [2325] = 430, + [2326] = 1990, + [2327] = 2321, + [2328] = 418, + [2329] = 427, + [2330] = 2321, + [2331] = 428, + [2332] = 2158, + [2333] = 2142, + [2334] = 2145, + [2335] = 2158, + [2336] = 429, + [2337] = 2321, + [2338] = 2338, + [2339] = 432, + [2340] = 2003, [2341] = 2341, - [2342] = 302, - [2343] = 2343, - [2344] = 2101, - [2345] = 2103, - [2346] = 262, - [2347] = 2104, + [2342] = 430, + [2343] = 418, + [2344] = 2003, + [2345] = 2037, + [2346] = 2055, + [2347] = 2067, [2348] = 2105, - [2349] = 2106, - [2350] = 2350, - [2351] = 280, - [2352] = 1916, - [2353] = 2312, - [2354] = 2354, - [2355] = 2355, - [2356] = 2356, - [2357] = 2334, - [2358] = 2358, - [2359] = 2341, - [2360] = 267, - [2361] = 2109, - [2362] = 2110, - [2363] = 276, - [2364] = 2364, - [2365] = 277, - [2366] = 278, - [2367] = 279, - [2368] = 2368, - [2369] = 2112, - [2370] = 2113, - [2371] = 2114, - [2372] = 2115, + [2349] = 2108, + [2350] = 2110, + [2351] = 2113, + [2352] = 2120, + [2353] = 2122, + [2354] = 2137, + [2355] = 2147, + [2356] = 2149, + [2357] = 2151, + [2358] = 411, + [2359] = 2153, + [2360] = 431, + [2361] = 1975, + [2362] = 432, + [2363] = 431, + [2364] = 497, + [2365] = 2107, + [2366] = 434, + [2367] = 2367, + [2368] = 436, + [2369] = 433, + [2370] = 435, + [2371] = 422, + [2372] = 437, [2373] = 2373, - [2374] = 281, - [2375] = 282, - [2376] = 283, - [2377] = 1907, - [2378] = 284, - [2379] = 2364, - [2380] = 2117, - [2381] = 285, - [2382] = 2382, - [2383] = 2118, - [2384] = 2119, - [2385] = 2121, - [2386] = 2122, - [2387] = 270, - [2388] = 2336, - [2389] = 286, - [2390] = 2334, - [2391] = 314, - [2392] = 289, - [2393] = 290, - [2394] = 291, + [2374] = 2374, + [2375] = 2375, + [2376] = 423, + [2377] = 424, + [2378] = 421, + [2379] = 420, + [2380] = 1992, + [2381] = 419, + [2382] = 426, + [2383] = 425, + [2384] = 1975, + [2385] = 2014, + [2386] = 2037, + [2387] = 2055, + [2388] = 2067, + [2389] = 2105, + [2390] = 2108, + [2391] = 2110, + [2392] = 2120, + [2393] = 437, + [2394] = 428, [2395] = 2395, - [2396] = 2126, - [2397] = 2127, - [2398] = 2128, - [2399] = 2312, - [2400] = 2341, - [2401] = 2334, - [2402] = 2129, - [2403] = 2130, - [2404] = 292, - [2405] = 293, - [2406] = 294, - [2407] = 295, - [2408] = 296, - [2409] = 2340, - [2410] = 2132, - [2411] = 2133, - [2412] = 2134, - [2413] = 2135, - [2414] = 2136, - [2415] = 2137, - [2416] = 2341, - [2417] = 297, - [2418] = 2340, - [2419] = 2139, - [2420] = 2141, - [2421] = 2148, - [2422] = 2152, - [2423] = 2155, - [2424] = 2340, - [2425] = 2157, - [2426] = 2161, - [2427] = 2340, - [2428] = 2166, - [2429] = 2179, - [2430] = 2340, - [2431] = 2341, - [2432] = 2340, - [2433] = 2340, - [2434] = 2334, - [2435] = 2200, - [2436] = 2340, - [2437] = 2340, - [2438] = 2201, - [2439] = 2202, - [2440] = 2340, - [2441] = 2340, - [2442] = 2340, - [2443] = 2340, - [2444] = 2340, - [2445] = 2340, - [2446] = 2312, - [2447] = 2340, - [2448] = 2340, - [2449] = 2340, - [2450] = 2340, - [2451] = 2340, - [2452] = 298, - [2453] = 2340, - [2454] = 2340, - [2455] = 2340, - [2456] = 2340, - [2457] = 2340, - [2458] = 2340, - [2459] = 2340, - [2460] = 299, - [2461] = 300, - [2462] = 301, - [2463] = 2335, - [2464] = 2373, - [2465] = 302, - [2466] = 2466, - [2467] = 269, - [2468] = 269, - [2469] = 2335, - [2470] = 2373, - [2471] = 2324, - [2472] = 2364, - [2473] = 2324, - [2474] = 2340, - [2475] = 285, - [2476] = 2130, - [2477] = 2118, - [2478] = 2119, - [2479] = 2132, - [2480] = 2133, - [2481] = 2134, - [2482] = 2135, - [2483] = 2019, - [2484] = 2104, - [2485] = 2121, - [2486] = 2136, - [2487] = 2137, - [2488] = 2139, - [2489] = 2141, - [2490] = 2039, - [2491] = 2148, - [2492] = 2152, - [2493] = 2155, - [2494] = 2157, - [2495] = 2161, - [2496] = 269, - [2497] = 2166, - [2498] = 2179, - [2499] = 2200, - [2500] = 2201, - [2501] = 276, - [2502] = 277, - [2503] = 2064, - [2504] = 278, - [2505] = 2202, - [2506] = 2105, - [2507] = 2019, - [2508] = 2122, - [2509] = 266, - [2510] = 279, - [2511] = 2106, - [2512] = 2109, - [2513] = 280, - [2514] = 281, - [2515] = 2110, - [2516] = 282, - [2517] = 267, - [2518] = 2039, - [2519] = 2019, - [2520] = 2065, - [2521] = 275, - [2522] = 2522, - [2523] = 2129, - [2524] = 280, - [2525] = 283, - [2526] = 2112, - [2527] = 284, - [2528] = 2113, - [2529] = 2354, - [2530] = 2355, - [2531] = 2356, - [2532] = 2114, - [2533] = 2115, - [2534] = 266, - [2535] = 1916, - [2536] = 270, - [2537] = 286, - [2538] = 287, - [2539] = 314, - [2540] = 289, - [2541] = 290, - [2542] = 291, - [2543] = 292, - [2544] = 293, - [2545] = 294, - [2546] = 295, - [2547] = 296, - [2548] = 297, - [2549] = 298, - [2550] = 299, - [2551] = 300, - [2552] = 301, - [2553] = 302, - [2554] = 2101, - [2555] = 2466, - [2556] = 2368, - [2557] = 2117, - [2558] = 271, - [2559] = 2103, - [2560] = 272, - [2561] = 2126, - [2562] = 273, - [2563] = 274, - [2564] = 2522, - [2565] = 2127, - [2566] = 2128, - [2567] = 2350, - [2568] = 1907, - [2569] = 301, - [2570] = 271, - [2571] = 2571, - [2572] = 2571, - [2573] = 272, - [2574] = 281, - [2575] = 282, - [2576] = 283, - [2577] = 2571, - [2578] = 273, - [2579] = 274, - [2580] = 2580, - [2581] = 2580, - [2582] = 275, - [2583] = 285, - [2584] = 286, - [2585] = 287, - [2586] = 314, - [2587] = 289, - [2588] = 290, - [2589] = 291, - [2590] = 292, - [2591] = 293, - [2592] = 294, - [2593] = 295, - [2594] = 296, - [2595] = 297, - [2596] = 298, - [2597] = 299, - [2598] = 300, - [2599] = 2580, - [2600] = 302, - [2601] = 2571, - [2602] = 2580, - [2603] = 2580, - [2604] = 2580, - [2605] = 2580, - [2606] = 2571, - [2607] = 2571, - [2608] = 2571, - [2609] = 2580, - [2610] = 2580, - [2611] = 2580, - [2612] = 2571, - [2613] = 2580, - [2614] = 2571, - [2615] = 2571, - [2616] = 2571, - [2617] = 2580, - [2618] = 2571, - [2619] = 2580, - [2620] = 2571, - [2621] = 2571, - [2622] = 2580, - [2623] = 2571, - [2624] = 2571, - [2625] = 2580, - [2626] = 2571, - [2627] = 2358, - [2628] = 276, - [2629] = 2580, - [2630] = 277, - [2631] = 278, - [2632] = 2580, - [2633] = 2571, - [2634] = 269, - [2635] = 2580, - [2636] = 2571, - [2637] = 2580, - [2638] = 2580, - [2639] = 2580, - [2640] = 2571, - [2641] = 2571, - [2642] = 2571, - [2643] = 270, - [2644] = 2580, - [2645] = 279, - [2646] = 2580, - [2647] = 2571, - [2648] = 2580, - [2649] = 2571, - [2650] = 2571, - [2651] = 2580, - [2652] = 2571, - [2653] = 2580, - [2654] = 2571, - [2655] = 2571, - [2656] = 2571, - [2657] = 2571, - [2658] = 2571, - [2659] = 2571, - [2660] = 2580, - [2661] = 2580, - [2662] = 2571, - [2663] = 2580, - [2664] = 284, - [2665] = 2665, - [2666] = 2358, - [2667] = 2667, - [2668] = 2668, - [2669] = 262, - [2670] = 2368, - [2671] = 2358, - [2672] = 2665, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2676, - [2677] = 2677, - [2678] = 2350, - [2679] = 2673, - [2680] = 2674, - [2681] = 2675, - [2682] = 2676, - [2683] = 2676, - [2684] = 2350, - [2685] = 2667, - [2686] = 2358, - [2687] = 2368, - [2688] = 2356, - [2689] = 163, - [2690] = 2690, - [2691] = 2677, - [2692] = 2692, - [2693] = 2665, - [2694] = 2673, - [2695] = 267, - [2696] = 2354, - [2697] = 2355, - [2698] = 2356, - [2699] = 2690, - [2700] = 2667, - [2701] = 2677, - [2702] = 2466, - [2703] = 2667, - [2704] = 2692, - [2705] = 2665, - [2706] = 2466, - [2707] = 2692, - [2708] = 2354, - [2709] = 2674, - [2710] = 2675, - [2711] = 2665, - [2712] = 2690, - [2713] = 2355, - [2714] = 266, - [2715] = 280, - [2716] = 277, - [2717] = 281, - [2718] = 282, - [2719] = 284, - [2720] = 278, - [2721] = 285, - [2722] = 286, - [2723] = 287, - [2724] = 314, - [2725] = 289, - [2726] = 290, - [2727] = 291, - [2728] = 292, - [2729] = 293, - [2730] = 294, - [2731] = 295, - [2732] = 296, - [2733] = 297, - [2734] = 298, - [2735] = 299, + [2396] = 418, + [2397] = 1046, + [2398] = 2395, + [2399] = 2204, + [2400] = 2395, + [2401] = 426, + [2402] = 2395, + [2403] = 2395, + [2404] = 2322, + [2405] = 2395, + [2406] = 427, + [2407] = 1046, + [2408] = 2324, + [2409] = 2395, + [2410] = 429, + [2411] = 2395, + [2412] = 434, + [2413] = 433, + [2414] = 2395, + [2415] = 2036, + [2416] = 2395, + [2417] = 2034, + [2418] = 2395, + [2419] = 2164, + [2420] = 2395, + [2421] = 2165, + [2422] = 2395, + [2423] = 439, + [2424] = 2395, + [2425] = 2168, + [2426] = 2395, + [2427] = 2427, + [2428] = 2395, + [2429] = 2367, + [2430] = 2395, + [2431] = 2395, + [2432] = 436, + [2433] = 2395, + [2434] = 2261, + [2435] = 2395, + [2436] = 429, + [2437] = 2395, + [2438] = 435, + [2439] = 2395, + [2440] = 2172, + [2441] = 2395, + [2442] = 2395, + [2443] = 433, + [2444] = 2395, + [2445] = 2373, + [2446] = 2395, + [2447] = 2206, + [2448] = 2395, + [2449] = 2374, + [2450] = 2395, + [2451] = 2375, + [2452] = 2395, + [2453] = 430, + [2454] = 2395, + [2455] = 2455, + [2456] = 2395, + [2457] = 1030, + [2458] = 2207, + [2459] = 2395, + [2460] = 2064, + [2461] = 2395, + [2462] = 2217, + [2463] = 432, + [2464] = 2395, + [2465] = 437, + [2466] = 2395, + [2467] = 2395, + [2468] = 996, + [2469] = 2395, + [2470] = 2395, + [2471] = 2395, + [2472] = 2184, + [2473] = 2395, + [2474] = 2395, + [2475] = 2455, + [2476] = 2395, + [2477] = 2395, + [2478] = 2455, + [2479] = 2194, + [2480] = 2395, + [2481] = 2455, + [2482] = 2021, + [2483] = 431, + [2484] = 430, + [2485] = 2395, + [2486] = 2219, + [2487] = 427, + [2488] = 2395, + [2489] = 432, + [2490] = 2200, + [2491] = 2395, + [2492] = 436, + [2493] = 2322, + [2494] = 2455, + [2495] = 2495, + [2496] = 2324, + [2497] = 2034, + [2498] = 2164, + [2499] = 2165, + [2500] = 2168, + [2501] = 435, + [2502] = 428, + [2503] = 431, + [2504] = 2395, + [2505] = 2495, + [2506] = 411, + [2507] = 2507, + [2508] = 2220, + [2509] = 2495, + [2510] = 411, + [2511] = 431, + [2512] = 906, + [2513] = 1025, + [2514] = 2455, + [2515] = 2375, + [2516] = 2194, + [2517] = 2338, + [2518] = 411, + [2519] = 2341, + [2520] = 2124, + [2521] = 907, + [2522] = 2125, + [2523] = 2127, + [2524] = 2128, + [2525] = 2129, + [2526] = 2130, + [2527] = 2131, + [2528] = 2132, + [2529] = 2133, + [2530] = 426, + [2531] = 2427, + [2532] = 2134, + [2533] = 2135, + [2534] = 433, + [2535] = 2136, + [2536] = 2395, + [2537] = 2184, + [2538] = 973, + [2539] = 2455, + [2540] = 434, + [2541] = 2261, + [2542] = 2395, + [2543] = 2138, + [2544] = 2150, + [2545] = 2455, + [2546] = 2204, + [2547] = 2021, + [2548] = 2395, + [2549] = 2023, + [2550] = 427, + [2551] = 2036, + [2552] = 428, + [2553] = 2455, + [2554] = 432, + [2555] = 2427, + [2556] = 2556, + [2557] = 2206, + [2558] = 2207, + [2559] = 2217, + [2560] = 426, + [2561] = 418, + [2562] = 436, + [2563] = 2338, + [2564] = 2341, + [2565] = 2124, + [2566] = 2125, + [2567] = 426, + [2568] = 427, + [2569] = 428, + [2570] = 2127, + [2571] = 429, + [2572] = 2128, + [2573] = 2129, + [2574] = 430, + [2575] = 2130, + [2576] = 435, + [2577] = 418, + [2578] = 2395, + [2579] = 432, + [2580] = 431, + [2581] = 429, + [2582] = 434, + [2583] = 2455, + [2584] = 437, + [2585] = 433, + [2586] = 2219, + [2587] = 2172, + [2588] = 2395, + [2589] = 430, + [2590] = 2220, + [2591] = 436, + [2592] = 435, + [2593] = 437, + [2594] = 2455, + [2595] = 2131, + [2596] = 2455, + [2597] = 2395, + [2598] = 2132, + [2599] = 2133, + [2600] = 418, + [2601] = 2455, + [2602] = 2134, + [2603] = 2135, + [2604] = 439, + [2605] = 2023, + [2606] = 2367, + [2607] = 2136, + [2608] = 2138, + [2609] = 2150, + [2610] = 2395, + [2611] = 2373, + [2612] = 434, + [2613] = 2395, + [2614] = 2374, + [2615] = 2064, + [2616] = 2200, + [2617] = 2395, + [2618] = 2395, + [2619] = 2619, + [2620] = 2619, + [2621] = 2621, + [2622] = 2619, + [2623] = 1088, + [2624] = 1004, + [2625] = 1118, + [2626] = 2619, + [2627] = 411, + [2628] = 2619, + [2629] = 2619, + [2630] = 1013, + [2631] = 1112, + [2632] = 2619, + [2633] = 2619, + [2634] = 2619, + [2635] = 2619, + [2636] = 2619, + [2637] = 2619, + [2638] = 2619, + [2639] = 1015, + [2640] = 1122, + [2641] = 1003, + [2642] = 2642, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2643, + [2648] = 2642, + [2649] = 2642, + [2650] = 2643, + [2651] = 2651, + [2652] = 2646, + [2653] = 2643, + [2654] = 2654, + [2655] = 2642, + [2656] = 2644, + [2657] = 2646, + [2658] = 2646, + [2659] = 2643, + [2660] = 2642, + [2661] = 2646, + [2662] = 2643, + [2663] = 2643, + [2664] = 2664, + [2665] = 2644, + [2666] = 497, + [2667] = 2642, + [2668] = 2642, + [2669] = 2644, + [2670] = 2642, + [2671] = 2671, + [2672] = 2672, + [2673] = 2642, + [2674] = 2643, + [2675] = 2642, + [2676] = 2643, + [2677] = 2646, + [2678] = 2642, + [2679] = 2646, + [2680] = 2644, + [2681] = 2642, + [2682] = 2682, + [2683] = 2644, + [2684] = 2644, + [2685] = 2642, + [2686] = 411, + [2687] = 2643, + [2688] = 2642, + [2689] = 2643, + [2690] = 2643, + [2691] = 2643, + [2692] = 2644, + [2693] = 2646, + [2694] = 2646, + [2695] = 2644, + [2696] = 2643, + [2697] = 2697, + [2698] = 2697, + [2699] = 2699, + [2700] = 2697, + [2701] = 2699, + [2702] = 2702, + [2703] = 2703, + [2704] = 2704, + [2705] = 2705, + [2706] = 2697, + [2707] = 2699, + [2708] = 2697, + [2709] = 2699, + [2710] = 2697, + [2711] = 2699, + [2712] = 2712, + [2713] = 2697, + [2714] = 2699, + [2715] = 2697, + [2716] = 2699, + [2717] = 2717, + [2718] = 2697, + [2719] = 2699, + [2720] = 2697, + [2721] = 2699, + [2722] = 2722, + [2723] = 2723, + [2724] = 2699, + [2725] = 2725, + [2726] = 2697, + [2727] = 2699, + [2728] = 2728, + [2729] = 2729, + [2730] = 2702, + [2731] = 2731, + [2732] = 2703, + [2733] = 2704, + [2734] = 2705, + [2735] = 2735, [2736] = 2736, - [2737] = 300, - [2738] = 301, - [2739] = 276, - [2740] = 302, - [2741] = 269, - [2742] = 270, - [2743] = 271, - [2744] = 279, - [2745] = 272, - [2746] = 273, - [2747] = 274, - [2748] = 275, - [2749] = 283, - [2750] = 163, - [2751] = 2668, - [2752] = 163, - [2753] = 262, - [2754] = 266, - [2755] = 267, - [2756] = 291, - [2757] = 279, - [2758] = 281, - [2759] = 282, - [2760] = 283, - [2761] = 2736, - [2762] = 284, - [2763] = 285, - [2764] = 286, - [2765] = 287, - [2766] = 314, - [2767] = 289, - [2768] = 290, - [2769] = 270, - [2770] = 292, - [2771] = 293, - [2772] = 278, - [2773] = 295, - [2774] = 296, - [2775] = 297, - [2776] = 298, - [2777] = 299, - [2778] = 300, - [2779] = 301, - [2780] = 302, - [2781] = 273, - [2782] = 274, - [2783] = 269, - [2784] = 280, - [2785] = 275, - [2786] = 163, - [2787] = 271, - [2788] = 276, - [2789] = 163, - [2790] = 277, - [2791] = 272, - [2792] = 294, - [2793] = 2793, - [2794] = 2793, - [2795] = 2795, - [2796] = 2795, - [2797] = 2795, - [2798] = 2793, - [2799] = 2795, - [2800] = 2795, - [2801] = 2793, - [2802] = 2793, - [2803] = 2795, - [2804] = 2795, - [2805] = 2793, - [2806] = 2793, - [2807] = 2795, - [2808] = 2808, - [2809] = 2795, - [2810] = 2793, - [2811] = 2795, - [2812] = 2793, - [2813] = 2813, - [2814] = 2793, - [2815] = 2795, - [2816] = 2793, - [2817] = 2793, - [2818] = 2795, - [2819] = 2793, - [2820] = 2795, - [2821] = 2793, - [2822] = 2793, - [2823] = 2795, - [2824] = 2795, - [2825] = 2795, - [2826] = 2795, - [2827] = 2827, - [2828] = 2795, - [2829] = 2793, - [2830] = 2795, - [2831] = 2831, - [2832] = 2795, - [2833] = 2793, - [2834] = 2793, - [2835] = 2793, - [2836] = 2795, - [2837] = 2793, - [2838] = 2795, - [2839] = 2795, - [2840] = 2840, - [2841] = 2795, - [2842] = 2793, - [2843] = 2793, - [2844] = 2793, - [2845] = 2795, - [2846] = 2793, - [2847] = 2793, - [2848] = 2795, - [2849] = 2795, - [2850] = 2850, - [2851] = 2851, - [2852] = 2793, - [2853] = 2795, - [2854] = 2795, - [2855] = 2793, - [2856] = 2795, - [2857] = 2857, - [2858] = 2793, - [2859] = 2795, - [2860] = 2793, - [2861] = 2861, - [2862] = 2861, - [2863] = 2861, - [2864] = 2864, - [2865] = 2864, - [2866] = 2864, - [2867] = 2861, - [2868] = 2861, - [2869] = 2861, - [2870] = 2870, - [2871] = 2864, - [2872] = 2872, - [2873] = 2873, - [2874] = 2874, - [2875] = 2864, - [2876] = 2876, - [2877] = 2877, - [2878] = 2864, - [2879] = 2864, - [2880] = 2861, - [2881] = 2861, - [2882] = 2864, - [2883] = 2861, - [2884] = 2864, - [2885] = 2861, - [2886] = 2861, - [2887] = 2861, - [2888] = 2861, - [2889] = 2864, - [2890] = 2861, - [2891] = 2891, - [2892] = 2861, - [2893] = 2893, - [2894] = 2894, - [2895] = 2895, - [2896] = 2864, - [2897] = 2861, - [2898] = 2864, - [2899] = 2864, - [2900] = 2861, - [2901] = 2861, - [2902] = 2864, - [2903] = 2864, - [2904] = 2861, - [2905] = 2864, - [2906] = 2864, - [2907] = 2864, - [2908] = 2861, - [2909] = 2909, - [2910] = 2910, - [2911] = 2911, - [2912] = 2864, - [2913] = 2861, - [2914] = 2864, - [2915] = 2915, - [2916] = 2864, - [2917] = 2861, - [2918] = 2864, - [2919] = 2919, - [2920] = 2920, - [2921] = 2864, - [2922] = 2922, - [2923] = 2861, - [2924] = 2924, - [2925] = 2861, + [2737] = 2737, + [2738] = 2712, + [2739] = 2739, + [2740] = 2740, + [2741] = 2741, + [2742] = 2712, + [2743] = 2697, + [2744] = 2744, + [2745] = 2699, + [2746] = 2746, + [2747] = 2747, + [2748] = 2736, + [2749] = 2739, + [2750] = 2750, + [2751] = 2717, + [2752] = 2731, + [2753] = 2740, + [2754] = 2741, + [2755] = 2744, + [2756] = 2756, + [2757] = 2722, + [2758] = 2758, + [2759] = 2735, + [2760] = 2737, + [2761] = 2761, + [2762] = 2761, + [2763] = 2756, + [2764] = 2750, + [2765] = 2697, + [2766] = 2747, + [2767] = 2699, + [2768] = 2735, + [2769] = 2737, + [2770] = 2722, + [2771] = 2723, + [2772] = 2761, + [2773] = 2773, + [2774] = 2728, + [2775] = 2729, + [2776] = 2756, + [2777] = 2702, + [2778] = 2717, + [2779] = 2731, + [2780] = 2703, + [2781] = 2704, + [2782] = 2705, + [2783] = 2735, + [2784] = 2737, + [2785] = 2736, + [2786] = 2739, + [2787] = 2740, + [2788] = 2723, + [2789] = 2735, + [2790] = 2737, + [2791] = 2741, + [2792] = 2744, + [2793] = 2758, + [2794] = 2747, + [2795] = 2735, + [2796] = 2737, + [2797] = 2728, + [2798] = 2758, + [2799] = 2735, + [2800] = 2737, + [2801] = 2735, + [2802] = 2737, + [2803] = 2735, + [2804] = 2737, + [2805] = 2735, + [2806] = 2737, + [2807] = 2735, + [2808] = 2737, + [2809] = 2697, + [2810] = 2735, + [2811] = 2737, + [2812] = 2735, + [2813] = 2737, + [2814] = 2699, + [2815] = 2735, + [2816] = 2737, + [2817] = 2735, + [2818] = 2737, + [2819] = 2735, + [2820] = 2737, + [2821] = 2746, + [2822] = 2737, + [2823] = 2735, + [2824] = 2737, + [2825] = 2735, + [2826] = 2737, + [2827] = 2735, + [2828] = 2737, + [2829] = 2747, + [2830] = 2735, + [2831] = 2737, + [2832] = 2735, + [2833] = 2737, + [2834] = 2735, + [2835] = 2737, + [2836] = 2735, + [2837] = 2737, + [2838] = 2735, + [2839] = 2737, + [2840] = 2758, + [2841] = 2735, + [2842] = 2737, + [2843] = 2735, + [2844] = 2737, + [2845] = 2735, + [2846] = 2737, + [2847] = 2735, + [2848] = 2737, + [2849] = 2735, + [2850] = 2737, + [2851] = 2735, + [2852] = 2737, + [2853] = 2735, + [2854] = 2737, + [2855] = 2697, + [2856] = 2735, + [2857] = 2737, + [2858] = 2735, + [2859] = 2737, + [2860] = 2699, + [2861] = 2735, + [2862] = 2737, + [2863] = 2735, + [2864] = 2737, + [2865] = 2735, + [2866] = 2737, + [2867] = 2867, + [2868] = 2735, + [2869] = 2737, + [2870] = 2735, + [2871] = 2737, + [2872] = 2735, + [2873] = 2737, + [2874] = 2735, + [2875] = 2737, + [2876] = 2735, + [2877] = 2737, + [2878] = 2699, + [2879] = 2735, + [2880] = 2737, + [2881] = 2735, + [2882] = 2737, + [2883] = 2735, + [2884] = 2737, + [2885] = 2735, + [2886] = 2737, + [2887] = 2750, + [2888] = 2735, + [2889] = 2737, + [2890] = 2735, + [2891] = 2737, + [2892] = 2758, + [2893] = 2735, + [2894] = 2737, + [2895] = 2697, + [2896] = 2735, + [2897] = 2737, + [2898] = 2735, + [2899] = 2737, + [2900] = 2735, + [2901] = 2737, + [2902] = 2699, + [2903] = 2735, + [2904] = 2737, + [2905] = 2735, + [2906] = 2737, + [2907] = 2697, + [2908] = 2735, + [2909] = 2737, + [2910] = 2735, + [2911] = 2737, + [2912] = 2735, + [2913] = 2737, + [2914] = 2735, + [2915] = 2737, + [2916] = 2758, + [2917] = 2697, + [2918] = 2699, + [2919] = 2697, + [2920] = 2699, + [2921] = 2729, + [2922] = 2746, + [2923] = 2746, + [2924] = 2735, + [2925] = 2925, [2926] = 2926, - [2927] = 2927, - [2928] = 2861, - [2929] = 2864, - [2930] = 2930, - [2931] = 2861, - [2932] = 2864, - [2933] = 2861, - [2934] = 2864, - [2935] = 2864, - [2936] = 2861, - [2937] = 2937, - [2938] = 2864, - [2939] = 2864, - [2940] = 2861, - [2941] = 2941, - [2942] = 2941, - [2943] = 2943, - [2944] = 2941, - [2945] = 2941, - [2946] = 2941, - [2947] = 2941, - [2948] = 2941, - [2949] = 2941, - [2950] = 2941, - [2951] = 2941, - [2952] = 2941, - [2953] = 2941, - [2954] = 2941, - [2955] = 2941, - [2956] = 2941, - [2957] = 2941, - [2958] = 2941, - [2959] = 2941, - [2960] = 2941, - [2961] = 2941, - [2962] = 2941, - [2963] = 2941, - [2964] = 2941, - [2965] = 2941, - [2966] = 2941, - [2967] = 2941, - [2968] = 2941, - [2969] = 2941, - [2970] = 2941, - [2971] = 2941, - [2972] = 2941, - [2973] = 2973, - [2974] = 2973, - [2975] = 2973, - [2976] = 2976, - [2977] = 2973, - [2978] = 2976, - [2979] = 2976, - [2980] = 2976, - [2981] = 2976, - [2982] = 2976, - [2983] = 2973, - [2984] = 2976, - [2985] = 2973, - [2986] = 2976, - [2987] = 2976, - [2988] = 2973, - [2989] = 2973, - [2990] = 2973, - [2991] = 2973, - [2992] = 2973, - [2993] = 2976, - [2994] = 2973, - [2995] = 2973, - [2996] = 2976, - [2997] = 2976, - [2998] = 2973, - [2999] = 2999, - [3000] = 2976, - [3001] = 2976, - [3002] = 2973, - [3003] = 2976, - [3004] = 3004, - [3005] = 2973, - [3006] = 2973, - [3007] = 2976, - [3008] = 2976, - [3009] = 2976, - [3010] = 3010, - [3011] = 2973, - [3012] = 3004, - [3013] = 2976, - [3014] = 2976, - [3015] = 2973, - [3016] = 2976, - [3017] = 2973, - [3018] = 3018, - [3019] = 2976, - [3020] = 3004, - [3021] = 2973, - [3022] = 2973, - [3023] = 2973, - [3024] = 2973, - [3025] = 3025, - [3026] = 2976, - [3027] = 2976, - [3028] = 3010, - [3029] = 2973, - [3030] = 2976, - [3031] = 3010, - [3032] = 2976, - [3033] = 2973, - [3034] = 2973, - [3035] = 2973, - [3036] = 2976, - [3037] = 2976, - [3038] = 2976, - [3039] = 2973, - [3040] = 301, - [3041] = 292, - [3042] = 293, - [3043] = 3043, - [3044] = 294, - [3045] = 295, - [3046] = 296, - [3047] = 3047, - [3048] = 297, - [3049] = 3049, - [3050] = 298, - [3051] = 3043, - [3052] = 3043, - [3053] = 3053, - [3054] = 3053, - [3055] = 285, - [3056] = 299, - [3057] = 279, - [3058] = 300, - [3059] = 3053, - [3060] = 3049, - [3061] = 3061, - [3062] = 276, - [3063] = 302, - [3064] = 3061, - [3065] = 281, - [3066] = 287, - [3067] = 3061, - [3068] = 262, - [3069] = 277, - [3070] = 3049, - [3071] = 278, - [3072] = 3043, - [3073] = 283, - [3074] = 282, - [3075] = 314, - [3076] = 289, - [3077] = 3077, - [3078] = 3043, - [3079] = 290, - [3080] = 291, - [3081] = 284, - [3082] = 286, - [3083] = 277, - [3084] = 267, - [3085] = 3085, - [3086] = 3086, - [3087] = 3087, - [3088] = 3088, - [3089] = 3089, - [3090] = 3090, - [3091] = 3091, - [3092] = 3092, - [3093] = 276, - [3094] = 278, - [3095] = 279, - [3096] = 281, - [3097] = 282, - [3098] = 283, - [3099] = 284, - [3100] = 285, - [3101] = 286, - [3102] = 287, - [3103] = 3103, - [3104] = 289, - [3105] = 290, - [3106] = 291, - [3107] = 292, - [3108] = 293, - [3109] = 294, - [3110] = 295, - [3111] = 296, - [3112] = 297, - [3113] = 298, - [3114] = 299, - [3115] = 300, - [3116] = 301, - [3117] = 302, - [3118] = 280, - [3119] = 266, - [3120] = 3103, - [3121] = 3087, - [3122] = 3103, - [3123] = 3087, - [3124] = 314, - [3125] = 278, - [3126] = 302, - [3127] = 272, - [3128] = 281, - [3129] = 3129, - [3130] = 3130, - [3131] = 282, - [3132] = 3130, - [3133] = 3129, - [3134] = 3091, - [3135] = 283, - [3136] = 284, - [3137] = 276, - [3138] = 3085, - [3139] = 3088, - [3140] = 273, - [3141] = 274, - [3142] = 271, - [3143] = 3092, - [3144] = 275, - [3145] = 301, - [3146] = 286, - [3147] = 287, - [3148] = 314, - [3149] = 289, - [3150] = 3086, - [3151] = 290, - [3152] = 291, - [3153] = 292, - [3154] = 293, - [3155] = 294, - [3156] = 295, - [3157] = 277, - [3158] = 269, - [3159] = 270, - [3160] = 3130, - [3161] = 279, - [3162] = 296, - [3163] = 297, - [3164] = 300, - [3165] = 298, - [3166] = 299, - [3167] = 3129, - [3168] = 285, - [3169] = 3086, - [3170] = 3092, - [3171] = 262, - [3172] = 3172, - [3173] = 3173, - [3174] = 3174, - [3175] = 3175, + [2927] = 2925, + [2928] = 2926, + [2929] = 2926, + [2930] = 2925, + [2931] = 2926, + [2932] = 2926, + [2933] = 2926, + [2934] = 2926, + [2935] = 2926, + [2936] = 2925, + [2937] = 2926, + [2938] = 2926, + [2939] = 2926, + [2940] = 2925, + [2941] = 2926, + [2942] = 2942, + [2943] = 2925, + [2944] = 2925, + [2945] = 2945, + [2946] = 2925, + [2947] = 2925, + [2948] = 2925, + [2949] = 2949, + [2950] = 2945, + [2951] = 2925, + [2952] = 2925, + [2953] = 2926, + [2954] = 2926, + [2955] = 2925, + [2956] = 2942, + [2957] = 2925, + [2958] = 2942, + [2959] = 2945, + [2960] = 2945, + [2961] = 2925, + [2962] = 2949, + [2963] = 2925, + [2964] = 2926, + [2965] = 2942, + [2966] = 2926, + [2967] = 2945, + [2968] = 2926, + [2969] = 2926, + [2970] = 2942, + [2971] = 2942, + [2972] = 2925, + [2973] = 2949, + [2974] = 2945, + [2975] = 2925, + [2976] = 2925, + [2977] = 2925, + [2978] = 2925, + [2979] = 2926, + [2980] = 2942, + [2981] = 2945, + [2982] = 2949, + [2983] = 2945, + [2984] = 2949, + [2985] = 2926, + [2986] = 2942, + [2987] = 2942, + [2988] = 2949, + [2989] = 2945, + [2990] = 2949, + [2991] = 2925, + [2992] = 2926, + [2993] = 2949, + [2994] = 2926, + [2995] = 2949, + [2996] = 2942, + [2997] = 2949, + [2998] = 2945, + [2999] = 2925, + [3000] = 2949, + [3001] = 2926, + [3002] = 2942, + [3003] = 2925, + [3004] = 2925, + [3005] = 2926, + [3006] = 2949, + [3007] = 2942, + [3008] = 2945, + [3009] = 2945, + [3010] = 2925, + [3011] = 2949, + [3012] = 2945, + [3013] = 2942, + [3014] = 2949, + [3015] = 2926, + [3016] = 2925, + [3017] = 2949, + [3018] = 2942, + [3019] = 2945, + [3020] = 2925, + [3021] = 2949, + [3022] = 2925, + [3023] = 2949, + [3024] = 2925, + [3025] = 2926, + [3026] = 2925, + [3027] = 2949, + [3028] = 2949, + [3029] = 2926, + [3030] = 2949, + [3031] = 2945, + [3032] = 2949, + [3033] = 2926, + [3034] = 2949, + [3035] = 2925, + [3036] = 2949, + [3037] = 2926, + [3038] = 2925, + [3039] = 2949, + [3040] = 2942, + [3041] = 2926, + [3042] = 2949, + [3043] = 2925, + [3044] = 2949, + [3045] = 2925, + [3046] = 2949, + [3047] = 2949, + [3048] = 2926, + [3049] = 2949, + [3050] = 2925, + [3051] = 2926, + [3052] = 2949, + [3053] = 2926, + [3054] = 2949, + [3055] = 2942, + [3056] = 2949, + [3057] = 2926, + [3058] = 2926, + [3059] = 2945, + [3060] = 2949, + [3061] = 2926, + [3062] = 2949, + [3063] = 2925, + [3064] = 2949, + [3065] = 2925, + [3066] = 2926, + [3067] = 2925, + [3068] = 2949, + [3069] = 2949, + [3070] = 2926, + [3071] = 2925, + [3072] = 2949, + [3073] = 2925, + [3074] = 2949, + [3075] = 2926, + [3076] = 2925, + [3077] = 2925, + [3078] = 2925, + [3079] = 2949, + [3080] = 2926, + [3081] = 2949, + [3082] = 2949, + [3083] = 2926, + [3084] = 2949, + [3085] = 2949, + [3086] = 2949, + [3087] = 2926, + [3088] = 2925, + [3089] = 2949, + [3090] = 2949, + [3091] = 2926, + [3092] = 2942, + [3093] = 411, + [3094] = 2949, + [3095] = 2926, + [3096] = 2926, + [3097] = 2949, + [3098] = 2949, + [3099] = 2926, + [3100] = 2925, + [3101] = 2942, + [3102] = 2949, + [3103] = 2926, + [3104] = 2949, + [3105] = 2945, + [3106] = 2949, + [3107] = 2926, + [3108] = 2926, + [3109] = 2925, + [3110] = 2925, + [3111] = 2949, + [3112] = 2942, + [3113] = 2925, + [3114] = 2949, + [3115] = 2926, + [3116] = 2925, + [3117] = 2949, + [3118] = 2949, + [3119] = 2926, + [3120] = 2925, + [3121] = 2926, + [3122] = 3122, + [3123] = 2925, + [3124] = 2942, + [3125] = 2926, + [3126] = 2945, + [3127] = 2925, + [3128] = 2926, + [3129] = 2945, + [3130] = 2925, + [3131] = 2942, + [3132] = 2925, + [3133] = 2945, + [3134] = 2945, + [3135] = 2925, + [3136] = 3122, + [3137] = 2926, + [3138] = 2925, + [3139] = 3122, + [3140] = 3122, + [3141] = 2926, + [3142] = 3142, + [3143] = 417, + [3144] = 417, + [3145] = 411, + [3146] = 411, + [3147] = 652, + [3148] = 417, + [3149] = 3149, + [3150] = 3149, + [3151] = 416, + [3152] = 660, + [3153] = 415, + [3154] = 652, + [3155] = 3155, + [3156] = 3156, + [3157] = 411, + [3158] = 415, + [3159] = 3156, + [3160] = 3155, + [3161] = 411, + [3162] = 416, + [3163] = 3156, + [3164] = 660, + [3165] = 3156, + [3166] = 3166, + [3167] = 436, + [3168] = 416, + [3169] = 425, + [3170] = 3170, + [3171] = 422, + [3172] = 423, + [3173] = 428, + [3174] = 439, + [3175] = 652, [3176] = 3176, - [3177] = 3177, - [3178] = 3178, - [3179] = 3088, - [3180] = 3091, - [3181] = 3181, - [3182] = 3182, - [3183] = 3172, - [3184] = 3184, - [3185] = 3176, - [3186] = 3186, - [3187] = 3175, - [3188] = 3176, - [3189] = 3189, - [3190] = 3181, - [3191] = 3173, - [3192] = 3178, - [3193] = 3173, - [3194] = 3189, - [3195] = 3189, + [3177] = 417, + [3178] = 426, + [3179] = 427, + [3180] = 428, + [3181] = 429, + [3182] = 3149, + [3183] = 430, + [3184] = 418, + [3185] = 432, + [3186] = 431, + [3187] = 434, + [3188] = 906, + [3189] = 433, + [3190] = 660, + [3191] = 3191, + [3192] = 3192, + [3193] = 435, + [3194] = 437, + [3195] = 423, [3196] = 3196, - [3197] = 3085, - [3198] = 3196, - [3199] = 3196, - [3200] = 3186, - [3201] = 3186, - [3202] = 3092, - [3203] = 3203, - [3204] = 3204, - [3205] = 3092, - [3206] = 3206, - [3207] = 3178, - [3208] = 3184, - [3209] = 3086, - [3210] = 3184, - [3211] = 3175, - [3212] = 3206, - [3213] = 3086, - [3214] = 3214, - [3215] = 3172, - [3216] = 3206, - [3217] = 3181, - [3218] = 3218, - [3219] = 3219, - [3220] = 3220, - [3221] = 3221, - [3222] = 3222, - [3223] = 3223, - [3224] = 266, - [3225] = 3218, - [3226] = 3222, - [3227] = 262, - [3228] = 3228, - [3229] = 3229, - [3230] = 3230, - [3231] = 3231, - [3232] = 3222, - [3233] = 3220, - [3234] = 3234, - [3235] = 3230, - [3236] = 3236, - [3237] = 3223, - [3238] = 3238, - [3239] = 3223, - [3240] = 3229, - [3241] = 3241, - [3242] = 3218, - [3243] = 3219, - [3244] = 280, - [3245] = 3220, - [3246] = 3229, - [3247] = 3238, - [3248] = 3241, - [3249] = 3249, - [3250] = 3250, - [3251] = 262, - [3252] = 3252, - [3253] = 3236, - [3254] = 3241, - [3255] = 3236, - [3256] = 3230, - [3257] = 3221, - [3258] = 3258, - [3259] = 3231, - [3260] = 3238, - [3261] = 3221, - [3262] = 3262, - [3263] = 3263, - [3264] = 3264, - [3265] = 3265, - [3266] = 3265, - [3267] = 3267, - [3268] = 3263, - [3269] = 3269, - [3270] = 3269, - [3271] = 3262, - [3272] = 3262, - [3273] = 3267, - [3274] = 3269, - [3275] = 3267, - [3276] = 3263, - [3277] = 3262, - [3278] = 3262, - [3279] = 3264, - [3280] = 3265, - [3281] = 3263, - [3282] = 3267, - [3283] = 3264, - [3284] = 3265, - [3285] = 3263, - [3286] = 3286, - [3287] = 3267, - [3288] = 3264, - [3289] = 3265, - [3290] = 3269, - [3291] = 3262, - [3292] = 3263, - [3293] = 3269, - [3294] = 3269, - [3295] = 3267, - [3296] = 3263, - [3297] = 3262, - [3298] = 3262, - [3299] = 3299, - [3300] = 2259, - [3301] = 3264, - [3302] = 3265, - [3303] = 3262, - [3304] = 3269, - [3305] = 3262, - [3306] = 3269, - [3307] = 3267, - [3308] = 266, - [3309] = 3263, - [3310] = 3267, - [3311] = 3269, - [3312] = 3262, - [3313] = 3263, - [3314] = 3314, - [3315] = 267, - [3316] = 3267, - [3317] = 3263, - [3318] = 3267, - [3319] = 3263, - [3320] = 3264, - [3321] = 3265, - [3322] = 3264, - [3323] = 3265, - [3324] = 3264, - [3325] = 3269, - [3326] = 3264, - [3327] = 3265, - [3328] = 3262, - [3329] = 3265, - [3330] = 3264, - [3331] = 3331, - [3332] = 3269, - [3333] = 3262, - [3334] = 3264, - [3335] = 3264, - [3336] = 3267, - [3337] = 3263, - [3338] = 3269, - [3339] = 3262, - [3340] = 3265, - [3341] = 3265, - [3342] = 3267, - [3343] = 3263, - [3344] = 3264, - [3345] = 3265, - [3346] = 3262, - [3347] = 3269, - [3348] = 3267, - [3349] = 3263, - [3350] = 3264, - [3351] = 3269, - [3352] = 3265, - [3353] = 3267, - [3354] = 3263, - [3355] = 3264, - [3356] = 3265, - [3357] = 3267, - [3358] = 3263, - [3359] = 3264, - [3360] = 3265, - [3361] = 3267, - [3362] = 3362, - [3363] = 3267, - [3364] = 3263, - [3365] = 3263, - [3366] = 3267, - [3367] = 3263, - [3368] = 3262, - [3369] = 3267, - [3370] = 3263, - [3371] = 3269, - [3372] = 3262, - [3373] = 3264, - [3374] = 3264, - [3375] = 3265, - [3376] = 3376, - [3377] = 3267, - [3378] = 3263, - [3379] = 3379, - [3380] = 3314, - [3381] = 3269, - [3382] = 3264, - [3383] = 3265, - [3384] = 3262, - [3385] = 3269, - [3386] = 3262, - [3387] = 3264, - [3388] = 266, - [3389] = 266, - [3390] = 3390, - [3391] = 3264, - [3392] = 3265, - [3393] = 3379, - [3394] = 3314, - [3395] = 3265, - [3396] = 3262, - [3397] = 3397, - [3398] = 3264, - [3399] = 3399, - [3400] = 3267, - [3401] = 3263, - [3402] = 3267, - [3403] = 3265, - [3404] = 3263, - [3405] = 3405, - [3406] = 280, - [3407] = 3379, - [3408] = 3269, - [3409] = 3264, - [3410] = 3265, - [3411] = 3265, - [3412] = 3379, - [3413] = 3413, - [3414] = 3414, - [3415] = 3267, - [3416] = 3379, - [3417] = 3264, - [3418] = 3263, - [3419] = 3419, - [3420] = 3264, - [3421] = 3379, - [3422] = 3422, - [3423] = 3379, - [3424] = 3265, - [3425] = 3379, - [3426] = 3269, - [3427] = 3262, - [3428] = 3269, - [3429] = 3429, - [3430] = 3269, - [3431] = 3267, - [3432] = 3263, - [3433] = 3262, - [3434] = 3267, - [3435] = 3262, - [3436] = 3263, - [3437] = 3269, - [3438] = 3264, - [3439] = 3269, - [3440] = 3262, - [3441] = 3265, - [3442] = 3262, - [3443] = 3331, - [3444] = 3269, - [3445] = 3269, - [3446] = 3262, - [3447] = 3264, - [3448] = 3267, - [3449] = 3263, - [3450] = 3265, - [3451] = 3265, - [3452] = 3269, - [3453] = 3262, - [3454] = 3262, - [3455] = 3267, - [3456] = 3263, - [3457] = 3267, - [3458] = 3263, - [3459] = 3269, - [3460] = 3267, - [3461] = 3267, - [3462] = 3263, - [3463] = 3299, - [3464] = 3263, - [3465] = 3269, - [3466] = 3262, - [3467] = 3264, - [3468] = 3265, - [3469] = 3267, - [3470] = 2268, - [3471] = 3264, - [3472] = 3379, - [3473] = 3299, - [3474] = 3264, - [3475] = 3265, - [3476] = 3264, - [3477] = 3265, - [3478] = 3265, - [3479] = 3479, - [3480] = 3269, - [3481] = 3481, - [3482] = 3482, - [3483] = 279, - [3484] = 269, - [3485] = 270, - [3486] = 3486, - [3487] = 281, - [3488] = 282, - [3489] = 283, - [3490] = 3482, - [3491] = 284, - [3492] = 2395, - [3493] = 271, - [3494] = 285, - [3495] = 286, - [3496] = 287, - [3497] = 314, - [3498] = 289, - [3499] = 290, - [3500] = 3500, - [3501] = 291, - [3502] = 3502, - [3503] = 3481, - [3504] = 292, - [3505] = 293, - [3506] = 294, - [3507] = 295, - [3508] = 296, - [3509] = 297, - [3510] = 298, - [3511] = 272, - [3512] = 3512, - [3513] = 299, - [3514] = 300, - [3515] = 301, - [3516] = 3500, - [3517] = 273, - [3518] = 3518, - [3519] = 302, - [3520] = 3500, - [3521] = 274, - [3522] = 3502, - [3523] = 3481, - [3524] = 275, - [3525] = 3500, - [3526] = 3502, - [3527] = 3481, - [3528] = 3500, - [3529] = 3502, - [3530] = 3481, - [3531] = 3500, - [3532] = 3502, - [3533] = 3481, - [3534] = 3500, - [3535] = 3502, - [3536] = 3481, + [3197] = 439, + [3198] = 422, + [3199] = 435, + [3200] = 3200, + [3201] = 418, + [3202] = 415, + [3203] = 420, + [3204] = 432, + [3205] = 424, + [3206] = 421, + [3207] = 427, + [3208] = 434, + [3209] = 425, + [3210] = 424, + [3211] = 421, + [3212] = 429, + [3213] = 433, + [3214] = 420, + [3215] = 431, + [3216] = 906, + [3217] = 3155, + [3218] = 430, + [3219] = 419, + [3220] = 411, + [3221] = 907, + [3222] = 907, + [3223] = 437, + [3224] = 3224, + [3225] = 419, + [3226] = 426, + [3227] = 417, + [3228] = 436, + [3229] = 3192, + [3230] = 433, + [3231] = 700, + [3232] = 906, + [3233] = 675, + [3234] = 415, + [3235] = 702, + [3236] = 430, + [3237] = 673, + [3238] = 3200, + [3239] = 439, + [3240] = 417, + [3241] = 424, + [3242] = 700, + [3243] = 3192, + [3244] = 416, + [3245] = 421, + [3246] = 3200, + [3247] = 702, + [3248] = 425, + [3249] = 673, + [3250] = 3176, + [3251] = 417, + [3252] = 418, + [3253] = 420, + [3254] = 428, + [3255] = 3255, + [3256] = 415, + [3257] = 416, + [3258] = 423, + [3259] = 427, + [3260] = 434, + [3261] = 432, + [3262] = 675, + [3263] = 436, + [3264] = 435, + [3265] = 3191, + [3266] = 437, + [3267] = 417, + [3268] = 429, + [3269] = 419, + [3270] = 3191, + [3271] = 422, + [3272] = 3272, + [3273] = 426, + [3274] = 3176, + [3275] = 431, + [3276] = 907, + [3277] = 432, + [3278] = 423, + [3279] = 3279, + [3280] = 1030, + [3281] = 1003, + [3282] = 416, + [3283] = 430, + [3284] = 415, + [3285] = 1015, + [3286] = 1975, + [3287] = 417, + [3288] = 424, + [3289] = 421, + [3290] = 700, + [3291] = 3291, + [3292] = 2003, + [3293] = 424, + [3294] = 437, + [3295] = 673, + [3296] = 675, + [3297] = 420, + [3298] = 3298, + [3299] = 673, + [3300] = 426, + [3301] = 700, + [3302] = 3272, + [3303] = 415, + [3304] = 3304, + [3305] = 427, + [3306] = 3306, + [3307] = 428, + [3308] = 3191, + [3309] = 429, + [3310] = 3310, + [3311] = 415, + [3312] = 430, + [3313] = 418, + [3314] = 418, + [3315] = 432, + [3316] = 431, + [3317] = 415, + [3318] = 673, + [3319] = 434, + [3320] = 421, + [3321] = 1013, + [3322] = 431, + [3323] = 426, + [3324] = 433, + [3325] = 973, + [3326] = 417, + [3327] = 1025, + [3328] = 702, + [3329] = 3329, + [3330] = 1013, + [3331] = 423, + [3332] = 416, + [3333] = 419, + [3334] = 422, + [3335] = 1004, + [3336] = 436, + [3337] = 435, + [3338] = 437, + [3339] = 439, + [3340] = 1030, + [3341] = 996, + [3342] = 416, + [3343] = 702, + [3344] = 3192, + [3345] = 3255, + [3346] = 973, + [3347] = 425, + [3348] = 1025, + [3349] = 419, + [3350] = 675, + [3351] = 422, + [3352] = 675, + [3353] = 3176, + [3354] = 3354, + [3355] = 436, + [3356] = 420, + [3357] = 3357, + [3358] = 3358, + [3359] = 1015, + [3360] = 435, + [3361] = 702, + [3362] = 3272, + [3363] = 3200, + [3364] = 1004, + [3365] = 411, + [3366] = 425, + [3367] = 996, + [3368] = 1003, + [3369] = 416, + [3370] = 3255, + [3371] = 428, + [3372] = 427, + [3373] = 439, + [3374] = 434, + [3375] = 429, + [3376] = 700, + [3377] = 433, + [3378] = 735, + [3379] = 435, + [3380] = 434, + [3381] = 3354, + [3382] = 3298, + [3383] = 422, + [3384] = 420, + [3385] = 675, + [3386] = 421, + [3387] = 429, + [3388] = 433, + [3389] = 418, + [3390] = 426, + [3391] = 433, + [3392] = 430, + [3393] = 1015, + [3394] = 702, + [3395] = 419, + [3396] = 3306, + [3397] = 436, + [3398] = 418, + [3399] = 432, + [3400] = 419, + [3401] = 435, + [3402] = 3310, + [3403] = 431, + [3404] = 1030, + [3405] = 3298, + [3406] = 434, + [3407] = 3329, + [3408] = 2023, + [3409] = 437, + [3410] = 429, + [3411] = 427, + [3412] = 430, + [3413] = 433, + [3414] = 3358, + [3415] = 424, + [3416] = 423, + [3417] = 700, + [3418] = 425, + [3419] = 428, + [3420] = 427, + [3421] = 1003, + [3422] = 415, + [3423] = 432, + [3424] = 3424, + [3425] = 420, + [3426] = 3426, + [3427] = 3427, + [3428] = 996, + [3429] = 3329, + [3430] = 424, + [3431] = 3431, + [3432] = 431, + [3433] = 3357, + [3434] = 3434, + [3435] = 421, + [3436] = 422, + [3437] = 434, + [3438] = 3354, + [3439] = 439, + [3440] = 425, + [3441] = 424, + [3442] = 421, + [3443] = 973, + [3444] = 3444, + [3445] = 3304, + [3446] = 429, + [3447] = 419, + [3448] = 430, + [3449] = 3357, + [3450] = 433, + [3451] = 3279, + [3452] = 420, + [3453] = 436, + [3454] = 429, + [3455] = 426, + [3456] = 3456, + [3457] = 3279, + [3458] = 3255, + [3459] = 423, + [3460] = 422, + [3461] = 1030, + [3462] = 3291, + [3463] = 426, + [3464] = 2036, + [3465] = 3465, + [3466] = 427, + [3467] = 418, + [3468] = 673, + [3469] = 425, + [3470] = 3306, + [3471] = 3304, + [3472] = 3310, + [3473] = 3473, + [3474] = 3291, + [3475] = 432, + [3476] = 424, + [3477] = 3477, + [3478] = 431, + [3479] = 431, + [3480] = 426, + [3481] = 973, + [3482] = 996, + [3483] = 439, + [3484] = 996, + [3485] = 428, + [3486] = 1030, + [3487] = 418, + [3488] = 1004, + [3489] = 436, + [3490] = 421, + [3491] = 439, + [3492] = 434, + [3493] = 420, + [3494] = 435, + [3495] = 3358, + [3496] = 437, + [3497] = 427, + [3498] = 419, + [3499] = 428, + [3500] = 432, + [3501] = 428, + [3502] = 423, + [3503] = 436, + [3504] = 973, + [3505] = 1025, + [3506] = 435, + [3507] = 423, + [3508] = 437, + [3509] = 430, + [3510] = 416, + [3511] = 425, + [3512] = 422, + [3513] = 3272, + [3514] = 1025, + [3515] = 3456, + [3516] = 1025, + [3517] = 3456, + [3518] = 1013, + [3519] = 437, + [3520] = 3520, + [3521] = 1088, + [3522] = 3298, + [3523] = 3523, + [3524] = 3310, + [3525] = 3329, + [3526] = 3354, + [3527] = 3358, + [3528] = 3357, + [3529] = 3279, + [3530] = 1046, + [3531] = 3531, + [3532] = 3532, + [3533] = 439, + [3534] = 3534, + [3535] = 3535, + [3536] = 3531, [3537] = 3537, - [3538] = 3500, - [3539] = 3502, - [3540] = 3481, - [3541] = 3500, - [3542] = 3502, - [3543] = 3481, - [3544] = 3502, - [3545] = 3486, - [3546] = 3518, - [3547] = 3502, - [3548] = 3481, - [3549] = 3502, - [3550] = 3481, - [3551] = 3502, - [3552] = 3552, - [3553] = 3502, - [3554] = 3481, - [3555] = 3502, - [3556] = 3481, - [3557] = 3502, - [3558] = 3481, - [3559] = 3502, - [3560] = 3481, - [3561] = 3502, - [3562] = 3481, - [3563] = 3537, - [3564] = 3502, - [3565] = 3481, - [3566] = 3486, - [3567] = 3482, - [3568] = 3481, - [3569] = 3502, - [3570] = 3481, - [3571] = 3502, - [3572] = 3481, - [3573] = 3502, - [3574] = 3481, - [3575] = 3502, - [3576] = 3481, - [3577] = 3502, - [3578] = 3481, - [3579] = 3502, - [3580] = 3481, - [3581] = 3502, - [3582] = 3502, - [3583] = 3481, - [3584] = 3502, - [3585] = 3481, - [3586] = 3502, - [3587] = 3481, - [3588] = 3502, - [3589] = 3481, - [3590] = 3502, - [3591] = 3481, - [3592] = 3518, - [3593] = 3502, - [3594] = 3481, - [3595] = 3512, - [3596] = 3552, - [3597] = 276, - [3598] = 3598, - [3599] = 277, - [3600] = 3552, - [3601] = 3601, - [3602] = 3512, - [3603] = 3603, - [3604] = 2382, - [3605] = 3603, - [3606] = 278, - [3607] = 3603, - [3608] = 3481, - [3609] = 3609, - [3610] = 3610, - [3611] = 3611, - [3612] = 3612, - [3613] = 3612, + [3538] = 3538, + [3539] = 3531, + [3540] = 3540, + [3541] = 3541, + [3542] = 3531, + [3543] = 3531, + [3544] = 3531, + [3545] = 3545, + [3546] = 3546, + [3547] = 3531, + [3548] = 3531, + [3549] = 3531, + [3550] = 3531, + [3551] = 3531, + [3552] = 3531, + [3553] = 3531, + [3554] = 3531, + [3555] = 3531, + [3556] = 3531, + [3557] = 3531, + [3558] = 3531, + [3559] = 3531, + [3560] = 3531, + [3561] = 3561, + [3562] = 3531, + [3563] = 3531, + [3564] = 3531, + [3565] = 3531, + [3566] = 3531, + [3567] = 3531, + [3568] = 3531, + [3569] = 3531, + [3570] = 3523, + [3571] = 3531, + [3572] = 3531, + [3573] = 3531, + [3574] = 3531, + [3575] = 3531, + [3576] = 3531, + [3577] = 3531, + [3578] = 3531, + [3579] = 3531, + [3580] = 3531, + [3581] = 3531, + [3582] = 3531, + [3583] = 3531, + [3584] = 3531, + [3585] = 3585, + [3586] = 3531, + [3587] = 3531, + [3588] = 3531, + [3589] = 3531, + [3590] = 3531, + [3591] = 3531, + [3592] = 3531, + [3593] = 3531, + [3594] = 3531, + [3595] = 3540, + [3596] = 3545, + [3597] = 3531, + [3598] = 3531, + [3599] = 3531, + [3600] = 3531, + [3601] = 3531, + [3602] = 3531, + [3603] = 3531, + [3604] = 3304, + [3605] = 3531, + [3606] = 3531, + [3607] = 3531, + [3608] = 3531, + [3609] = 3531, + [3610] = 3531, + [3611] = 3531, + [3612] = 3531, + [3613] = 3531, [3614] = 3614, - [3615] = 3615, + [3615] = 3520, [3616] = 3616, - [3617] = 3617, - [3618] = 3610, - [3619] = 3617, + [3617] = 3561, + [3618] = 3618, + [3619] = 3619, [3620] = 3620, [3621] = 3614, - [3622] = 3622, - [3623] = 3610, - [3624] = 3615, - [3625] = 3609, - [3626] = 3620, - [3627] = 3620, - [3628] = 3620, - [3629] = 3610, - [3630] = 3622, - [3631] = 3617, - [3632] = 3622, - [3633] = 3620, - [3634] = 3615, - [3635] = 3635, - [3636] = 3620, - [3637] = 3612, - [3638] = 3622, - [3639] = 3622, - [3640] = 3612, - [3641] = 3641, - [3642] = 3617, - [3643] = 3622, - [3644] = 3644, - [3645] = 3620, - [3646] = 3622, - [3647] = 3622, - [3648] = 3622, - [3649] = 3620, - [3650] = 3620, - [3651] = 3617, - [3652] = 3620, - [3653] = 3620, - [3654] = 3610, - [3655] = 3620, - [3656] = 3617, - [3657] = 3657, - [3658] = 3658, - [3659] = 3615, - [3660] = 3610, - [3661] = 3610, - [3662] = 3612, - [3663] = 3641, - [3664] = 3664, - [3665] = 3612, - [3666] = 3620, - [3667] = 3610, - [3668] = 3617, - [3669] = 3610, - [3670] = 3615, - [3671] = 3615, - [3672] = 3622, - [3673] = 3615, - [3674] = 3617, - [3675] = 3622, - [3676] = 3620, - [3677] = 3620, - [3678] = 3615, - [3679] = 3610, - [3680] = 3615, - [3681] = 3617, - [3682] = 3610, - [3683] = 3610, - [3684] = 3617, - [3685] = 3615, - [3686] = 3620, - [3687] = 3612, - [3688] = 3610, - [3689] = 3617, - [3690] = 3690, - [3691] = 3617, - [3692] = 3622, - [3693] = 3617, - [3694] = 3694, - [3695] = 3612, - [3696] = 3622, - [3697] = 3620, - [3698] = 3610, - [3699] = 3615, - [3700] = 3622, - [3701] = 3610, - [3702] = 3617, - [3703] = 3617, - [3704] = 3615, - [3705] = 3612, - [3706] = 3610, - [3707] = 3617, - [3708] = 3610, - [3709] = 3709, - [3710] = 3641, - [3711] = 3610, - [3712] = 3617, - [3713] = 3610, - [3714] = 3612, - [3715] = 3615, - [3716] = 3620, - [3717] = 3610, - [3718] = 3615, - [3719] = 3615, - [3720] = 3610, - [3721] = 3612, - [3722] = 3610, - [3723] = 3615, - [3724] = 3612, - [3725] = 3620, - [3726] = 3664, - [3727] = 3612, - [3728] = 3690, - [3729] = 3622, - [3730] = 3622, - [3731] = 3620, - [3732] = 3732, - [3733] = 3644, - [3734] = 3612, - [3735] = 3610, - [3736] = 3612, - [3737] = 3620, - [3738] = 3615, - [3739] = 3658, + [3622] = 3541, + [3623] = 1118, + [3624] = 1122, + [3625] = 3532, + [3626] = 3626, + [3627] = 3291, + [3628] = 1025, + [3629] = 3534, + [3630] = 3535, + [3631] = 1030, + [3632] = 422, + [3633] = 423, + [3634] = 3634, + [3635] = 424, + [3636] = 421, + [3637] = 1112, + [3638] = 420, + [3639] = 3537, + [3640] = 1088, + [3641] = 419, + [3642] = 425, + [3643] = 3520, + [3644] = 439, + [3645] = 3645, + [3646] = 3618, + [3647] = 3585, + [3648] = 973, + [3649] = 996, + [3650] = 1118, + [3651] = 426, + [3652] = 428, + [3653] = 3540, + [3654] = 3545, + [3655] = 1122, + [3656] = 418, + [3657] = 432, + [3658] = 431, + [3659] = 3619, + [3660] = 427, + [3661] = 434, + [3662] = 429, + [3663] = 433, + [3664] = 3645, + [3665] = 430, + [3666] = 436, + [3667] = 435, + [3668] = 437, + [3669] = 3620, + [3670] = 3538, + [3671] = 3531, + [3672] = 3531, + [3673] = 3306, + [3674] = 1112, + [3675] = 3531, + [3676] = 3676, + [3677] = 3677, + [3678] = 3678, + [3679] = 3679, + [3680] = 3680, + [3681] = 3532, + [3682] = 3538, + [3683] = 3523, + [3684] = 3684, + [3685] = 3685, + [3686] = 3686, + [3687] = 735, + [3688] = 3619, + [3689] = 3689, + [3690] = 3538, + [3691] = 1118, + [3692] = 1112, + [3693] = 1112, + [3694] = 3680, + [3695] = 1088, + [3696] = 3696, + [3697] = 3546, + [3698] = 1122, + [3699] = 3699, + [3700] = 1088, + [3701] = 3701, + [3702] = 3676, + [3703] = 3703, + [3704] = 3561, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 3534, + [3709] = 3585, + [3710] = 417, + [3711] = 1118, + [3712] = 3699, + [3713] = 3678, + [3714] = 3706, + [3715] = 3715, + [3716] = 3523, + [3717] = 3717, + [3718] = 1122, + [3719] = 3614, + [3720] = 3535, + [3721] = 3626, + [3722] = 3645, + [3723] = 3699, + [3724] = 3616, + [3725] = 3618, + [3726] = 3532, + [3727] = 3727, + [3728] = 3616, + [3729] = 3620, + [3730] = 3730, + [3731] = 3677, + [3732] = 3701, + [3733] = 3703, + [3734] = 3705, + [3735] = 3541, + [3736] = 3546, + [3737] = 3737, + [3738] = 3738, + [3739] = 3679, [3740] = 3740, - [3741] = 3622, - [3742] = 3610, - [3743] = 3612, - [3744] = 3622, - [3745] = 3617, - [3746] = 3620, - [3747] = 3610, - [3748] = 3615, - [3749] = 3617, - [3750] = 3615, - [3751] = 3617, - [3752] = 3615, - [3753] = 3622, - [3754] = 3622, - [3755] = 3612, - [3756] = 3709, - [3757] = 3615, - [3758] = 3616, - [3759] = 3615, - [3760] = 3622, - [3761] = 3612, - [3762] = 3622, - [3763] = 3622, - [3764] = 3644, - [3765] = 3611, - [3766] = 3622, - [3767] = 3622, - [3768] = 3620, - [3769] = 3610, - [3770] = 3620, - [3771] = 3615, - [3772] = 3622, - [3773] = 3612, - [3774] = 3620, - [3775] = 3610, - [3776] = 3612, - [3777] = 3617, - [3778] = 3658, - [3779] = 3622, - [3780] = 3615, - [3781] = 3612, - [3782] = 3664, - [3783] = 3614, - [3784] = 3612, - [3785] = 3622, - [3786] = 3620, - [3787] = 3615, - [3788] = 3611, - [3789] = 3620, - [3790] = 3615, - [3791] = 3615, - [3792] = 3610, - [3793] = 3617, - [3794] = 3617, - [3795] = 3612, - [3796] = 3615, - [3797] = 3615, - [3798] = 3740, - [3799] = 3612, - [3800] = 3709, - [3801] = 3620, - [3802] = 3622, - [3803] = 3617, - [3804] = 3617, - [3805] = 3610, - [3806] = 3612, - [3807] = 3690, - [3808] = 3612, - [3809] = 3620, - [3810] = 3609, - [3811] = 3617, - [3812] = 3615, - [3813] = 3617, - [3814] = 3612, - [3815] = 3615, - [3816] = 3612, - [3817] = 3622, - [3818] = 3740, - [3819] = 3657, - [3820] = 3657, - [3821] = 3620, - [3822] = 3612, - [3823] = 3612, - [3824] = 3620, - [3825] = 3622, - [3826] = 3617, - [3827] = 3612, - [3828] = 3617, + [3741] = 3684, + [3742] = 3634, + [3743] = 415, + [3744] = 3537, + [3745] = 3538, + [3746] = 3619, + [3747] = 416, + [3748] = 3685, + [3749] = 3534, + [3750] = 3535, + [3751] = 3751, + [3752] = 3686, + [3753] = 3626, + [3754] = 3689, + [3755] = 417, + [3756] = 1118, + [3757] = 3715, + [3758] = 3696, + [3759] = 3759, + [3760] = 1112, + [3761] = 3523, + [3762] = 3619, + [3763] = 1088, + [3764] = 3634, + [3765] = 3727, + [3766] = 3766, + [3767] = 3767, + [3768] = 3534, + [3769] = 3769, + [3770] = 3535, + [3771] = 1122, + [3772] = 3717, + [3773] = 3645, + [3774] = 3737, + [3775] = 3740, + [3776] = 3537, + [3777] = 3759, + [3778] = 3767, + [3779] = 3645, + [3780] = 3730, + [3781] = 3781, + [3782] = 3532, + [3783] = 3769, + [3784] = 3537, + [3785] = 3781, + [3786] = 3738, + [3787] = 3751, + [3788] = 3766, + [3789] = 3789, + [3790] = 3790, + [3791] = 415, + [3792] = 3792, + [3793] = 3523, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 416, + [3798] = 3798, + [3799] = 3799, + [3800] = 3789, + [3801] = 3634, + [3802] = 436, + [3803] = 3803, + [3804] = 431, + [3805] = 3805, + [3806] = 435, + [3807] = 3532, + [3808] = 437, + [3809] = 3809, + [3810] = 3810, + [3811] = 3798, + [3812] = 3799, + [3813] = 433, + [3814] = 3789, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 3815, + [3826] = 3816, + [3827] = 3817, + [3828] = 3828, + [3829] = 3818, + [3830] = 3819, + [3831] = 3820, + [3832] = 3821, + [3833] = 3822, + [3834] = 3834, + [3835] = 3626, + [3836] = 3534, + [3837] = 3837, + [3838] = 3535, + [3839] = 3538, + [3840] = 3537, + [3841] = 417, + [3842] = 3619, + [3843] = 3645, + [3844] = 3684, + [3845] = 3685, + [3846] = 3846, + [3847] = 3847, + [3848] = 3717, + [3849] = 3155, + [3850] = 3546, + [3851] = 3851, + [3852] = 1118, + [3853] = 1122, + [3854] = 3676, + [3855] = 3855, + [3856] = 3706, + [3857] = 3686, + [3858] = 3689, + [3859] = 3824, + [3860] = 3715, + [3861] = 3861, + [3862] = 3740, + [3863] = 3759, + [3864] = 3767, + [3865] = 3769, + [3866] = 434, + [3867] = 3781, + [3868] = 3751, + [3869] = 3678, + [3870] = 3680, + [3871] = 1112, + [3872] = 423, + [3873] = 1088, + [3874] = 422, + [3875] = 3149, + [3876] = 652, + [3877] = 424, + [3878] = 421, + [3879] = 420, + [3880] = 3809, + [3881] = 3798, + [3882] = 3799, + [3883] = 3815, + [3884] = 3816, + [3885] = 3817, + [3886] = 3818, + [3887] = 3696, + [3888] = 3819, + [3889] = 3820, + [3890] = 3821, + [3891] = 3822, + [3892] = 419, + [3893] = 3893, + [3894] = 425, + [3895] = 3824, + [3896] = 3896, + [3897] = 3809, + [3898] = 3898, + [3899] = 3727, + [3900] = 3730, + [3901] = 3677, + [3902] = 3701, + [3903] = 3703, + [3904] = 3705, + [3905] = 3766, + [3906] = 3737, + [3907] = 3738, + [3908] = 3679, + [3909] = 3909, + [3910] = 426, + [3911] = 427, + [3912] = 428, + [3913] = 429, + [3914] = 432, + [3915] = 3616, + [3916] = 660, + [3917] = 430, + [3918] = 418, + [3919] = 3919, + [3920] = 3920, + [3921] = 3921, + [3922] = 3922, + [3923] = 3923, + [3924] = 3924, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 3935, + [3936] = 3255, + [3937] = 3937, + [3938] = 424, + [3939] = 417, + [3940] = 700, + [3941] = 1046, + [3942] = 421, + [3943] = 3943, + [3944] = 3944, + [3945] = 3192, + [3946] = 3946, + [3947] = 3947, + [3948] = 420, + [3949] = 426, + [3950] = 3272, + [3951] = 427, + [3952] = 428, + [3953] = 417, + [3954] = 3932, + [3955] = 673, + [3956] = 3956, + [3957] = 429, + [3958] = 3958, + [3959] = 3959, + [3960] = 430, + [3961] = 418, + [3962] = 432, + [3963] = 3963, + [3964] = 434, + [3965] = 433, + [3966] = 3966, + [3967] = 3967, + [3968] = 675, + [3969] = 3192, + [3970] = 3970, + [3971] = 419, + [3972] = 436, + [3973] = 435, + [3974] = 437, + [3975] = 3200, + [3976] = 3976, + [3977] = 3977, + [3978] = 3978, + [3979] = 3979, + [3980] = 3980, + [3981] = 3981, + [3982] = 3932, + [3983] = 423, + [3984] = 3984, + [3985] = 422, + [3986] = 3986, + [3987] = 906, + [3988] = 702, + [3989] = 425, + [3990] = 439, + [3991] = 3991, + [3992] = 3992, + [3993] = 3993, + [3994] = 3994, + [3995] = 907, + [3996] = 3996, + [3997] = 415, + [3998] = 3998, + [3999] = 439, + [4000] = 4000, + [4001] = 416, + [4002] = 4002, + [4003] = 4003, + [4004] = 431, + [4005] = 423, + [4006] = 4006, + [4007] = 4006, + [4008] = 3304, + [4009] = 3272, + [4010] = 673, + [4011] = 673, + [4012] = 702, + [4013] = 4013, + [4014] = 420, + [4015] = 4015, + [4016] = 973, + [4017] = 4006, + [4018] = 424, + [4019] = 675, + [4020] = 421, + [4021] = 700, + [4022] = 996, + [4023] = 426, + [4024] = 427, + [4025] = 4006, + [4026] = 428, + [4027] = 3255, + [4028] = 429, + [4029] = 4006, + [4030] = 3354, + [4031] = 419, + [4032] = 430, + [4033] = 418, + [4034] = 415, + [4035] = 432, + [4036] = 431, + [4037] = 425, + [4038] = 4006, + [4039] = 434, + [4040] = 4040, + [4041] = 433, + [4042] = 417, + [4043] = 415, + [4044] = 4044, + [4045] = 4045, + [4046] = 1030, + [4047] = 416, + [4048] = 416, + [4049] = 436, + [4050] = 435, + [4051] = 437, + [4052] = 4006, + [4053] = 439, + [4054] = 422, + [4055] = 675, + [4056] = 4006, + [4057] = 1025, + [4058] = 700, + [4059] = 702, + [4060] = 423, + [4061] = 430, + [4062] = 1030, + [4063] = 1015, + [4064] = 996, + [4065] = 3354, + [4066] = 3298, + [4067] = 973, + [4068] = 420, + [4069] = 702, + [4070] = 436, + [4071] = 435, + [4072] = 437, + [4073] = 3279, + [4074] = 430, + [4075] = 428, + [4076] = 415, + [4077] = 418, + [4078] = 427, + [4079] = 439, + [4080] = 416, + [4081] = 420, + [4082] = 429, + [4083] = 3310, + [4084] = 3304, + [4085] = 675, + [4086] = 3329, + [4087] = 1003, + [4088] = 432, + [4089] = 418, + [4090] = 433, + [4091] = 424, + [4092] = 419, + [4093] = 1025, + [4094] = 424, + [4095] = 4095, + [4096] = 1025, + [4097] = 436, + [4098] = 435, + [4099] = 425, + [4100] = 437, + [4101] = 421, + [4102] = 1030, + [4103] = 426, + [4104] = 3357, + [4105] = 425, + [4106] = 673, + [4107] = 4107, + [4108] = 432, + [4109] = 423, + [4110] = 431, + [4111] = 431, + [4112] = 427, + [4113] = 428, + [4114] = 422, + [4115] = 422, + [4116] = 3358, + [4117] = 973, + [4118] = 4118, + [4119] = 434, + [4120] = 1013, + [4121] = 419, + [4122] = 429, + [4123] = 439, + [4124] = 433, + [4125] = 700, + [4126] = 434, + [4127] = 426, + [4128] = 996, + [4129] = 3279, + [4130] = 1004, + [4131] = 421, + [4132] = 996, + [4133] = 422, + [4134] = 427, + [4135] = 428, + [4136] = 434, + [4137] = 4137, + [4138] = 973, + [4139] = 4137, + [4140] = 429, + [4141] = 4141, + [4142] = 433, + [4143] = 1122, + [4144] = 424, + [4145] = 421, + [4146] = 420, + [4147] = 4141, + [4148] = 4141, + [4149] = 430, + [4150] = 4150, + [4151] = 4151, + [4152] = 417, + [4153] = 1030, + [4154] = 419, + [4155] = 435, + [4156] = 4137, + [4157] = 1088, + [4158] = 437, + [4159] = 436, + [4160] = 431, + [4161] = 4137, + [4162] = 1118, + [4163] = 1112, + [4164] = 425, + [4165] = 1025, + [4166] = 4137, + [4167] = 4141, + [4168] = 426, + [4169] = 423, + [4170] = 418, + [4171] = 432, + [4172] = 439, + [4173] = 4141, + [4174] = 4174, + [4175] = 3645, + [4176] = 3634, + [4177] = 3766, + [4178] = 3532, + [4179] = 1088, + [4180] = 1118, + [4181] = 3541, + [4182] = 3737, + [4183] = 3738, + [4184] = 700, + [4185] = 3696, + [4186] = 673, + [4187] = 3534, + [4188] = 3730, + [4189] = 3535, + [4190] = 4174, + [4191] = 3619, + [4192] = 416, + [4193] = 4174, + [4194] = 1112, + [4195] = 4174, + [4196] = 3272, + [4197] = 4174, + [4198] = 675, + [4199] = 3626, + [4200] = 4174, + [4201] = 3614, + [4202] = 3677, + [4203] = 3679, + [4204] = 415, + [4205] = 3701, + [4206] = 1122, + [4207] = 1088, + [4208] = 3620, + [4209] = 702, + [4210] = 3727, + [4211] = 1122, + [4212] = 1118, + [4213] = 3523, + [4214] = 3561, + [4215] = 3538, + [4216] = 1112, + [4217] = 3537, + [4218] = 3585, + [4219] = 3703, + [4220] = 3618, + [4221] = 3705, + [4222] = 3645, + [4223] = 422, + [4224] = 418, + [4225] = 432, + [4226] = 431, + [4227] = 973, + [4228] = 3767, + [4229] = 996, + [4230] = 423, + [4231] = 411, + [4232] = 1025, + [4233] = 424, + [4234] = 421, + [4235] = 420, + [4236] = 1112, + [4237] = 419, + [4238] = 1030, + [4239] = 427, + [4240] = 434, + [4241] = 1088, + [4242] = 429, + [4243] = 433, + [4244] = 3680, + [4245] = 425, + [4246] = 430, + [4247] = 439, + [4248] = 436, + [4249] = 435, + [4250] = 437, + [4251] = 3727, + [4252] = 3730, + [4253] = 3677, + [4254] = 3701, + [4255] = 3703, + [4256] = 3705, + [4257] = 3766, + [4258] = 3678, + [4259] = 3738, + [4260] = 3679, + [4261] = 3532, + [4262] = 3684, + [4263] = 3685, + [4264] = 3538, + [4265] = 3717, + [4266] = 1118, + [4267] = 3534, + [4268] = 3619, + [4269] = 3535, + [4270] = 3523, + [4271] = 3769, + [4272] = 3759, + [4273] = 3676, + [4274] = 3781, + [4275] = 426, + [4276] = 3706, + [4277] = 3696, + [4278] = 1122, + [4279] = 428, + [4280] = 3537, + [4281] = 3686, + [4282] = 3689, + [4283] = 3751, + [4284] = 3715, + [4285] = 3740, + [4286] = 3737, + [4287] = 4287, + [4288] = 4288, + [4289] = 4289, + [4290] = 4290, + [4291] = 4290, + [4292] = 4290, + [4293] = 4293, + [4294] = 4290, + [4295] = 4293, + [4296] = 4290, + [4297] = 4293, + [4298] = 4290, + [4299] = 4293, + [4300] = 4290, + [4301] = 4293, + [4302] = 4293, + [4303] = 4290, + [4304] = 4293, + [4305] = 4290, + [4306] = 4293, + [4307] = 4290, + [4308] = 4293, + [4309] = 4293, + [4310] = 4290, + [4311] = 1122, + [4312] = 4293, + [4313] = 4290, + [4314] = 4290, + [4315] = 4293, + [4316] = 4290, + [4317] = 4293, + [4318] = 4290, + [4319] = 1112, + [4320] = 4290, + [4321] = 4293, + [4322] = 4293, + [4323] = 4293, + [4324] = 4290, + [4325] = 4290, + [4326] = 4290, + [4327] = 4293, + [4328] = 4290, + [4329] = 4290, + [4330] = 4290, + [4331] = 4293, + [4332] = 4293, + [4333] = 4293, + [4334] = 4290, + [4335] = 4293, + [4336] = 4290, + [4337] = 4293, + [4338] = 4290, + [4339] = 4290, + [4340] = 4293, + [4341] = 4290, + [4342] = 4290, + [4343] = 4290, + [4344] = 4293, + [4345] = 4290, + [4346] = 4290, + [4347] = 1088, + [4348] = 4293, + [4349] = 4293, + [4350] = 4290, + [4351] = 4293, + [4352] = 4293, + [4353] = 4290, + [4354] = 4290, + [4355] = 4293, + [4356] = 4293, + [4357] = 4290, + [4358] = 4293, + [4359] = 4293, + [4360] = 4293, + [4361] = 4290, + [4362] = 4290, + [4363] = 4290, + [4364] = 4293, + [4365] = 4290, + [4366] = 4293, + [4367] = 4290, + [4368] = 4293, + [4369] = 4290, + [4370] = 4290, + [4371] = 4293, + [4372] = 4293, + [4373] = 4290, + [4374] = 4374, + [4375] = 4293, + [4376] = 4293, + [4377] = 4293, + [4378] = 4290, + [4379] = 4293, + [4380] = 1118, + [4381] = 4290, + [4382] = 4293, + [4383] = 4293, + [4384] = 4290, + [4385] = 4293, + [4386] = 4290, + [4387] = 4293, + [4388] = 4290, + [4389] = 4290, + [4390] = 4293, + [4391] = 4290, + [4392] = 4290, + [4393] = 4293, + [4394] = 4290, + [4395] = 4293, + [4396] = 4290, + [4397] = 4290, + [4398] = 4293, + [4399] = 4293, + [4400] = 4293, + [4401] = 4290, + [4402] = 4290, + [4403] = 4290, + [4404] = 4293, + [4405] = 4293, + [4406] = 4290, + [4407] = 4290, + [4408] = 4293, + [4409] = 4293, + [4410] = 4290, + [4411] = 4293, + [4412] = 4293, + [4413] = 4293, + [4414] = 4293, + [4415] = 4293, + [4416] = 4290, + [4417] = 4290, + [4418] = 4293, + [4419] = 4290, + [4420] = 4293, + [4421] = 411, + [4422] = 4293, + [4423] = 4290, + [4424] = 4293, + [4425] = 4290, + [4426] = 4290, + [4427] = 4293, + [4428] = 4290, + [4429] = 4290, + [4430] = 4293, + [4431] = 4293, + [4432] = 4290, + [4433] = 4290, + [4434] = 4293, + [4435] = 4293, + [4436] = 4289, + [4437] = 4437, + [4438] = 418, + [4439] = 4437, + [4440] = 4437, + [4441] = 432, + [4442] = 431, + [4443] = 4437, + [4444] = 4437, + [4445] = 4445, + [4446] = 4446, + [4447] = 4446, + [4448] = 4445, + [4449] = 4449, + [4450] = 4449, + [4451] = 4446, + [4452] = 4452, + [4453] = 4445, + [4454] = 4449, + [4455] = 4446, + [4456] = 4446, + [4457] = 4445, + [4458] = 4445, + [4459] = 4449, + [4460] = 4445, + [4461] = 4449, + [4462] = 4446, + [4463] = 4446, + [4464] = 4452, + [4465] = 4446, + [4466] = 4445, + [4467] = 4445, + [4468] = 4449, + [4469] = 4445, + [4470] = 4449, + [4471] = 4446, + [4472] = 4449, + [4473] = 4452, + [4474] = 4446, + [4475] = 4446, + [4476] = 4449, + [4477] = 4446, + [4478] = 4445, + [4479] = 4449, + [4480] = 4446, + [4481] = 4449, + [4482] = 4446, + [4483] = 4446, + [4484] = 4445, + [4485] = 4485, + [4486] = 4445, + [4487] = 4446, + [4488] = 4446, + [4489] = 4449, + [4490] = 4445, + [4491] = 4445, + [4492] = 4449, + [4493] = 4446, + [4494] = 4449, + [4495] = 4445, + [4496] = 4446, + [4497] = 4445, + [4498] = 4446, + [4499] = 4449, + [4500] = 4445, + [4501] = 4446, + [4502] = 4449, + [4503] = 4446, + [4504] = 4446, + [4505] = 4445, + [4506] = 4446, + [4507] = 4445, + [4508] = 4445, + [4509] = 4449, + [4510] = 4446, + [4511] = 4446, + [4512] = 4446, + [4513] = 4445, + [4514] = 4445, + [4515] = 4449, + [4516] = 4445, + [4517] = 4449, + [4518] = 4446, + [4519] = 4446, + [4520] = 4445, + [4521] = 4445, + [4522] = 4446, + [4523] = 4445, + [4524] = 4445, + [4525] = 4445, + [4526] = 4449, + [4527] = 4449, + [4528] = 4446, + [4529] = 4446, + [4530] = 4449, + [4531] = 4445, + [4532] = 4449, + [4533] = 4445, + [4534] = 4446, + [4535] = 4446, + [4536] = 4446, + [4537] = 4445, + [4538] = 4446, + [4539] = 4449, + [4540] = 4449, + [4541] = 4445, + [4542] = 4446, + [4543] = 4446, + [4544] = 4452, + [4545] = 4445, + [4546] = 4449, + [4547] = 4446, + [4548] = 4445, + [4549] = 4452, + [4550] = 4446, + [4551] = 4445, + [4552] = 4445, + [4553] = 4449, + [4554] = 4449, + [4555] = 4446, + [4556] = 4446, + [4557] = 4445, + [4558] = 4449, + [4559] = 4445, + [4560] = 4449, + [4561] = 4445, + [4562] = 4446, + [4563] = 4445, + [4564] = 4445, + [4565] = 4452, + [4566] = 4449, + [4567] = 4446, + [4568] = 4446, + [4569] = 4445, + [4570] = 4446, + [4571] = 4449, + [4572] = 4445, + [4573] = 4446, + [4574] = 4449, + [4575] = 4446, + [4576] = 4445, + [4577] = 4445, + [4578] = 4445, + [4579] = 4449, + [4580] = 4446, + [4581] = 4446, + [4582] = 4446, + [4583] = 4445, + [4584] = 4445, + [4585] = 4449, + [4586] = 4449, + [4587] = 4449, + [4588] = 4445, + [4589] = 4446, + [4590] = 4446, + [4591] = 4446, + [4592] = 4445, + [4593] = 4446, + [4594] = 4449, + [4595] = 4445, + [4596] = 4449, + [4597] = 4445, + [4598] = 4446, + [4599] = 4445, + [4600] = 4446, + [4601] = 4445, + [4602] = 4449, + [4603] = 4445, + [4604] = 4449, + [4605] = 4446, + [4606] = 4445, + [4607] = 4449, + [4608] = 4445, + [4609] = 4445, + [4610] = 4446, + [4611] = 4449, + [4612] = 4449, + [4613] = 4613, + [4614] = 4445, + [4615] = 4446, + [4616] = 4445, + [4617] = 4445, + [4618] = 4449, + [4619] = 4449, + [4620] = 4449, + [4621] = 4445, + [4622] = 4446, + [4623] = 4446, + [4624] = 4445, + [4625] = 4449, + [4626] = 4449, + [4627] = 4446, + [4628] = 4446, + [4629] = 4449, + [4630] = 4445, + [4631] = 4449, + [4632] = 4446, + [4633] = 4446, + [4634] = 4445, + [4635] = 4445, + [4636] = 4445, + [4637] = 4449, + [4638] = 4449, + [4639] = 4446, + [4640] = 4449, + [4641] = 4446, + [4642] = 4642, + [4643] = 4449, + [4644] = 4449, + [4645] = 4445, + [4646] = 4449, + [4647] = 4445, + [4648] = 4445, + [4649] = 4446, + [4650] = 4446, + [4651] = 418, + [4652] = 4652, + [4653] = 4652, + [4654] = 4654, + [4655] = 4652, + [4656] = 4656, + [4657] = 4652, + [4658] = 4652, + [4659] = 4659, + [4660] = 4652, + [4661] = 4661, + [4662] = 432, + [4663] = 431, + [4664] = 4652, + [4665] = 434, + [4666] = 4652, + [4667] = 4652, + [4668] = 4652, + [4669] = 419, + [4670] = 4652, + [4671] = 4652, + [4672] = 4652, + [4673] = 4652, + [4674] = 433, + [4675] = 436, + [4676] = 435, + [4677] = 437, + [4678] = 4652, + [4679] = 4652, + [4680] = 425, + [4681] = 4652, + [4682] = 4652, + [4683] = 1188, + [4684] = 4684, + [4685] = 4685, + [4686] = 4684, + [4687] = 4687, + [4688] = 4688, + [4689] = 4689, + [4690] = 4689, + [4691] = 4688, + [4692] = 4688, + [4693] = 4685, + [4694] = 4689, + [4695] = 4689, + [4696] = 4688, + [4697] = 4697, + [4698] = 4685, + [4699] = 4684, + [4700] = 4684, + [4701] = 4689, + [4702] = 4689, + [4703] = 4685, + [4704] = 4688, + [4705] = 4689, + [4706] = 4689, + [4707] = 4684, + [4708] = 4689, + [4709] = 4709, + [4710] = 4685, + [4711] = 4711, + [4712] = 417, + [4713] = 4713, + [4714] = 4714, + [4715] = 4715, + [4716] = 436, + [4717] = 415, + [4718] = 434, + [4719] = 433, + [4720] = 4720, + [4721] = 4721, + [4722] = 418, + [4723] = 432, + [4724] = 431, + [4725] = 4725, + [4726] = 4721, + [4727] = 416, + [4728] = 4721, + [4729] = 435, + [4730] = 437, + [4731] = 4721, + [4732] = 4732, + [4733] = 433, + [4734] = 421, + [4735] = 437, + [4736] = 436, + [4737] = 426, + [4738] = 431, + [4739] = 417, + [4740] = 430, + [4741] = 422, + [4742] = 434, + [4743] = 437, + [4744] = 4744, + [4745] = 435, + [4746] = 428, + [4747] = 424, + [4748] = 436, + [4749] = 4744, + [4750] = 4750, + [4751] = 435, + [4752] = 439, + [4753] = 434, + [4754] = 4754, + [4755] = 419, + [4756] = 4756, + [4757] = 420, + [4758] = 425, + [4759] = 423, + [4760] = 433, + [4761] = 426, + [4762] = 432, + [4763] = 418, + [4764] = 429, + [4765] = 4744, + [4766] = 4744, + [4767] = 427, + [4768] = 428, + [4769] = 4769, + [4770] = 4770, + [4771] = 4770, + [4772] = 4770, + [4773] = 4770, + [4774] = 4770, + [4775] = 4770, + [4776] = 4776, + [4777] = 4770, + [4778] = 4770, + [4779] = 4779, + [4780] = 4770, + [4781] = 4770, + [4782] = 4770, + [4783] = 4783, + [4784] = 4784, + [4785] = 4770, + [4786] = 4770, + [4787] = 4770, + [4788] = 415, + [4789] = 4770, + [4790] = 4790, + [4791] = 4770, + [4792] = 416, + [4793] = 4783, + [4794] = 4770, + [4795] = 4795, + [4796] = 4796, + [4797] = 4770, + [4798] = 4783, + [4799] = 4770, + [4800] = 4770, + [4801] = 4770, + [4802] = 4770, + [4803] = 4803, + [4804] = 4770, + [4805] = 4770, + [4806] = 4806, + [4807] = 4770, + [4808] = 4803, + [4809] = 4770, + [4810] = 4770, + [4811] = 4770, + [4812] = 4812, + [4813] = 4770, + [4814] = 4814, + [4815] = 4815, + [4816] = 4770, + [4817] = 4817, + [4818] = 4769, + [4819] = 4783, + [4820] = 4770, + [4821] = 4770, + [4822] = 4770, + [4823] = 4770, + [4824] = 4770, + [4825] = 4825, + [4826] = 4770, + [4827] = 4827, + [4828] = 427, + [4829] = 4770, + [4830] = 4770, + [4831] = 4770, + [4832] = 4770, + [4833] = 4769, + [4834] = 4770, + [4835] = 4770, + [4836] = 4803, + [4837] = 4837, + [4838] = 4838, + [4839] = 4770, + [4840] = 4840, + [4841] = 4770, + [4842] = 4770, + [4843] = 4770, + [4844] = 4770, + [4845] = 4770, + [4846] = 4770, + [4847] = 4770, + [4848] = 4770, + [4849] = 4849, + [4850] = 4770, + [4851] = 4770, + [4852] = 4770, + [4853] = 4770, + [4854] = 4854, + [4855] = 4769, + [4856] = 4856, + [4857] = 4770, + [4858] = 4770, + [4859] = 429, + [4860] = 4860, + [4861] = 4770, + [4862] = 4770, + [4863] = 4803, + [4864] = 4770, + [4865] = 4770, + [4866] = 430, + [4867] = 4770, + [4868] = 4770, + [4869] = 4869, + [4870] = 4870, + [4871] = 4871, + [4872] = 4872, + [4873] = 439, + [4874] = 4874, + [4875] = 4875, + [4876] = 4876, + [4877] = 432, + [4878] = 4875, + [4879] = 4872, + [4880] = 4880, + [4881] = 4881, + [4882] = 423, + [4883] = 4883, + [4884] = 4872, + [4885] = 4885, + [4886] = 4886, + [4887] = 424, + [4888] = 4888, + [4889] = 421, + [4890] = 434, + [4891] = 1975, + [4892] = 4892, + [4893] = 437, + [4894] = 4883, + [4895] = 420, + [4896] = 4896, + [4897] = 427, + [4898] = 4898, + [4899] = 4880, + [4900] = 4898, + [4901] = 4888, + [4902] = 4902, + [4903] = 4876, + [4904] = 4896, + [4905] = 4905, + [4906] = 4880, + [4907] = 4888, + [4908] = 430, + [4909] = 4909, + [4910] = 4875, + [4911] = 4896, + [4912] = 4870, + [4913] = 4888, + [4914] = 4883, + [4915] = 4898, + [4916] = 4916, + [4917] = 4875, + [4918] = 419, + [4919] = 4919, + [4920] = 4870, + [4921] = 4876, + [4922] = 4922, + [4923] = 431, + [4924] = 4924, + [4925] = 4885, + [4926] = 428, + [4927] = 4883, + [4928] = 4874, + [4929] = 4885, + [4930] = 429, + [4931] = 4870, + [4932] = 4888, + [4933] = 4933, + [4934] = 418, + [4935] = 4935, + [4936] = 4896, + [4937] = 4937, + [4938] = 4883, + [4939] = 433, + [4940] = 4875, + [4941] = 4885, + [4942] = 4870, + [4943] = 4943, + [4944] = 4874, + [4945] = 4876, + [4946] = 4898, + [4947] = 436, + [4948] = 422, + [4949] = 425, + [4950] = 4872, + [4951] = 4896, + [4952] = 436, + [4953] = 4885, + [4954] = 4874, + [4955] = 4955, + [4956] = 2003, + [4957] = 4957, + [4958] = 435, + [4959] = 4959, + [4960] = 4960, + [4961] = 4880, + [4962] = 4962, + [4963] = 435, + [4964] = 4898, + [4965] = 437, + [4966] = 4880, + [4967] = 4967, + [4968] = 426, + [4969] = 4969, + [4970] = 4969, + [4971] = 4969, + [4972] = 4969, + [4973] = 439, + [4974] = 4969, + [4975] = 436, + [4976] = 4969, + [4977] = 435, + [4978] = 437, + [4979] = 4969, + [4980] = 4969, + [4981] = 4969, + [4982] = 4969, + [4983] = 4969, + [4984] = 2036, + [4985] = 4969, + [4986] = 4969, + [4987] = 4969, + [4988] = 427, + [4989] = 4989, + [4990] = 4969, + [4991] = 4969, + [4992] = 434, + [4993] = 4993, + [4994] = 4994, + [4995] = 4969, + [4996] = 4969, + [4997] = 429, + [4998] = 433, + [4999] = 4969, + [5000] = 4969, + [5001] = 4969, + [5002] = 430, + [5003] = 4969, + [5004] = 4969, + [5005] = 4969, + [5006] = 5006, + [5007] = 4969, + [5008] = 4969, + [5009] = 4969, + [5010] = 4969, + [5011] = 5011, + [5012] = 5012, + [5013] = 4969, + [5014] = 5014, + [5015] = 436, + [5016] = 435, + [5017] = 4969, + [5018] = 437, + [5019] = 5019, + [5020] = 4969, + [5021] = 4969, + [5022] = 5022, + [5023] = 4969, + [5024] = 1013, + [5025] = 424, + [5026] = 5026, + [5027] = 2023, + [5028] = 5028, + [5029] = 4969, + [5030] = 4969, + [5031] = 4969, + [5032] = 5032, + [5033] = 4969, + [5034] = 4969, + [5035] = 4969, + [5036] = 5036, + [5037] = 4969, + [5038] = 5038, + [5039] = 4969, + [5040] = 1015, + [5041] = 4969, + [5042] = 4969, + [5043] = 4969, + [5044] = 5044, + [5045] = 4969, + [5046] = 4969, + [5047] = 5047, + [5048] = 4969, + [5049] = 4969, + [5050] = 5050, + [5051] = 4969, + [5052] = 5052, + [5053] = 4969, + [5054] = 418, + [5055] = 432, + [5056] = 431, + [5057] = 4969, + [5058] = 4969, + [5059] = 4969, + [5060] = 4969, + [5061] = 4969, + [5062] = 4969, + [5063] = 4969, + [5064] = 5064, + [5065] = 430, + [5066] = 5066, + [5067] = 5064, + [5068] = 5068, + [5069] = 5069, + [5070] = 5064, + [5071] = 5071, + [5072] = 5072, + [5073] = 5073, + [5074] = 5074, + [5075] = 5075, + [5076] = 5064, + [5077] = 5077, + [5078] = 5066, + [5079] = 5064, + [5080] = 5066, + [5081] = 5066, + [5082] = 5082, + [5083] = 5064, + [5084] = 5084, + [5085] = 5064, + [5086] = 5066, + [5087] = 5064, + [5088] = 5088, + [5089] = 5089, + [5090] = 5073, + [5091] = 5091, + [5092] = 5075, + [5093] = 5093, + [5094] = 5074, + [5095] = 5066, + [5096] = 5066, + [5097] = 5064, + [5098] = 5064, + [5099] = 5066, + [5100] = 5064, + [5101] = 5073, + [5102] = 5066, + [5103] = 5075, + [5104] = 4892, + [5105] = 5066, + [5106] = 5066, + [5107] = 5064, + [5108] = 5064, + [5109] = 5066, + [5110] = 5064, + [5111] = 5111, + [5112] = 5073, + [5113] = 5066, + [5114] = 5066, + [5115] = 5064, + [5116] = 5064, + [5117] = 5064, + [5118] = 5073, + [5119] = 5066, + [5120] = 5064, + [5121] = 5066, + [5122] = 5064, + [5123] = 5073, + [5124] = 5066, + [5125] = 5064, + [5126] = 5126, + [5127] = 5074, + [5128] = 5073, + [5129] = 5066, + [5130] = 5066, + [5131] = 5073, + [5132] = 5066, + [5133] = 5064, + [5134] = 5064, + [5135] = 5066, + [5136] = 5073, + [5137] = 5064, + [5138] = 5066, + [5139] = 5139, + [5140] = 5140, + [5141] = 5073, + [5142] = 5073, + [5143] = 5066, + [5144] = 5073, + [5145] = 5066, + [5146] = 5075, + [5147] = 5064, + [5148] = 5073, + [5149] = 5064, + [5150] = 5126, + [5151] = 5064, + [5152] = 5066, + [5153] = 5064, + [5154] = 5066, + [5155] = 5064, + [5156] = 5064, + [5157] = 5157, + [5158] = 427, + [5159] = 5064, + [5160] = 5160, + [5161] = 5161, + [5162] = 5066, + [5163] = 5064, + [5164] = 5066, + [5165] = 434, + [5166] = 5064, + [5167] = 5167, + [5168] = 429, + [5169] = 2003, + [5170] = 5066, + [5171] = 5066, + [5172] = 5064, + [5173] = 429, + [5174] = 5174, + [5175] = 5064, + [5176] = 5066, + [5177] = 5064, + [5178] = 5178, + [5179] = 1975, + [5180] = 5064, + [5181] = 5126, + [5182] = 5066, + [5183] = 5064, + [5184] = 5066, + [5185] = 5064, + [5186] = 5066, + [5187] = 5064, + [5188] = 5064, + [5189] = 5066, + [5190] = 5066, + [5191] = 5191, + [5192] = 5192, + [5193] = 5064, + [5194] = 430, + [5195] = 5064, + [5196] = 5066, + [5197] = 5064, + [5198] = 5198, + [5199] = 5199, + [5200] = 419, + [5201] = 5066, + [5202] = 5064, + [5203] = 5066, + [5204] = 5066, + [5205] = 5066, + [5206] = 5064, + [5207] = 5207, + [5208] = 1896, + [5209] = 5066, + [5210] = 5066, + [5211] = 5064, + [5212] = 5064, + [5213] = 5213, + [5214] = 5214, + [5215] = 5215, + [5216] = 5111, + [5217] = 5217, + [5218] = 5064, + [5219] = 5219, + [5220] = 5220, + [5221] = 5221, + [5222] = 5066, + [5223] = 5064, + [5224] = 5066, + [5225] = 5066, + [5226] = 5226, + [5227] = 5064, + [5228] = 5066, + [5229] = 5064, + [5230] = 5066, + [5231] = 5064, + [5232] = 5232, + [5233] = 425, + [5234] = 5234, + [5235] = 436, + [5236] = 435, + [5237] = 5237, + [5238] = 5066, + [5239] = 5064, + [5240] = 437, + [5241] = 5241, + [5242] = 5242, + [5243] = 5066, + [5244] = 5064, + [5245] = 5066, + [5246] = 5064, + [5247] = 5247, + [5248] = 5248, + [5249] = 5249, + [5250] = 5066, + [5251] = 5066, + [5252] = 5066, + [5253] = 5253, + [5254] = 5064, + [5255] = 4892, + [5256] = 5066, + [5257] = 5257, + [5258] = 5111, + [5259] = 5259, + [5260] = 427, + [5261] = 5261, + [5262] = 5066, + [5263] = 5263, + [5264] = 5064, + [5265] = 5265, + [5266] = 5140, + [5267] = 5267, + [5268] = 5075, + [5269] = 5066, + [5270] = 5111, + [5271] = 5064, + [5272] = 5140, + [5273] = 5140, + [5274] = 5111, + [5275] = 433, + [5276] = 5276, + [5277] = 5277, + [5278] = 5278, + [5279] = 5277, + [5280] = 5280, + [5281] = 421, + [5282] = 5282, + [5283] = 5278, + [5284] = 5284, + [5285] = 5278, + [5286] = 5036, + [5287] = 427, + [5288] = 2014, + [5289] = 5289, + [5290] = 5277, + [5291] = 429, + [5292] = 5289, + [5293] = 5293, + [5294] = 5278, + [5295] = 3535, + [5296] = 430, + [5297] = 5297, + [5298] = 2036, + [5299] = 5277, + [5300] = 423, + [5301] = 5301, + [5302] = 5302, + [5303] = 5289, + [5304] = 5293, + [5305] = 1966, + [5306] = 5289, + [5307] = 5038, + [5308] = 5277, + [5309] = 5038, + [5310] = 5278, + [5311] = 5277, + [5312] = 420, + [5313] = 5313, + [5314] = 3534, + [5315] = 5315, + [5316] = 3537, + [5317] = 5277, + [5318] = 5044, + [5319] = 5277, + [5320] = 5277, + [5321] = 5277, + [5322] = 5322, + [5323] = 5044, + [5324] = 5278, + [5325] = 5315, + [5326] = 5277, + [5327] = 5293, + [5328] = 5293, + [5329] = 3532, + [5330] = 5277, + [5331] = 5277, + [5332] = 5315, + [5333] = 5333, + [5334] = 2023, + [5335] = 5315, + [5336] = 5336, + [5337] = 5036, + [5338] = 5338, + [5339] = 5339, + [5340] = 5340, + [5341] = 5341, + [5342] = 5342, + [5343] = 5343, + [5344] = 5344, + [5345] = 5345, + [5346] = 5346, + [5347] = 5340, + [5348] = 5348, + [5349] = 5343, + [5350] = 5350, + [5351] = 5345, + [5352] = 5350, + [5353] = 5353, + [5354] = 5353, + [5355] = 5355, + [5356] = 5341, + [5357] = 5345, + [5358] = 5348, + [5359] = 5350, + [5360] = 5353, + [5361] = 5341, + [5362] = 5362, + [5363] = 5341, + [5364] = 5345, + [5365] = 5348, + [5366] = 5345, + [5367] = 5367, + [5368] = 5348, + [5369] = 5367, + [5370] = 5367, + [5371] = 5371, + [5372] = 5372, + [5373] = 5373, + [5374] = 5343, + [5375] = 5375, + [5376] = 5376, + [5377] = 5377, + [5378] = 5367, + [5379] = 5348, + [5380] = 5341, + [5381] = 5350, + [5382] = 5353, + [5383] = 5350, + [5384] = 5339, + [5385] = 5341, + [5386] = 5345, + [5387] = 5342, + [5388] = 5348, + [5389] = 5344, + [5390] = 5350, + [5391] = 5346, + [5392] = 5343, + [5393] = 5353, + [5394] = 5353, + [5395] = 5343, + [5396] = 5341, + [5397] = 5341, + [5398] = 5345, + [5399] = 5348, + [5400] = 5345, + [5401] = 5372, + [5402] = 5348, + [5403] = 5403, + [5404] = 5341, + [5405] = 5367, + [5406] = 5367, + [5407] = 5343, + [5408] = 5353, + [5409] = 5409, + [5410] = 5367, + [5411] = 5343, + [5412] = 5350, + [5413] = 5353, + [5414] = 5371, + [5415] = 5372, + [5416] = 5373, + [5417] = 5375, + [5418] = 5377, + [5419] = 5338, + [5420] = 5353, + [5421] = 5340, + [5422] = 5341, + [5423] = 5345, + [5424] = 5343, + [5425] = 5339, + [5426] = 5426, + [5427] = 5348, + [5428] = 5342, + [5429] = 5350, + [5430] = 5344, + [5431] = 5353, + [5432] = 5346, + [5433] = 5345, + [5434] = 5367, + [5435] = 5341, + [5436] = 5345, + [5437] = 5348, + [5438] = 5377, + [5439] = 5348, + [5440] = 5367, + [5441] = 5343, + [5442] = 5343, + [5443] = 5343, + [5444] = 5343, + [5445] = 5343, + [5446] = 5446, + [5447] = 5373, + [5448] = 5340, + [5449] = 5343, + [5450] = 5339, + [5451] = 5409, + [5452] = 5342, + [5453] = 5367, + [5454] = 5344, + [5455] = 5346, + [5456] = 5367, + [5457] = 5457, + [5458] = 5458, + [5459] = 5350, + [5460] = 5446, + [5461] = 5350, + [5462] = 5353, + [5463] = 5353, + [5464] = 5341, + [5465] = 5345, + [5466] = 5348, + [5467] = 5350, + [5468] = 5353, + [5469] = 5367, + [5470] = 5373, + [5471] = 5409, + [5472] = 5341, + [5473] = 5345, + [5474] = 5348, + [5475] = 5343, + [5476] = 5350, + [5477] = 5367, + [5478] = 5340, + [5479] = 5343, + [5480] = 5341, + [5481] = 5350, + [5482] = 5350, + [5483] = 5353, + [5484] = 5373, + [5485] = 5353, + [5486] = 5350, + [5487] = 5341, + [5488] = 5350, + [5489] = 5353, + [5490] = 5345, + [5491] = 5446, + [5492] = 5343, + [5493] = 5341, + [5494] = 5345, + [5495] = 5348, + [5496] = 5353, + [5497] = 5497, + [5498] = 5373, + [5499] = 5341, + [5500] = 5367, + [5501] = 5345, + [5502] = 5348, + [5503] = 5348, + [5504] = 5343, + [5505] = 5341, + [5506] = 5367, + [5507] = 5367, + [5508] = 5350, + [5509] = 5509, + [5510] = 5373, + [5511] = 5353, + [5512] = 5345, + [5513] = 5341, + [5514] = 5509, + [5515] = 5345, + [5516] = 5516, + [5517] = 5348, + [5518] = 5509, + [5519] = 5341, + [5520] = 5373, + [5521] = 5497, + [5522] = 5343, + [5523] = 5350, + [5524] = 5353, + [5525] = 5497, + [5526] = 5341, + [5527] = 5345, + [5528] = 5348, + [5529] = 5343, + [5530] = 5373, + [5531] = 5367, + [5532] = 5345, + [5533] = 5348, + [5534] = 5350, + [5535] = 5367, + [5536] = 5353, + [5537] = 5343, + [5538] = 5341, + [5539] = 5345, + [5540] = 5373, + [5541] = 5343, + [5542] = 5350, + [5543] = 5543, + [5544] = 5343, + [5545] = 5345, + [5546] = 5350, + [5547] = 5353, + [5548] = 5548, + [5549] = 5353, + [5550] = 5373, + [5551] = 5350, + [5552] = 5350, + [5553] = 5353, + [5554] = 5353, + [5555] = 5341, + [5556] = 5516, + [5557] = 5345, + [5558] = 5373, + [5559] = 5341, + [5560] = 5350, + [5561] = 5353, + [5562] = 5562, + [5563] = 5341, + [5564] = 5345, + [5565] = 5348, + [5566] = 5373, + [5567] = 5341, + [5568] = 5367, + [5569] = 5345, + [5570] = 5348, + [5571] = 5516, + [5572] = 5343, + [5573] = 5573, + [5574] = 5373, + [5575] = 5575, + [5576] = 5343, + [5577] = 5367, + [5578] = 5350, + [5579] = 5353, + [5580] = 5497, + [5581] = 5350, + [5582] = 5373, + [5583] = 5341, + [5584] = 5345, + [5585] = 5353, + [5586] = 5497, + [5587] = 5350, + [5588] = 5348, + [5589] = 5341, + [5590] = 5373, + [5591] = 5350, + [5592] = 5353, + [5593] = 5367, + [5594] = 5341, + [5595] = 5345, + [5596] = 5596, + [5597] = 5341, + [5598] = 5373, + [5599] = 5345, + [5600] = 5348, + [5601] = 5345, + [5602] = 5367, + [5603] = 5343, + [5604] = 5348, + [5605] = 5367, + [5606] = 5373, + [5607] = 5367, + [5608] = 5350, + [5609] = 5343, + [5610] = 5353, + [5611] = 5353, + [5612] = 5341, + [5613] = 5575, + [5614] = 5373, + [5615] = 5345, + [5616] = 5343, + [5617] = 5457, + [5618] = 5409, + [5619] = 5458, + [5620] = 5350, + [5621] = 5621, + [5622] = 5373, + [5623] = 5348, + [5624] = 5343, + [5625] = 5353, + [5626] = 5626, + [5627] = 5350, + [5628] = 5341, + [5629] = 5345, + [5630] = 5373, + [5631] = 5348, + [5632] = 5632, + [5633] = 5633, + [5634] = 5345, + [5635] = 5367, + [5636] = 5636, + [5637] = 5353, + [5638] = 5373, + [5639] = 5575, + [5640] = 5343, + [5641] = 5641, + [5642] = 5642, + [5643] = 5350, + [5644] = 5353, + [5645] = 5340, + [5646] = 5373, + [5647] = 5341, + [5648] = 5350, + [5649] = 5345, + [5650] = 5348, + [5651] = 5350, + [5652] = 5353, + [5653] = 5350, + [5654] = 5373, + [5655] = 5339, + [5656] = 5353, + [5657] = 5341, + [5658] = 5341, + [5659] = 5345, + [5660] = 5348, + [5661] = 5345, + [5662] = 5373, + [5663] = 5367, + [5664] = 5353, + [5665] = 5350, + [5666] = 5341, + [5667] = 5343, + [5668] = 5345, + [5669] = 5350, + [5670] = 5373, + [5671] = 5348, + [5672] = 5350, + [5673] = 5353, + [5674] = 5353, + [5675] = 5353, + [5676] = 5367, + [5677] = 5341, + [5678] = 5373, + [5679] = 5341, + [5680] = 5345, + [5681] = 5348, + [5682] = 5345, + [5683] = 5367, + [5684] = 5350, + [5685] = 5353, + [5686] = 5373, + [5687] = 5343, + [5688] = 5367, + [5689] = 5341, + [5690] = 5345, + [5691] = 5691, + [5692] = 5348, + [5693] = 5341, + [5694] = 5373, + [5695] = 5367, + [5696] = 5345, + [5697] = 5343, + [5698] = 5350, + [5699] = 5343, + [5700] = 5353, + [5701] = 5343, + [5702] = 5373, + [5703] = 5457, + [5704] = 5343, + [5705] = 5341, + [5706] = 5458, + [5707] = 5345, + [5708] = 5341, + [5709] = 5373, + [5710] = 5373, + [5711] = 5345, + [5712] = 5348, + [5713] = 5636, + [5714] = 5350, + [5715] = 5353, + [5716] = 5716, + [5717] = 5348, + [5718] = 5373, + [5719] = 5341, + [5720] = 5345, + [5721] = 5348, + [5722] = 5348, + [5723] = 5367, + [5724] = 5350, + [5725] = 5375, + [5726] = 5373, + [5727] = 5353, + [5728] = 5348, + [5729] = 5367, + [5730] = 5343, + [5731] = 5341, + [5732] = 5343, + [5733] = 5346, + [5734] = 5373, + [5735] = 5457, + [5736] = 5641, + [5737] = 5642, + [5738] = 5353, + [5739] = 5345, + [5740] = 5458, + [5741] = 5367, + [5742] = 5373, + [5743] = 5350, + [5744] = 5353, + [5745] = 5350, + [5746] = 5341, + [5747] = 5516, + [5748] = 5345, + [5749] = 5348, + [5750] = 5373, + [5751] = 5343, + [5752] = 5367, + [5753] = 5446, + [5754] = 5350, + [5755] = 5353, + [5756] = 5343, + [5757] = 5353, + [5758] = 5373, + [5759] = 5341, + [5760] = 5345, + [5761] = 5348, + [5762] = 5350, + [5763] = 5367, + [5764] = 5353, + [5765] = 5367, + [5766] = 5373, + [5767] = 5341, + [5768] = 5575, + [5769] = 5636, + [5770] = 5350, + [5771] = 5771, + [5772] = 5345, + [5773] = 5353, + [5774] = 5373, + [5775] = 5341, + [5776] = 5343, + [5777] = 5341, + [5778] = 5345, + [5779] = 5348, + [5780] = 5345, + [5781] = 5367, + [5782] = 5373, + [5783] = 5348, + [5784] = 5341, + [5785] = 5367, + [5786] = 5343, + [5787] = 5350, + [5788] = 5788, + [5789] = 5353, + [5790] = 5373, + [5791] = 5343, + [5792] = 5641, + [5793] = 5341, + [5794] = 5409, + [5795] = 5345, + [5796] = 5350, + [5797] = 5353, + [5798] = 5373, + [5799] = 5642, + [5800] = 5367, + [5801] = 5341, + [5802] = 5350, + [5803] = 5353, + [5804] = 5345, + [5805] = 5343, + [5806] = 5373, + [5807] = 5341, + [5808] = 5345, + [5809] = 5348, + [5810] = 5348, + [5811] = 5345, + [5812] = 5367, + [5813] = 5350, + [5814] = 5373, + [5815] = 5350, + [5816] = 5353, + [5817] = 5497, + [5818] = 5343, + [5819] = 5341, + [5820] = 5497, + [5821] = 5350, + [5822] = 5373, + [5823] = 5353, + [5824] = 5341, + [5825] = 5341, + [5826] = 5345, + [5827] = 5348, + [5828] = 5345, + [5829] = 5350, + [5830] = 5373, + [5831] = 5353, + [5832] = 5367, + [5833] = 5341, + [5834] = 5345, + [5835] = 5348, + [5836] = 5497, + [5837] = 5345, + [5838] = 5373, + [5839] = 5367, + [5840] = 5350, + [5841] = 5353, + [5842] = 5842, + [5843] = 5348, + [5844] = 5350, + [5845] = 5343, + [5846] = 5373, + [5847] = 5353, + [5848] = 5409, + [5849] = 5343, + [5850] = 5341, + [5851] = 5341, + [5852] = 5345, + [5853] = 5350, + [5854] = 5373, + [5855] = 5350, + [5856] = 5353, + [5857] = 5350, + [5858] = 5353, + [5859] = 5353, + [5860] = 5341, + [5861] = 5345, + [5862] = 5373, + [5863] = 5342, + [5864] = 5348, + [5865] = 5345, + [5866] = 5367, + [5867] = 5341, + [5868] = 5345, + [5869] = 5350, + [5870] = 5373, + [5871] = 5343, + [5872] = 5353, + [5873] = 5457, + [5874] = 5353, + [5875] = 5636, + [5876] = 5353, + [5877] = 5458, + [5878] = 5373, + [5879] = 5341, + [5880] = 5341, + [5881] = 5881, + [5882] = 5345, + [5883] = 5345, + [5884] = 5371, + [5885] = 5350, + [5886] = 5373, + [5887] = 5353, + [5888] = 5888, + [5889] = 5367, + [5890] = 5341, + [5891] = 5345, + [5892] = 5344, + [5893] = 5367, + [5894] = 5373, + [5895] = 5341, + [5896] = 5348, + [5897] = 5341, + [5898] = 5367, + [5899] = 5345, + [5900] = 5350, + [5901] = 5348, + [5902] = 5373, + [5903] = 5348, + [5904] = 5343, + [5905] = 5353, + [5906] = 5350, + [5907] = 5353, + [5908] = 5367, + [5909] = 5341, + [5910] = 5341, + [5911] = 5345, + [5912] = 5348, + [5913] = 5367, + [5914] = 5345, + [5915] = 5367, + [5916] = 5350, + [5917] = 5353, + [5918] = 5348, + [5919] = 5341, + [5920] = 5345, + [5921] = 5348, + [5922] = 5345, + [5923] = 5367, + [5924] = 5367, + [5925] = 5343, + [5926] = 5348, + [5927] = 5367, + [5928] = 5343, + [5929] = 5367, + [5930] = 5350, + [5931] = 5353, + [5932] = 5348, + [5933] = 5367, + [5934] = 5343, + [5935] = 5343, + [5936] = 5409, + [5937] = 5343, + [5938] = 5641, + [5939] = 5341, + [5940] = 5642, + [5941] = 5409, + [5942] = 5350, + [5943] = 5371, + [5944] = 5350, + [5945] = 5353, + [5946] = 5372, + [5947] = 5341, + [5948] = 5345, + [5949] = 5348, + [5950] = 5373, + [5951] = 5353, + [5952] = 5375, + [5953] = 5367, + [5954] = 5954, + [5955] = 5338, + [5956] = 5377, + [5957] = 5371, + [5958] = 5376, + [5959] = 5509, + [5960] = 5341, + [5961] = 5345, + [5962] = 5771, + [5963] = 5345, + [5964] = 5348, + [5965] = 5343, + [5966] = 5348, + [5967] = 5338, + [5968] = 5343, + [5969] = 5376, + [5970] = 5343, + [5971] = 5771, + [5972] = 5350, + [5973] = 5367, + [5974] = 5353, + [5975] = 5975, + [5976] = 5338, + [5977] = 5350, + [5978] = 5376, + [5979] = 5353, + [5980] = 5771, + [5981] = 5338, + [5982] = 5376, + [5983] = 5771, + [5984] = 5338, + [5985] = 5338, + [5986] = 5338, + [5987] = 5338, + [5988] = 5338, + [5989] = 5338, + [5990] = 5338, + [5991] = 5338, + [5992] = 5338, + [5993] = 5338, + [5994] = 5338, + [5995] = 5338, + [5996] = 5338, + [5997] = 5338, + [5998] = 5338, + [5999] = 5338, + [6000] = 5338, + [6001] = 5338, + [6002] = 5338, + [6003] = 5338, + [6004] = 5338, + [6005] = 5338, + [6006] = 5338, + [6007] = 5338, + [6008] = 5338, + [6009] = 5338, + [6010] = 5338, + [6011] = 5338, + [6012] = 5338, + [6013] = 5338, + [6014] = 5338, + [6015] = 5338, + [6016] = 5338, + [6017] = 5338, + [6018] = 5338, + [6019] = 5338, + [6020] = 5338, + [6021] = 5338, + [6022] = 5338, + [6023] = 5338, + [6024] = 5338, + [6025] = 5367, + [6026] = 5338, + [6027] = 5338, + [6028] = 5338, + [6029] = 5338, + [6030] = 5338, + [6031] = 5338, + [6032] = 5338, + [6033] = 5338, + [6034] = 5338, + [6035] = 5338, + [6036] = 5403, + [6037] = 5497, + [6038] = 5403, + [6039] = 5403, + [6040] = 5403, + [6041] = 5403, + [6042] = 5403, + [6043] = 5403, + [6044] = 5403, + [6045] = 5403, + [6046] = 5403, + [6047] = 5403, + [6048] = 5403, + [6049] = 5403, + [6050] = 5403, + [6051] = 5403, + [6052] = 5403, + [6053] = 5403, + [6054] = 5403, + [6055] = 5403, + [6056] = 5403, + [6057] = 5403, + [6058] = 5403, + [6059] = 5403, + [6060] = 5403, + [6061] = 5403, + [6062] = 5403, + [6063] = 5403, + [6064] = 5403, + [6065] = 5403, + [6066] = 5403, + [6067] = 5403, + [6068] = 5403, + [6069] = 5403, + [6070] = 5403, + [6071] = 5403, + [6072] = 5403, + [6073] = 5403, + [6074] = 5403, + [6075] = 5403, + [6076] = 5403, + [6077] = 5403, + [6078] = 5403, + [6079] = 5403, + [6080] = 5403, + [6081] = 5403, + [6082] = 5403, + [6083] = 5403, + [6084] = 5403, + [6085] = 5403, + [6086] = 5403, + [6087] = 5403, + [6088] = 5403, + [6089] = 5403, + [6090] = 5403, + [6091] = 5403, + [6092] = 5403, + [6093] = 5350, +}; + +static const TSCharacterRange sym_comment_word_character_set_1[] = { + {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'#', '#'}, {'%', '%'}, {'*', ':'}, {'=', '='}, {'?', 'Z'}, + {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; -static TSCharacterRange sym_word_character_set_1[] = { +static const TSCharacterRange sym_word_character_set_1[] = { {0, 0x08}, {0x0e, 0x1f}, {'!', '!'}, {'%', '%'}, {'*', ':'}, {'=', '='}, {'?', 'Z'}, {'\\', '\\'}, {'^', '_'}, {'a', 'z'}, {'~', 0x10ffff}, }; @@ -5381,20350 +8651,121984 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(237); + if (eof) ADVANCE(582); ADVANCE_MAP( - '!', 307, - '"', 373, - '#', 395, - '$', 366, - '%', 400, - '&', 274, - '\'', 193, - '(', 300, - ')', 296, - '*', 386, - '+', 346, - '-', 349, - '.', 408, - '/', 397, - '0', 390, - ':', 359, - ';', 268, - '<', 328, - '=', 320, - '>', 331, - '?', 357, - '@', 388, - '[', 311, - '\\', 97, - ']', 312, - '_', 393, - '`', 402, - 'e', 414, - 'i', 413, - '{', 301, - '|', 294, - '}', 302, + '!', 870, + '"', 839, + '#', 875, + '$', 827, + '%', 766, + '&', 656, + '\'', 500, + '(', 773, + ')', 774, + '*', 874, + '+', 814, + ',', 679, + '-', 812, + '.', 914, + '/', 761, + ':', 807, + ';', 584, + '<', 726, + '=', 877, + '>', 735, + '?', 887, + '@', 872, + '[', 789, + '\\', 243, + ']', 790, + '^', 718, + '_', 865, + '`', 906, + 'e', 921, + 'i', 920, + '{', 781, + '|', 715, + '}', 823, + '~', 816, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0); - if (lookahead != 0) ADVANCE(416); + lookahead == ' ') SKIP(580); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 1: - if (lookahead == '\n') SKIP(162); + if (lookahead == '\n') SKIP(409); END_STATE(); case 2: - if (lookahead == '\n') SKIP(167); + if (lookahead == '\n') SKIP(428); END_STATE(); case 3: - if (lookahead == '\n') SKIP(168); + if (lookahead == '\n') SKIP(429); END_STATE(); case 4: - if (lookahead == '\n') SKIP(169); + if (lookahead == '\n') SKIP(430); END_STATE(); case 5: if (lookahead == '\n') SKIP(6); END_STATE(); case 6: ADVANCE_MAP( - '\n', 238, - '"', 373, - '#', 406, - '$', 366, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 105, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 588, + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + ')', 774, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + ';', 585, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 251, + '^', 719, + '`', 906, + '|', 715, + '~', 816, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 7: - if (lookahead == '\n') SKIP(72); + if (lookahead == '\n') SKIP(431); END_STATE(); case 8: - if (lookahead == '\n') SKIP(73); + if (lookahead == '\n') SKIP(411); END_STATE(); case 9: - if (lookahead == '\n') SKIP(74); + if (lookahead == '\n') SKIP(432); END_STATE(); case 10: - if (lookahead == '\n') SKIP(75); + if (lookahead == '\n') SKIP(412); END_STATE(); case 11: - if (lookahead == '\n') SKIP(77); + if (lookahead == '\n') SKIP(413); END_STATE(); case 12: - if (lookahead == '\n') SKIP(78); + if (lookahead == '\n') SKIP(13); END_STATE(); case 13: - if (lookahead == '\n') SKIP(81); + ADVANCE_MAP( + '\n', 589, + '!', 785, + '"', 839, + '#', 863, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + ')', 774, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 658, + ';', 585, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '@', 862, + '\\', 259, + '^', 719, + '_', 864, + '`', 905, + '|', 715, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(13); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 14: - if (lookahead == '\n') SKIP(84); + if (lookahead == '\n') SKIP(410); END_STATE(); case 15: - if (lookahead == '\n') SKIP(85); + if (lookahead == '\n') SKIP(178); END_STATE(); case 16: - if (lookahead == '\n') SKIP(87); + if (lookahead == '\n') SKIP(434); END_STATE(); case 17: - if (lookahead == '\n') SKIP(186); + if (lookahead == '\n') SKIP(433); END_STATE(); case 18: - if (lookahead == '\n') SKIP(90); + if (lookahead == '\n') SKIP(182); END_STATE(); case 19: - if (lookahead == '\n') SKIP(92); + if (lookahead == '\n') SKIP(183); END_STATE(); case 20: - if (lookahead == '\n') SKIP(93); + if (lookahead == '\n') SKIP(184); END_STATE(); case 21: - if (lookahead == '\n') SKIP(94); + if (lookahead == '\n') SKIP(185); END_STATE(); case 22: - if (lookahead == '\n') SKIP(187); + if (lookahead == '\n') SKIP(186); END_STATE(); case 23: - if (lookahead == '\n') SKIP(165); + if (lookahead == '\n') SKIP(187); END_STATE(); case 24: - if (lookahead == '\n') SKIP(25); + if (lookahead == '\n') SKIP(188); END_STATE(); case 25: - ADVANCE_MAP( - '\n', 239, - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '&', 274, - '\'', 193, - '*', 385, - '-', 348, - '0', 391, - ';', 268, - '<', 329, - '>', 333, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(132); - if (lookahead == '_') ADVANCE(394); - if (lookahead == 'e') ADVANCE(282); - if (lookahead == '|') ADVANCE(294); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(25); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(189); END_STATE(); case 26: - ADVANCE_MAP( - '\n', 239, - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '&', 274, - '\'', 193, - '*', 385, - '-', 348, - '0', 391, - ';', 268, - '<', 329, - '>', 333, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(133); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '|') ADVANCE(294); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(26); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(190); END_STATE(); case 27: - ADVANCE_MAP( - '\n', 239, - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '&', 272, - '\'', 193, - '*', 385, - '-', 348, - '0', 391, - ';', 269, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(155); - if (lookahead == '_') ADVANCE(394); - if (lookahead == 'i') ADVANCE(281); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(27); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(476); END_STATE(); case 28: - if (lookahead == '\n') ADVANCE(239); - if (lookahead == '#') ADVANCE(406); - if (lookahead == '&') ADVANCE(274); - if (lookahead == ';') ADVANCE(268); - if (lookahead == '<') ADVANCE(329); - if (lookahead == '>') ADVANCE(333); - if (lookahead == '\\') SKIP(143); - if (lookahead == 'e') ADVANCE(216); - if (lookahead == '|') ADVANCE(294); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(28); + if (lookahead == '\n') SKIP(192); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(239); - if (lookahead == '#') ADVANCE(406); - if (lookahead == '&') ADVANCE(272); - if (lookahead == ';') ADVANCE(268); - if (lookahead == '\\') SKIP(160); - if (lookahead == 'e') ADVANCE(216); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29); + if (lookahead == '\n') SKIP(196); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(239); - if (lookahead == '#') ADVANCE(406); - if (lookahead == '&') ADVANCE(272); - if (lookahead == ';') ADVANCE(269); - if (lookahead == '\\') SKIP(159); - if (lookahead == 'i') ADVANCE(215); - if (('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(30); + if (lookahead == '\n') SKIP(197); END_STATE(); case 31: - if (lookahead == '\n') SKIP(26); + if (lookahead == '\n') SKIP(199); END_STATE(); case 32: - if (lookahead == '\n') SKIP(33); + if (lookahead == '\n') SKIP(459); END_STATE(); case 33: - ADVANCE_MAP( - '\n', 240, - '!', 309, - '"', 373, - '#', 406, - '$', 365, - '&', 272, - '\'', 193, - '(', 299, - '-', 415, - ';', 269, - '<', 197, - '>', 198, - '\\', 134, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(33); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(462); END_STATE(); case 34: - if (lookahead == '\n') SKIP(35); + if (lookahead == '\n') SKIP(201); END_STATE(); case 35: - ADVANCE_MAP( - '\n', 241, - '!', 308, - '"', 373, - '#', 395, - '$', 364, - '&', 273, - '\'', 193, - '*', 385, - '+', 347, - '-', 350, - '0', 391, - ';', 269, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(135); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '|') ADVANCE(217); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(204); END_STATE(); case 36: - ADVANCE_MAP( - '\n', 241, - '!', 208, - '#', 406, - '&', 273, - '+', 347, - '-', 350, - ';', 269, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - ); - if (lookahead == '\\') SKIP(148); - if (lookahead == '|') ADVANCE(217); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(36); + if (lookahead == '\n') SKIP(208); END_STATE(); case 37: - if (lookahead == '\n') SKIP(175); + if (lookahead == '\n') SKIP(479); END_STATE(); case 38: - if (lookahead == '\n') SKIP(180); + if (lookahead == '\n') SKIP(480); END_STATE(); case 39: - if (lookahead == '\n') SKIP(166); + if (lookahead == '\n') SKIP(477); END_STATE(); case 40: - if (lookahead == '\n') SKIP(181); + if (lookahead == '\n') SKIP(417); END_STATE(); case 41: - if (lookahead == '\n') SKIP(174); + if (lookahead == '\n') SKIP(423); END_STATE(); case 42: - if (lookahead == '\n') SKIP(163); + if (lookahead == '\n') SKIP(416); END_STATE(); case 43: - if (lookahead == '\n') SKIP(95); + if (lookahead == '\n') SKIP(461); END_STATE(); case 44: - if (lookahead == '\n') SKIP(28); + if (lookahead == '\n') SKIP(426); END_STATE(); case 45: - if (lookahead == '\n') SKIP(96); + if (lookahead == '\n') SKIP(436); END_STATE(); case 46: - if (lookahead == '\n') SKIP(183); + if (lookahead == '\n') SKIP(418); END_STATE(); case 47: - if (lookahead == '\n') SKIP(182); + if (lookahead == '\n') SKIP(427); END_STATE(); case 48: - if (lookahead == '\n') SKIP(164); + if (lookahead == '\n') SKIP(449); END_STATE(); case 49: - if (lookahead == '\n') SKIP(36); + if (lookahead == '\n') SKIP(437); END_STATE(); case 50: - if (lookahead == '\n') SKIP(176); + if (lookahead == '\n') SKIP(450); END_STATE(); case 51: - if (lookahead == '\n') SKIP(184); + if (lookahead == '\n') SKIP(237); END_STATE(); case 52: - if (lookahead == '\n') SKIP(177); + if (lookahead == '\n') SKIP(422); END_STATE(); case 53: - if (lookahead == '\n') SKIP(178); + if (lookahead == '\n') SKIP(238); END_STATE(); case 54: - if (lookahead == '\n') SKIP(179); + if (lookahead == '\n') SKIP(452); END_STATE(); case 55: - if (lookahead == '\n') SKIP(185); + if (lookahead == '\n') SKIP(453); END_STATE(); case 56: - if (lookahead == '\n') SKIP(27); + if (lookahead == '\n') SKIP(458); END_STATE(); case 57: - if (lookahead == '\n') SKIP(170); + if (lookahead == '\n') SKIP(455); END_STATE(); case 58: - if (lookahead == '\n') SKIP(173); + if (lookahead == '\n') SKIP(471); END_STATE(); case 59: - if (lookahead == '\n') SKIP(189); - END_STATE(); - case 60: - if (lookahead == '\n') SKIP(30); - END_STATE(); - case 61: - if (lookahead == '\n') SKIP(29); - END_STATE(); - case 62: - if (lookahead == '\n') SKIP(190); - END_STATE(); - case 63: - if (lookahead == '\n') SKIP(83); - END_STATE(); - case 64: - if (lookahead == '\n') SKIP(86); - END_STATE(); - case 65: - if (lookahead == '\n') SKIP(91); - END_STATE(); - case 66: - if (lookahead == '\n') SKIP(76); - END_STATE(); - case 67: - if (lookahead == '\n') SKIP(79); - END_STATE(); - case 68: - if (lookahead == '\n') SKIP(80); - END_STATE(); - case 69: - if (lookahead == '\n') SKIP(82); - END_STATE(); - case 70: - if (lookahead == '\n') SKIP(88); - END_STATE(); - case 71: - if (lookahead == '\n') SKIP(89); - END_STATE(); - case 72: ADVANCE_MAP( - '\n', 242, - '"', 373, - '#', 406, - '$', 366, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 106, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 731, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(374); + if (lookahead == '_') ADVANCE(866); + if (lookahead == 'e') ADVANCE(670); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72); + lookahead == ' ') SKIP(59); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 73: + case 60: ADVANCE_MAP( - '\n', 243, - '"', 373, - '#', 406, - '$', 366, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 107, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 731, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(376); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(73); + lookahead == ' ') SKIP(60); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 74: + case 61: ADVANCE_MAP( - '\n', 244, - '!', 309, - '"', 373, - '#', 395, - '$', 366, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 108, - '_', 392, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 732, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(368); + if (lookahead == '_') ADVANCE(866); + if (lookahead == 'e') ADVANCE(670); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(61); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 75: + case 62: ADVANCE_MAP( - '\n', 245, - '!', 309, - '"', 373, - '#', 395, - '$', 366, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 109, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 732, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(375); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(75); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(62); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 76: + case 63: ADVANCE_MAP( - '\n', 246, - '!', 309, - '"', 373, - '#', 395, - '$', 367, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 110, - '_', 392, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 498, + '*', 756, + '-', 751, + '<', 730, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(388); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(535); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(63); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 77: + case 64: ADVANCE_MAP( - '\n', 247, - '!', 309, - '"', 373, - '#', 395, - '$', 366, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 111, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 654, + '*', 756, + '-', 751, + ';', 585, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(398); + if (lookahead == '_') ADVANCE(866); + if (lookahead == 'i') ADVANCE(669); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(77); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(64); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 78: + case 65: ADVANCE_MAP( - '\n', 248, - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '=', 409, - '>', 332, - '?', 357, - '@', 388, - '\\', 112, - '_', 392, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 836, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 731, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(362); + if (lookahead == '_') ADVANCE(866); + if (lookahead == 'e') ADVANCE(670); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(65); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 79: + case 66: ADVANCE_MAP( - '\n', 249, - '!', 309, - '"', 373, - '#', 395, - '$', 367, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 113, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 836, + '&', 657, + '*', 756, + '-', 751, + ';', 584, + '<', 731, + '>', 737, + '?', 804, + '@', 861, ); + if (lookahead == '\\') SKIP(363); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(79); - if (('1' <= lookahead && lookahead <= '9') || + lookahead == ' ') SKIP(66); + if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 80: + case 67: ADVANCE_MAP( - '\n', 250, - '!', 309, - '"', 373, - '#', 395, - '$', 367, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 114, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '!', 524, + '#', 912, + '%', 769, + '&', 655, + '*', 758, + '+', 750, + ',', 678, + '-', 754, + '/', 764, + ';', 583, + '<', 734, + '=', 684, + '>', 739, ); + if (lookahead == '\\') SKIP(365); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '|') ADVANCE(717); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(80); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(67); END_STATE(); - case 81: + case 68: ADVANCE_MAP( - '\n', 251, - '"', 373, - '#', 406, - '$', 365, - '&', 274, - '\'', 193, - '(', 299, - ';', 268, - '<', 327, - '=', 409, - '>', 332, - '\\', 115, - '`', 402, - 'e', 414, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '"', 839, + '#', 912, + '$', 833, + '&', 654, + '(', 772, + '+', 511, + ',', 678, + '-', 513, + '0', 855, + ';', 583, ); + if (lookahead == '\\') SKIP(384); + if (lookahead == '`') ADVANCE(905); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(81); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(68); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(856); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(681); END_STATE(); - case 82: + case 69: ADVANCE_MAP( - '\n', 252, - '!', 309, - '"', 373, - '#', 395, - '$', 368, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 116, - '_', 392, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 590, + '#', 912, + '$', 832, + '&', 498, + '(', 772, + '-', 521, + '0', 660, + ':', 806, + '<', 730, + '>', 737, ); + if (lookahead == '\\') SKIP(393); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(535); + if (lookahead == '}') ADVANCE(868); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(82); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(69); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 83: - ADVANCE_MAP( - '\n', 253, - '"', 373, - '#', 406, - '$', 368, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 117, - '`', 402, - 'e', 277, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); + case 70: + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '$') ADVANCE(538); + if (lookahead == '&') ADVANCE(657); + if (lookahead == ';') ADVANCE(584); + if (lookahead == '<') ADVANCE(731); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(382); + if (lookahead == '`') ADVANCE(529); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(83); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(70); END_STATE(); - case 84: - ADVANCE_MAP( - '\n', 254, - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '=', 409, - '>', 332, - '?', 357, - '@', 388, - '\\', 118, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); + case 71: + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '&') ADVANCE(657); + if (lookahead == ';') ADVANCE(584); + if (lookahead == '<') ADVANCE(732); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(386); + if (lookahead == '`') ADVANCE(529); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(71); END_STATE(); - case 85: - ADVANCE_MAP( - '\n', 255, - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '=', 409, - '>', 332, - '?', 357, - '@', 388, - '\\', 119, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); + case 72: + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '&') ADVANCE(498); + if (lookahead == '<') ADVANCE(730); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(397); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(535); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(85); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(72); END_STATE(); - case 86: - ADVANCE_MAP( - '\n', 256, - '"', 373, - '#', 406, - '$', 368, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 120, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); + case 73: + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '&') ADVANCE(654); + if (lookahead == ';') ADVANCE(585); + if (lookahead == '\\') SKIP(403); + if (lookahead == '`') ADVANCE(529); + if (lookahead == 'i') ADVANCE(532); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{' || + lookahead == '}') ADVANCE(837); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + lookahead == ' ') SKIP(73); + END_STATE(); + case 74: + if (lookahead == '\n') SKIP(65); + END_STATE(); + case 75: + if (lookahead == '\n') SKIP(66); + END_STATE(); + case 76: + if (lookahead == '\n') SKIP(67); + END_STATE(); + case 77: + if (lookahead == '\n') SKIP(472); + END_STATE(); + case 78: + if (lookahead == '\n') SKIP(457); + END_STATE(); + case 79: + if (lookahead == '\n') SKIP(454); + END_STATE(); + case 80: + if (lookahead == '\n') SKIP(240); + END_STATE(); + case 81: + if (lookahead == '\n') SKIP(486); + END_STATE(); + case 82: + if (lookahead == '\n') SKIP(443); + END_STATE(); + case 83: + if (lookahead == '\n') SKIP(490); + END_STATE(); + case 84: + if (lookahead == '\n') SKIP(241); + END_STATE(); + case 85: + if (lookahead == '\n') SKIP(487); + END_STATE(); + case 86: + if (lookahead == '\n') SKIP(442); END_STATE(); case 87: - ADVANCE_MAP( - '\n', 257, - '"', 373, - '#', 406, - '$', 365, - '&', 274, - '\'', 193, - '(', 299, - ';', 268, - '<', 327, - '=', 409, - '>', 332, - '\\', 121, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(87); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(70); END_STATE(); case 88: - ADVANCE_MAP( - '\n', 258, - '!', 309, - '"', 373, - '#', 395, - '$', 368, - '&', 274, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 268, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 122, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(439); END_STATE(); case 89: - ADVANCE_MAP( - '\n', 259, - '!', 309, - '"', 373, - '#', 395, - '$', 368, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 124, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(68); END_STATE(); case 90: - ADVANCE_MAP( - '\n', 260, - '"', 373, - '#', 406, - '$', 365, - '&', 274, - '\'', 193, - '(', 299, - ')', 296, - ';', 269, - '<', 327, - '=', 409, - '>', 332, - '\\', 125, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(90); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(71); END_STATE(); case 91: - ADVANCE_MAP( - '\n', 261, - '"', 373, - '#', 406, - '$', 368, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 126, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(63); END_STATE(); case 92: - ADVANCE_MAP( - '\n', 262, - '"', 373, - '#', 406, - '$', 367, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 127, - '`', 402, - 'e', 414, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(473); END_STATE(); case 93: - ADVANCE_MAP( - '\n', 263, - '"', 373, - '#', 406, - '$', 367, - '&', 274, - '\'', 193, - ';', 268, - '<', 327, - '>', 332, - '\\', 128, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(445); END_STATE(); case 94: - ADVANCE_MAP( - '\n', 264, - '"', 373, - '#', 406, - '$', 367, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 129, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(94); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(492); END_STATE(); case 95: - ADVANCE_MAP( - '\n', 265, - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '&', 272, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 197, - '>', 198, - '?', 357, - '@', 388, - '\\', 142, - '_', 392, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(95); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(491); END_STATE(); case 96: - ADVANCE_MAP( - '\n', 266, - '"', 373, - '#', 406, - '$', 365, - '&', 272, - '\'', 193, - ')', 296, - ';', 269, - '<', 197, - '>', 198, - '\\', 144, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(96); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(69); END_STATE(); case 97: - if (lookahead == '\r') SKIP(1); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(162); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(474); END_STATE(); case 98: - if (lookahead == '\r') ADVANCE(381); - if (lookahead != 0) ADVANCE(381); + if (lookahead == '\n') SKIP(494); END_STATE(); case 99: - if (lookahead == '\r') ADVANCE(374); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(378); - if (lookahead != 0) ADVANCE(381); + if (lookahead == '\n') SKIP(493); END_STATE(); case 100: - if (lookahead == '\r') SKIP(2); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(167); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(72); END_STATE(); case 101: - if (lookahead == '\r') ADVANCE(376); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(379); - if (lookahead != 0) ADVANCE(381); + if (lookahead == '\n') SKIP(64); END_STATE(); case 102: - if (lookahead == '\r') SKIP(3); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(168); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(446); END_STATE(); case 103: - if (lookahead == '\r') SKIP(4); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(169); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(440); END_STATE(); case 104: - if (lookahead == '\r') ADVANCE(377); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(380); - if (lookahead != 0) ADVANCE(381); + if (lookahead == '\n') SKIP(495); END_STATE(); case 105: - if (lookahead == '\r') SKIP(5); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(6); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(475); END_STATE(); case 106: - if (lookahead == '\r') SKIP(7); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(72); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(73); END_STATE(); case 107: - if (lookahead == '\r') SKIP(8); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(73); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(485); END_STATE(); case 108: - if (lookahead == '\r') SKIP(9); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(74); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(496); END_STATE(); case 109: - if (lookahead == '\r') SKIP(10); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(75); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(497); END_STATE(); case 110: - if (lookahead == '\r') SKIP(66); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(76); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(414); END_STATE(); case 111: - if (lookahead == '\r') SKIP(11); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(77); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(181); END_STATE(); case 112: - if (lookahead == '\r') SKIP(12); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(78); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(435); END_STATE(); case 113: - if (lookahead == '\r') SKIP(67); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(79); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(191); END_STATE(); case 114: - if (lookahead == '\r') SKIP(68); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(80); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(219); END_STATE(); case 115: - if (lookahead == '\r') SKIP(13); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(81); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(225); END_STATE(); case 116: - if (lookahead == '\r') SKIP(69); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(82); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(193); END_STATE(); case 117: - if (lookahead == '\r') SKIP(63); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(83); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(223); END_STATE(); case 118: - if (lookahead == '\r') SKIP(14); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(84); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(194); END_STATE(); case 119: - if (lookahead == '\r') SKIP(15); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(85); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(195); END_STATE(); case 120: - if (lookahead == '\r') SKIP(64); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(86); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(200); END_STATE(); case 121: - if (lookahead == '\r') SKIP(16); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(87); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(202); END_STATE(); case 122: - if (lookahead == '\r') SKIP(70); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(88); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(198); END_STATE(); case 123: - if (lookahead == '\r') SKIP(17); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(186); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(483); END_STATE(); case 124: - if (lookahead == '\r') SKIP(71); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(89); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(463); END_STATE(); case 125: - if (lookahead == '\r') SKIP(18); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(90); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(203); END_STATE(); case 126: - if (lookahead == '\r') SKIP(65); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(91); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(206); END_STATE(); case 127: - if (lookahead == '\r') SKIP(19); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(92); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(239); END_STATE(); case 128: - if (lookahead == '\r') SKIP(20); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(93); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(469); END_STATE(); case 129: - if (lookahead == '\r') SKIP(21); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(94); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(466); END_STATE(); case 130: - if (lookahead == '\r') SKIP(22); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(187); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(464); END_STATE(); case 131: - if (lookahead == '\r') SKIP(23); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(165); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(421); END_STATE(); case 132: - if (lookahead == '\r') SKIP(24); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(25); + if (lookahead == '\n') SKIP(424); END_STATE(); case 133: - if (lookahead == '\r') SKIP(31); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(26); + if (lookahead == '\n') SKIP(61); END_STATE(); case 134: - if (lookahead == '\r') SKIP(32); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(33); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(62); END_STATE(); case 135: - if (lookahead == '\r') SKIP(34); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(35); + if (lookahead == '\n') SKIP(451); END_STATE(); case 136: - if (lookahead == '\r') SKIP(37); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(175); + if (lookahead == '\n') SKIP(242); END_STATE(); case 137: - if (lookahead == '\r') SKIP(38); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(180); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(438); END_STATE(); case 138: - if (lookahead == '\r') SKIP(39); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(166); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(415); END_STATE(); case 139: - if (lookahead == '\r') SKIP(40); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(181); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(220); END_STATE(); case 140: - if (lookahead == '\r') SKIP(41); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(174); + if (lookahead == '\n') SKIP(222); END_STATE(); case 141: - if (lookahead == '\r') SKIP(42); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(163); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(221); END_STATE(); case 142: - if (lookahead == '\r') SKIP(43); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(95); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(205); END_STATE(); case 143: - if (lookahead == '\r') SKIP(44); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(28); + if (lookahead == '\n') SKIP(207); END_STATE(); case 144: - if (lookahead == '\r') SKIP(45); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(96); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(209); END_STATE(); case 145: - if (lookahead == '\r') SKIP(46); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(183); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(210); END_STATE(); case 146: - if (lookahead == '\r') SKIP(47); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(182); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(460); END_STATE(); case 147: - if (lookahead == '\r') SKIP(48); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(164); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(213); END_STATE(); case 148: - if (lookahead == '\r') SKIP(49); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(36); + if (lookahead == '\n') SKIP(212); END_STATE(); case 149: - if (lookahead == '\r') SKIP(50); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(176); + if (lookahead == '\n') SKIP(465); END_STATE(); case 150: - if (lookahead == '\r') SKIP(51); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(184); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(482); END_STATE(); case 151: - if (lookahead == '\r') SKIP(52); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(177); + if (lookahead == '\n') SKIP(478); END_STATE(); case 152: - if (lookahead == '\r') SKIP(53); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(178); + if (lookahead == '\n') SKIP(419); END_STATE(); case 153: - if (lookahead == '\r') SKIP(54); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(179); + if (lookahead == '\n') SKIP(425); END_STATE(); case 154: - if (lookahead == '\r') SKIP(55); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(185); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(59); END_STATE(); case 155: - if (lookahead == '\r') SKIP(56); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27); + if (lookahead == '\n') SKIP(60); END_STATE(); case 156: - if (lookahead == '\r') SKIP(57); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(170); + if (lookahead == '\n') SKIP(228); END_STATE(); case 157: - if (lookahead == '\r') SKIP(58); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(173); + if (lookahead == '\n') SKIP(230); END_STATE(); case 158: - if (lookahead == '\r') SKIP(59); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(189); + if (lookahead == '\n') SKIP(231); END_STATE(); case 159: - if (lookahead == '\r') SKIP(60); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(30); + if (lookahead == '\n') SKIP(224); END_STATE(); case 160: - if (lookahead == '\r') SKIP(61); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(29); + if (lookahead == '\n') SKIP(227); END_STATE(); case 161: - if (lookahead == '\r') SKIP(62); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(190); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(226); END_STATE(); case 162: - ADVANCE_MAP( - '!', 307, - '"', 373, - '#', 395, - '$', 366, - '%', 400, - '&', 274, - '\'', 193, - '(', 300, - ')', 296, - '*', 386, - '+', 346, - '-', 349, - '.', 408, - '/', 397, - '0', 390, - ':', 359, - ';', 268, - '<', 328, - '=', 320, - '>', 331, - '?', 357, - '@', 388, - '[', 311, - '\\', 97, - ']', 312, - '_', 393, - '`', 402, - 'e', 414, - 'i', 413, - '{', 301, - '|', 294, - '}', 302, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(162); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(214); END_STATE(); case 163: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '%', 400, - '\'', 193, - '*', 386, - '-', 351, - '0', 389, - ':', 359, - '<', 197, - '=', 322, - '>', 198, - '?', 357, - '@', 388, - '\\', 141, - '_', 392, - '`', 402, - '}', 302, - '[', 371, - ']', 371, - '{', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(163); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < ' ' || '*' < lookahead) && - (lookahead < '0' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(484); END_STATE(); case 164: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - '<', 197, - '>', 198, - '?', 357, - '@', 388, - '\\', 147, - '_', 392, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(217); END_STATE(); case 165: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 395, - '$', 367, - '&', 210, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - '<', 326, - '>', 332, - '?', 357, - '@', 388, - '\\', 131, - '_', 392, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(216); END_STATE(); case 166: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 406, - '$', 365, - '\'', 193, - '(', 299, - ')', 199, - '-', 415, - '<', 197, - '>', 198, - '\\', 138, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(481); END_STATE(); case 167: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - '(', 300, - ')', 296, - ';', 192, - '<', 326, - '>', 332, - '[', 311, - '\\', 100, - '`', 402, - '{', 301, - '|', 293, - ']', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167); - if (lookahead != 0) ADVANCE(416); + if (lookahead == '\n') SKIP(468); END_STATE(); case 168: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - '(', 300, - ';', 192, - '<', 326, - '>', 332, - '[', 311, - '\\', 102, - '`', 402, - 'e', 414, - '{', 301, - ']', 371, - '}', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(168); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(420); END_STATE(); case 169: - ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - '(', 300, - '<', 326, - '>', 332, - '[', 311, - '\\', 103, - ']', 371, - '`', 402, - '{', 301, - '}', 302, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(169); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(229); END_STATE(); case 170: - ADVANCE_MAP( - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '\'', 193, - ')', 296, - '*', 385, - '-', 348, - '.', 206, - '0', 391, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(156); - if (lookahead == ']') ADVANCE(312); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(302); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(170); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(232); END_STATE(); case 171: - ADVANCE_MAP( - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '*', 385, - '-', 348, - '0', 391, - '?', 356, - '@', 387, - '\\', 99, - '_', 394, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(378); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); - if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(381); + if (lookahead == '\n') SKIP(233); END_STATE(); case 172: - ADVANCE_MAP( - '!', 306, - '#', 395, - '$', 364, - '*', 385, - '-', 348, - '0', 391, - '?', 356, - '@', 387, - '\\', 101, - '_', 394, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(379); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(381); + if (lookahead == '\n') SKIP(218); END_STATE(); case 173: - ADVANCE_MAP( - '!', 306, - '#', 395, - '$', 370, - '*', 385, - '-', 348, - '0', 391, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(157); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '}') ADVANCE(302); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(173); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(470); END_STATE(); case 174: - ADVANCE_MAP( - '!', 308, - '"', 373, - '#', 395, - '$', 364, - '&', 191, - '\'', 193, - ')', 296, - '*', 385, - '+', 347, - '-', 350, - '0', 391, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(140); - if (lookahead == ']') ADVANCE(312); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '|') ADVANCE(217); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(174); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(234); END_STATE(); case 175: - ADVANCE_MAP( - '!', 308, - '"', 373, - '#', 395, - '$', 364, - '&', 191, - '\'', 193, - ')', 199, - '*', 385, - '+', 347, - '-', 350, - '0', 391, - ':', 358, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - '@', 387, - ); - if (lookahead == '\\') SKIP(136); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '|') ADVANCE(217); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(175); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(236); END_STATE(); case 176: - ADVANCE_MAP( - '!', 208, - '#', 406, - '$', 369, - '&', 191, - ')', 199, - '+', 347, - '-', 350, - '.', 206, - ':', 358, - ';', 192, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - ); - if (lookahead == '\\') SKIP(149); - if (lookahead == ']') ADVANCE(372); - if (lookahead == '`') ADVANCE(402); - if (lookahead == 'e') ADVANCE(216); - if (lookahead == 'i') ADVANCE(215); - if (lookahead == '|') ADVANCE(217); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(176); + if (lookahead == '\n') SKIP(235); END_STATE(); case 177: - ADVANCE_MAP( - '!', 208, - '#', 406, - '$', 219, - '&', 191, - '(', 196, - ')', 199, - '+', 347, - '-', 350, - '.', 206, - ':', 358, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - ); - if (lookahead == '\\') SKIP(151); - if (lookahead == '|') ADVANCE(217); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(177); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\n') SKIP(467); END_STATE(); case 178: ADVANCE_MAP( - '!', 208, - '#', 406, - '&', 191, - ')', 296, - '+', 347, - '-', 350, - '<', 330, - '=', 321, - '>', 334, - '?', 356, + '\n', 591, + '!', 916, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + ')', 774, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 853, + ';', 585, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 261, + '^', 719, + '`', 906, + '|', 715, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); - if (lookahead == '\\') SKIP(152); - if (lookahead == ']') ADVANCE(312); - if (lookahead == '|') ADVANCE(295); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(178); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 179: - ADVANCE_MAP( - '!', 208, - '#', 406, - '&', 191, - ')', 296, - '+', 347, - '-', 350, - '<', 330, - '=', 321, - '>', 334, - '?', 356, - ); - if (lookahead == '\\') SKIP(153); - if (lookahead == '|') ADVANCE(295); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(179); + if (lookahead == '\n') SKIP(211); END_STATE(); case 180: - ADVANCE_MAP( - '"', 373, - '#', 395, - '$', 365, - '%', 400, - '\'', 193, - '-', 351, - '/', 397, - ':', 359, - '<', 197, - '=', 322, - '>', 198, - '\\', 137, - '`', 402, - '}', 302, - '[', 371, - ']', 371, - '{', 371, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(180); - if (lookahead != 0 && - (lookahead < '"' || ')' < lookahead) && - (lookahead < ':' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (lookahead == '\n') SKIP(215); END_STATE(); case 181: ADVANCE_MAP( - '"', 373, - '#', 395, - '$', 365, - '%', 400, - '\'', 193, - '-', 351, - ':', 359, - '<', 197, - '=', 322, - '>', 198, - '\\', 139, - '`', 402, - '}', 302, - '[', 371, - ']', 371, - '{', 371, + '\n', 592, + '!', 916, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + ')', 774, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 853, + ';', 585, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 262, + '^', 719, + '`', 905, + '|', 715, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(181); - if (lookahead != 0 && - (lookahead < '"' || ')' < lookahead) && - (lookahead < ':' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 182: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 365, - '\'', 193, - '(', 299, - ')', 296, - '<', 197, - '>', 198, - '\\', 146, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 593, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 266, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(182); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 183: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 365, - '\'', 193, - '<', 197, - '>', 198, - '\\', 145, - '`', 402, - 'e', 414, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 594, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '\\', 267, + '`', 905, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(183); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 184: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 365, - '\'', 193, - '<', 197, - '>', 198, - '\\', 150, - '`', 402, - '}', 302, - '[', 371, - ']', 371, - '{', 371, + '\n', 595, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '\\', 268, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(184); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 185: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 365, - '\'', 193, - '<', 197, - '>', 198, - '\\', 154, - ']', 312, - '`', 402, - '[', 371, - '{', 371, - '}', 371, + '\n', 596, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 269, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(185); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 186: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - '(', 300, - '<', 326, - '>', 332, - '[', 311, - '\\', 123, - '`', 402, - ']', 371, - '{', 371, - '}', 371, + '\n', 597, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '\\', 270, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(186); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 187: ADVANCE_MAP( - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - ')', 296, - '<', 326, - '>', 332, - '\\', 130, - '`', 402, - '|', 293, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 598, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 271, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(187); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 188: - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(375); - if (lookahead == '$') ADVANCE(369); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == '`') ADVANCE(402); + ADVANCE_MAP( + '\n', 599, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 272, + '`', 905, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(380); - if (lookahead != 0) ADVANCE(381); + lookahead == ' ') SKIP(188); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 189: ADVANCE_MAP( - '#', 406, - '$', 370, - '&', 210, - '*', 385, - '+', 209, - '-', 348, - '0', 391, - '<', 325, - '=', 319, - '>', 333, - '?', 356, - '@', 387, - '[', 310, + '\n', 600, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 273, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); - if (lookahead == '\\') SKIP(158); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '}') ADVANCE(302); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(189); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 190: - if (lookahead == '#') ADVANCE(406); - if (lookahead == '$') ADVANCE(219); - if (lookahead == ';') ADVANCE(267); - if (lookahead == '\\') ADVANCE(161); - if (lookahead == '{') ADVANCE(301); + ADVANCE_MAP( + '\n', 601, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 274, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(190); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 191: - if (lookahead == '&') ADVANCE(304); + ADVANCE_MAP( + '\n', 602, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 276, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(191); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 192: - if (lookahead == '&') ADVANCE(297); - if (lookahead == ';') ADVANCE(271); + ADVANCE_MAP( + '\n', 603, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '?', 805, + '@', 862, + '\\', 277, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(192); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 193: - if (lookahead == '\'') ADVANCE(382); - if (lookahead != 0) ADVANCE(193); + ADVANCE_MAP( + '\n', 604, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 278, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(193); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 194: - if (lookahead == '\'') ADVANCE(383); - if (lookahead == '\\') ADVANCE(195); - if (lookahead != 0) ADVANCE(194); + ADVANCE_MAP( + '\n', 605, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 279, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(194); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 195: - if (lookahead == '\'') ADVANCE(384); - if (lookahead == '\\') ADVANCE(195); - if (lookahead != 0) ADVANCE(194); + ADVANCE_MAP( + '\n', 606, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 280, + '`', 905, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(195); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 196: - if (lookahead == '(') ADVANCE(287); + ADVANCE_MAP( + '\n', 607, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '?', 805, + '@', 862, + '\\', 281, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(196); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 197: - if (lookahead == '(') ADVANCE(403); - if (lookahead == '.') ADVANCE(205); + ADVANCE_MAP( + '\n', 608, + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 282, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(197); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 198: - if (lookahead == '(') ADVANCE(404); + ADVANCE_MAP( + '\n', 609, + '!', 787, + '"', 839, + '#', 863, + '$', 827, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 283, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(198); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 199: - if (lookahead == ')') ADVANCE(288); + ADVANCE_MAP( + '\n', 610, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '?', 805, + '@', 862, + '\\', 284, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(199); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 200: - if (lookahead == '+') ADVANCE(207); - if (lookahead == '=') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(200); + ADVANCE_MAP( + '\n', 611, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 285, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(200); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 201: - if (lookahead == '.') ADVANCE(218); + ADVANCE_MAP( + '\n', 612, + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 288, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(201); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 202: - if (lookahead == '.') ADVANCE(418); + ADVANCE_MAP( + '\n', 613, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 289, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(202); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 203: - if (lookahead == '.') ADVANCE(201); + ADVANCE_MAP( + '\n', 614, + '!', 787, + '"', 839, + '#', 863, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 290, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(203); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 204: - if (lookahead == '.') ADVANCE(211); + ADVANCE_MAP( + '\n', 615, + '!', 787, + '"', 839, + '#', 863, + '$', 827, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 291, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(204); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 205: - if (lookahead == '.') ADVANCE(202); + ADVANCE_MAP( + '\n', 616, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 728, + '>', 736, + '\\', 292, + '`', 905, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(205); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 206: - if (lookahead == '.') ADVANCE(204); + ADVANCE_MAP( + '\n', 617, + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 293, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(206); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 207: - if (lookahead == '=') ADVANCE(424); + ADVANCE_MAP( + '\n', 618, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 728, + '>', 736, + '\\', 294, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(207); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 208: - if (lookahead == '=') ADVANCE(344); + ADVANCE_MAP( + '\n', 619, + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '\\', 295, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(208); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 209: - if (lookahead == '=') ADVANCE(323); + ADVANCE_MAP( + '\n', 620, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 728, + '>', 736, + '\\', 296, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(209); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 210: - if (lookahead == '>') ADVANCE(336); + ADVANCE_MAP( + '\n', 621, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 297, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(210); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 211: - if (lookahead == '>') ADVANCE(419); + ADVANCE_MAP( + '\n', 622, + '!', 787, + '"', 839, + '#', 863, + '$', 829, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 407, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(211); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 212: - if (lookahead == ']') ADVANCE(314); + ADVANCE_MAP( + '\n', 623, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 300, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(212); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 213: - if (lookahead == 'a') ADVANCE(214); + ADVANCE_MAP( + '\n', 624, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 301, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(213); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 214: - if (lookahead == 'c') ADVANCE(289); + ADVANCE_MAP( + '\n', 625, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 302, + '_', 864, + '`', 905, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(214); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 215: - if (lookahead == 'n') ADVANCE(284); + ADVANCE_MAP( + '\n', 626, + '!', 787, + '"', 839, + '#', 863, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 408, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(215); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 216: - if (lookahead == 's') ADVANCE(213); + ADVANCE_MAP( + '\n', 627, + '!', 787, + '"', 839, + '#', 863, + '$', 829, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 303, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(216); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 217: - if (lookahead == '|') ADVANCE(305); + ADVANCE_MAP( + '\n', 628, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 305, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(217); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 218: + ADVANCE_MAP( + '\n', 629, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 306, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(218); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(420); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); END_STATE(); case 219: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(422); + ADVANCE_MAP( + '\n', 630, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '\\', 308, + '`', 906, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(219); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 220: + ADVANCE_MAP( + '\n', 631, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 310, + '`', 906, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(220); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 221: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 239, - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '&', 274, - '\'', 193, - ')', 296, - '*', 385, - '-', 348, - '0', 391, - ';', 269, - '<', 329, - '>', 333, - '?', 356, - '@', 387, + '\n', 632, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 313, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); - if (lookahead == '\\') SKIP(234); - if (lookahead == '_') ADVANCE(394); - if (lookahead == '`') ADVANCE(402); - if (lookahead == '|') ADVANCE(294); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(221); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 222: - if (eof) ADVANCE(237); - if (lookahead == '\n') ADVANCE(239); - if (lookahead == '#') ADVANCE(406); - if (lookahead == '&') ADVANCE(274); - if (lookahead == ')') ADVANCE(296); - if (lookahead == ';') ADVANCE(269); - if (lookahead == '<') ADVANCE(329); - if (lookahead == '>') ADVANCE(333); - if (lookahead == '\\') SKIP(235); - if (lookahead == '`') ADVANCE(402); - if (lookahead == '|') ADVANCE(294); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(371); + ADVANCE_MAP( + '\n', 633, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 315, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(222); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 223: - if (eof) ADVANCE(237); - if (lookahead == '\n') SKIP(221); + ADVANCE_MAP( + '\n', 634, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '=', 917, + '>', 736, + '\\', 317, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(223); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 224: - if (eof) ADVANCE(237); - if (lookahead == '\n') SKIP(222); + ADVANCE_MAP( + '\n', 635, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 318, + '`', 906, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(224); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 225: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 243, - '"', 373, - '#', 406, - '$', 366, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 107, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 636, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '\\', 319, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 226: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 247, - '!', 309, - '"', 373, - '#', 395, - '$', 366, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 111, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 637, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 322, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 227: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 250, - '!', 309, - '"', 373, - '#', 395, - '$', 367, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 114, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 638, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 323, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 228: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 255, - '!', 309, - '"', 373, - '#', 395, - '$', 365, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '=', 409, - '>', 332, - '?', 357, - '@', 388, - '\\', 119, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 639, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 325, + '`', 906, + 'e', 664, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 229: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 259, - '!', 309, - '"', 373, - '#', 395, - '$', 368, - '&', 274, - '\'', 193, - ')', 296, - '*', 386, - '-', 351, - '0', 389, - ';', 269, - '<', 327, - '>', 332, - '?', 357, - '@', 388, - '\\', 124, - '_', 392, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 640, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 328, + '`', 906, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 230: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 260, - '"', 373, - '#', 406, - '$', 365, - '&', 274, - '\'', 193, - '(', 299, - ')', 296, - ';', 269, - '<', 327, - '=', 409, - '>', 332, - '\\', 125, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 641, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 330, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); - if (lookahead != 0) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 231: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 261, - '"', 373, - '#', 406, - '$', 368, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 126, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 642, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + '-', 915, + '0', 658, + ';', 584, + '<', 728, + '>', 736, + '\\', 331, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(278); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 232: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 264, - '"', 373, - '#', 406, - '$', 367, - '&', 274, - '\'', 193, - ')', 296, - ';', 269, - '<', 327, - '>', 332, - '\\', 129, - '`', 402, - '|', 294, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 643, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 335, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 233: - if (eof) ADVANCE(237); ADVANCE_MAP( - '\n', 266, - '"', 373, - '#', 406, - '$', 365, - '&', 272, - '\'', 193, - ')', 296, - ';', 269, - '<', 197, - '>', 198, - '\\', 144, - '`', 402, - '[', 371, - ']', 371, - '{', 371, - '}', 371, + '\n', 644, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 729, + '>', 736, + '\\', 336, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(416); + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 234: - if (eof) ADVANCE(237); - if (lookahead == '\r') SKIP(223); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(221); + ADVANCE_MAP( + '\n', 645, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 728, + '>', 736, + '\\', 338, + '`', 906, + 'e', 921, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(234); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 235: - if (eof) ADVANCE(237); - if (lookahead == '\r') SKIP(224); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(222); + ADVANCE_MAP( + '\n', 646, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '-', 915, + '0', 853, + ';', 584, + '<', 728, + '>', 736, + '\\', 342, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(235); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 236: - if (eof) ADVANCE(237); ADVANCE_MAP( - '!', 309, - '"', 373, - '#', 406, - '$', 367, - '&', 210, - '\'', 193, - '(', 300, - ')', 296, - ';', 192, - '<', 326, - '>', 332, - '[', 311, - '\\', 100, - '`', 402, - '{', 301, - '|', 293, - ']', 371, - '}', 371, + '\n', 647, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 728, + '>', 736, + '\\', 344, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236); - if (lookahead != 0) ADVANCE(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); END_STATE(); case 237: - ACCEPT_TOKEN(ts_builtin_sym_end); + ADVANCE_MAP( + '\n', 648, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 727, + '>', 736, + '?', 805, + '@', 862, + '\\', 347, + '_', 864, + '`', 905, + '|', 535, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(237); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 238: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(238); - if (lookahead == '\\') ADVANCE(105); + ADVANCE_MAP( + '\n', 649, + '"', 839, + '#', 912, + '$', 826, + '&', 654, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + ';', 585, + '<', 505, + '>', 506, + '\\', 351, + '`', 905, + 'e', 921, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(238); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 239: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(239); + ADVANCE_MAP( + '\n', 650, + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '\\', 366, + '`', 906, + '|', 535, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(239); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 240: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(240); - if (lookahead == '-') ADVANCE(415); - if (lookahead == '\\') ADVANCE(134); + ADVANCE_MAP( + '\n', 651, + '"', 839, + '#', 912, + '$', 826, + '&', 654, + '\'', 500, + '-', 915, + '0', 853, + ';', 585, + '<', 505, + '>', 506, + '\\', 372, + '`', 905, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(240); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 241: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(241); - if (lookahead == '-') ADVANCE(350); + ADVANCE_MAP( + '\n', 652, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 654, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 505, + '>', 506, + '?', 805, + '@', 862, + '\\', 379, + '_', 864, + '`', 905, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(241); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 242: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(242); - if (lookahead == '\\') ADVANCE(106); + ADVANCE_MAP( + '\n', 653, + '"', 839, + '#', 912, + '$', 826, + '&', 654, + '\'', 500, + '-', 915, + '0', 853, + ';', 585, + '<', 505, + '>', 506, + '\\', 387, + '`', 906, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(242); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 243: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(243); - if (lookahead == '\\') ADVANCE(107); + if (lookahead == '\r') SKIP(1); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(409); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 244: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(244); - if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\r') ADVANCE(840); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(846); + if (lookahead != 0) ADVANCE(848); END_STATE(); case 245: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(245); - if (lookahead == '\\') ADVANCE(109); + if (lookahead == '\r') ADVANCE(849); + if (lookahead != 0) ADVANCE(848); END_STATE(); case 246: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(246); - if (lookahead == '\\') ADVANCE(110); + if (lookahead == '\r') SKIP(2); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(428); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 247: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(247); - if (lookahead == '\\') ADVANCE(111); + if (lookahead == '\r') SKIP(3); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(429); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 248: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(248); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '\r') ADVANCE(841); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(844); + if (lookahead != 0) ADVANCE(848); END_STATE(); case 249: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(249); - if (lookahead == '\\') ADVANCE(113); + if (lookahead == '\r') SKIP(4); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(430); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 250: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(250); - if (lookahead == '\\') ADVANCE(114); + if (lookahead == '\r') ADVANCE(842); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(845); + if (lookahead != 0) ADVANCE(848); END_STATE(); case 251: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(251); - if (lookahead == '\\') ADVANCE(115); + if (lookahead == '\r') SKIP(5); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(6); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(252); - if (lookahead == '\\') ADVANCE(116); + if (lookahead == '\r') SKIP(7); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(431); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 253: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(253); - if (lookahead == '\\') ADVANCE(117); + if (lookahead == '\r') SKIP(8); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(411); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 254: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(254); - if (lookahead == '\\') ADVANCE(118); + if (lookahead == '\r') SKIP(9); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(432); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 255: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(255); - if (lookahead == '\\') ADVANCE(119); + if (lookahead == '\r') SKIP(110); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(414); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 256: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(256); - if (lookahead == '\\') ADVANCE(120); + if (lookahead == '\r') SKIP(138); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(415); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 257: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(257); - if (lookahead == '\\') ADVANCE(121); + if (lookahead == '\r') SKIP(10); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(412); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 258: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(258); - if (lookahead == '\\') ADVANCE(122); + if (lookahead == '\r') SKIP(11); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(413); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 259: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(259); - if (lookahead == '\\') ADVANCE(124); + if (lookahead == '\r') SKIP(12); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(13); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 260: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\\') ADVANCE(125); + if (lookahead == '\r') SKIP(14); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(410); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 261: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(261); - if (lookahead == '\\') ADVANCE(126); + if (lookahead == '\r') SKIP(15); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(178); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 262: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(262); - if (lookahead == '\\') ADVANCE(127); + if (lookahead == '\r') SKIP(111); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(181); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 263: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(263); - if (lookahead == '\\') ADVANCE(128); + if (lookahead == '\r') SKIP(16); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(434); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 264: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(264); - if (lookahead == '\\') ADVANCE(129); + if (lookahead == '\r') SKIP(17); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(433); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 265: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(265); - if (lookahead == '\\') ADVANCE(142); + if (lookahead == '\r') SKIP(112); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(435); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 266: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(266); - if (lookahead == '\\') ADVANCE(144); + if (lookahead == '\r') SKIP(18); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(182); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 267: - ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '\r') SKIP(19); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(183); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 268: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(297); - if (lookahead == ';') ADVANCE(271); + if (lookahead == '\r') SKIP(20); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(184); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 269: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(270); + if (lookahead == '\r') SKIP(21); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(185); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 270: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '\r') SKIP(22); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(186); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 271: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(298); + if (lookahead == '\r') SKIP(23); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(187); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 272: - ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '\r') SKIP(24); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(188); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 273: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(304); + if (lookahead == '\r') SKIP(25); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(189); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 274: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(304); - if (lookahead == '>') ADVANCE(336); + if (lookahead == '\r') SKIP(26); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(190); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 275: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 'a') ADVANCE(276); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(27); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(476); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 276: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 'c') ADVANCE(290); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(113); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(191); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 277: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 's') ADVANCE(275); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(28); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(192); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 278: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == '\\') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(116); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(193); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 279: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'a') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(118); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(194); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 280: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'c') ADVANCE(292); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(119); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(195); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 281: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 'n') ADVANCE(286); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(29); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(196); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 282: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (lookahead == 's') ADVANCE(279); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(30); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(197); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 283: - ACCEPT_TOKEN(aux_sym_for_statement_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(122); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(198); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 284: - ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\r') SKIP(31); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(199); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 285: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(120); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(200); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 286: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(32); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(459); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 287: - ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + if (lookahead == '\r') SKIP(33); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(462); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 288: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + if (lookahead == '\r') SKIP(34); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(201); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 289: - ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\r') SKIP(121); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(202); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 290: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(125); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(203); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 291: - ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(35); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(204); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 292: - ACCEPT_TOKEN(anon_sym_esac); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(142); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(205); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 293: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '\r') SKIP(126); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(206); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 294: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(303); - if (lookahead == '|') ADVANCE(305); + if (lookahead == '\r') SKIP(143); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(207); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 295: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(305); + if (lookahead == '\r') SKIP(36); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(208); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 296: - ACCEPT_TOKEN(anon_sym_RPAREN); + if (lookahead == '\r') SKIP(144); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(209); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 297: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); + if (lookahead == '\r') SKIP(145); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(210); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 298: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); + if (lookahead == '\r') SKIP(37); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(479); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 299: - ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '\r') SKIP(38); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(480); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 300: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(287); + if (lookahead == '\r') SKIP(148); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(212); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 301: - ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '\r') SKIP(147); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(213); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 302: - ACCEPT_TOKEN(anon_sym_RBRACE); + if (lookahead == '\r') SKIP(162); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(214); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 303: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + if (lookahead == '\r') SKIP(165); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(216); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 304: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '\r') SKIP(39); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(477); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 305: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '\r') SKIP(164); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(217); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 306: - ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\r') SKIP(172); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(218); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 307: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(345); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(40); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(417); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 308: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(344); + if (lookahead == '\r') SKIP(114); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(219); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 309: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(128); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(469); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 310: - ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '\r') SKIP(139); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(220); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 311: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(313); + if (lookahead == '\r') SKIP(123); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(483); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 312: - ACCEPT_TOKEN(anon_sym_RBRACK); + if (lookahead == '\r') SKIP(41); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(423); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 313: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + if (lookahead == '\r') SKIP(141); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(221); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 314: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + if (lookahead == '\r') SKIP(149); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(465); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 315: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\r') SKIP(140); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(222); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 316: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(42); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(416); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 317: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\r') SKIP(117); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(223); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 318: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(159); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(224); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 319: - ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\r') SKIP(115); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(225); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 320: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == '~') ADVANCE(316); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(132); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(424); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 321: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(317); - if (lookahead == '~') ADVANCE(315); + if (lookahead == '\r') SKIP(43); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(461); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 322: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(161); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(226); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 323: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\r') SKIP(160); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(227); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 324: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(129); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(466); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 325: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(338); + if (lookahead == '\r') SKIP(156); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(228); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 326: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(338); - if (lookahead == '(') ADVANCE(403); - if (lookahead == '.') ADVANCE(205); + if (lookahead == '\r') SKIP(44); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(426); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 327: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(338); - if (lookahead == '(') ADVANCE(403); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '<') ADVANCE(341); + if (lookahead == '\r') SKIP(131); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(421); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 328: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(338); - if (lookahead == '(') ADVANCE(403); - if (lookahead == '.') ADVANCE(205); - if (lookahead == '<') ADVANCE(341); - if (lookahead == '=') ADVANCE(354); + if (lookahead == '\r') SKIP(169); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(229); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 329: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(338); - if (lookahead == '<') ADVANCE(341); + if (lookahead == '\r') SKIP(45); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(436); END_STATE(); case 330: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(354); + if (lookahead == '\r') SKIP(157); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(230); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 331: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(339); - if (lookahead == '(') ADVANCE(404); - if (lookahead == '=') ADVANCE(355); - if (lookahead == '>') ADVANCE(335); - if (lookahead == '|') ADVANCE(340); + if (lookahead == '\r') SKIP(158); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(231); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 332: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(339); - if (lookahead == '(') ADVANCE(404); - if (lookahead == '>') ADVANCE(335); - if (lookahead == '|') ADVANCE(340); + if (lookahead == '\r') SKIP(152); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(419); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 333: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(339); - if (lookahead == '>') ADVANCE(335); - if (lookahead == '|') ADVANCE(340); + if (lookahead == '\r') SKIP(46); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(418); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 334: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(355); + if (lookahead == '\r') SKIP(153); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(425); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 335: - ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '\r') SKIP(170); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(232); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 336: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(337); + if (lookahead == '\r') SKIP(171); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(233); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 337: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + if (lookahead == '\r') SKIP(47); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(427); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 338: - ACCEPT_TOKEN(anon_sym_LT_AMP); + if (lookahead == '\r') SKIP(174); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(234); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 339: - ACCEPT_TOKEN(anon_sym_GT_AMP); + if (lookahead == '\r') SKIP(48); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(449); END_STATE(); case 340: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + if (lookahead == '\r') SKIP(49); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(437); END_STATE(); case 341: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(342); - if (lookahead == '<') ADVANCE(343); + if (lookahead == '\r') SKIP(168); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(420); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 342: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + if (lookahead == '\r') SKIP(176); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(235); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 343: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + if (lookahead == '\r') SKIP(50); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(450); END_STATE(); case 344: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\r') SKIP(175); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(236); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 345: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(124); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(463); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 346: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(361); - if (lookahead == '=') ADVANCE(324); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(166); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(481); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 347: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(360); - if (lookahead == '=') ADVANCE(323); + if (lookahead == '\r') SKIP(51); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(237); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 348: - ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '\r') SKIP(146); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(460); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 349: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(363); - if (lookahead == '=') ADVANCE(353); - if (lookahead == '\\') ADVANCE(220); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(52); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(422); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 350: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(362); - if (lookahead == '=') ADVANCE(352); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + if (lookahead == '\r') SKIP(150); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(482); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 351: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(53); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(238); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 352: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\r') SKIP(54); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(452); END_STATE(); case 353: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(173); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(470); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 354: - ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == '\r') SKIP(163); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(484); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 355: - ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == '\r') SKIP(55); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(453); END_STATE(); case 356: - ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\r') SKIP(130); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(464); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 357: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(177); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(467); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 358: - ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\r') SKIP(56); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(458); END_STATE(); case 359: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '-') ADVANCE(399); - if (lookahead == '?') ADVANCE(398); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(167); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(468); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 360: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\r') SKIP(57); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(455); END_STATE(); case 361: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(58); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(471); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 362: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\r') SKIP(74); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(65); END_STATE(); case 363: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(75); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(66); END_STATE(); case 364: - ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\r') SKIP(151); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(478); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 365: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(401); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '{') ADVANCE(396); + if (lookahead == '\r') SKIP(76); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(67); END_STATE(); case 366: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(401); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '{') ADVANCE(396); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(421); + if (lookahead == '\r') SKIP(127); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(239); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 367: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(401); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '{') ADVANCE(396); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(200); + if (lookahead == '\r') SKIP(77); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(472); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 368: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(194); - if (lookahead == '(') ADVANCE(401); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '{') ADVANCE(396); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(422); + if (lookahead == '\r') SKIP(133); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(61); END_STATE(); case 369: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(401); - if (lookahead == '.') ADVANCE(203); - if (lookahead == '{') ADVANCE(396); + if (lookahead == '\r') SKIP(78); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(457); END_STATE(); case 370: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(422); + if (lookahead == '\r') SKIP(79); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(454); END_STATE(); case 371: - ACCEPT_TOKEN(sym_special_character); + if (lookahead == '\r') SKIP(135); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(451); END_STATE(); case 372: - ACCEPT_TOKEN(sym_special_character); - if (lookahead == ']') ADVANCE(314); + if (lookahead == '\r') SKIP(80); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(240); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 373: - ACCEPT_TOKEN(anon_sym_DQUOTE); + if (lookahead == '\r') SKIP(81); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(486); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 374: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(378); - if (lookahead == '\\') ADVANCE(98); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(381); + if (lookahead == '\r') SKIP(154); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(59); END_STATE(); case 375: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(381); - if (lookahead == '\\') ADVANCE(405); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(375); + if (lookahead == '\r') SKIP(134); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(62); END_STATE(); case 376: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(379); - if (lookahead == '\\') ADVANCE(98); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(381); + if (lookahead == '\r') SKIP(155); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(60); END_STATE(); case 377: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(380); - if (lookahead == '\\') ADVANCE(98); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(381); + if (lookahead == '\r') SKIP(82); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(443); END_STATE(); case 378: - ACCEPT_TOKEN(sym_string_content); - ADVANCE_MAP( - '!', 306, - '"', 373, - '#', 395, - '$', 364, - '*', 385, - '-', 348, - '0', 391, - '?', 356, - '@', 387, - '\\', 99, - '_', 394, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(378); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); - if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(381); + if (lookahead == '\r') SKIP(83); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(490); END_STATE(); case 379: - ACCEPT_TOKEN(sym_string_content); - ADVANCE_MAP( - '!', 306, - '#', 395, - '$', 364, - '*', 385, - '-', 348, - '0', 391, - '?', 356, - '@', 387, - '\\', 101, - '_', 394, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(379); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); - if (lookahead != 0 && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(381); + if (lookahead == '\r') SKIP(84); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(241); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 380: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '"') ADVANCE(373); - if (lookahead == '#') ADVANCE(375); - if (lookahead == '$') ADVANCE(369); - if (lookahead == '\\') ADVANCE(104); - if (lookahead == '`') ADVANCE(402); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(380); - if (lookahead != 0) ADVANCE(381); + if (lookahead == '\r') SKIP(85); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(487); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 381: - ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(98); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '`') ADVANCE(381); + if (lookahead == '\r') SKIP(86); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(442); END_STATE(); case 382: - ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\r') SKIP(87); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(70); END_STATE(); case 383: - ACCEPT_TOKEN(sym_ansii_c_string); + if (lookahead == '\r') SKIP(88); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(439); END_STATE(); case 384: - ACCEPT_TOKEN(sym_ansii_c_string); - if (lookahead == '\'') ADVANCE(383); - if (lookahead == '\\') ADVANCE(195); - if (lookahead != 0) ADVANCE(194); + if (lookahead == '\r') SKIP(89); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(68); END_STATE(); case 385: - ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\r') SKIP(137); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(438); END_STATE(); case 386: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(90); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(71); END_STATE(); case 387: - ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\r') SKIP(136); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(242); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 388: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(91); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(63); END_STATE(); case 389: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(92); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(473); END_STATE(); case 390: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(93); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(445); END_STATE(); case 391: - ACCEPT_TOKEN(anon_sym_0); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(94); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(492); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 392: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(220); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(278); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(95); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(491); END_STATE(); case 393: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(96); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(69); END_STATE(); case 394: - ACCEPT_TOKEN(anon_sym__); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(283); + if (lookahead == '\r') SKIP(97); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(474); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 395: - ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead == '\r') SKIP(98); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(494); END_STATE(); case 396: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '\r') SKIP(99); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(493); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 397: - ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '\r') SKIP(100); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(72); END_STATE(); case 398: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(101); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(64); END_STATE(); case 399: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(102); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(446); END_STATE(); case 400: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(103); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(440); END_STATE(); case 401: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\r') SKIP(104); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(495); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 402: - ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '\r') SKIP(105); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(475); END_STATE(); case 403: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); + if (lookahead == '\r') SKIP(106); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(73); END_STATE(); case 404: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); + if (lookahead == '\r') SKIP(107); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(485); END_STATE(); case 405: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(381); - if (lookahead == '\r') ADVANCE(375); - if (lookahead != 0) ADVANCE(375); + if (lookahead == '\r') SKIP(108); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(496); END_STATE(); case 406: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(406); + if (lookahead == '\r') SKIP(109); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(497); END_STATE(); case 407: - ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(410); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(179); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(211); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 408: - ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(407); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + if (lookahead == '\r') SKIP(180); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(215); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 409: - ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(318); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == '~') ADVANCE(316); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 863, + '$', 827, + '%', 766, + '&', 656, + '\'', 500, + '(', 773, + ')', 774, + '*', 757, + '+', 814, + ',', 679, + '-', 812, + '/', 761, + ':', 809, + ';', 584, + '<', 726, + '=', 686, + '>', 735, + '?', 805, + '@', 862, + '[', 789, + '\\', 243, + ']', 790, + '^', 718, + '_', 865, + '`', 906, + 'e', 921, + 'i', 920, + '{', 781, + '|', 715, + '}', 868, + '~', 816, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(409); + if (lookahead != 0) ADVANCE(923); END_STATE(); case 410: - ACCEPT_TOKEN(sym_word); - if (lookahead == '>') ADVANCE(419); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 863, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 658, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '@', 862, + '\\', 260, + ']', 790, + '^', 719, + '_', 864, + '`', 905, + '|', 715, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(410); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 411: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 'a') ADVANCE(412); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 253, + ']', 790, + '^', 719, + '`', 906, + '|', 715, + '~', 816, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(411); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); case 412: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 'c') ADVANCE(291); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 655, + '\'', 500, + '(', 772, + ')', 774, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + '<', 733, + '=', 683, + '>', 738, + '?', 805, + '\\', 257, + '^', 719, + '`', 906, + '|', 717, + '~', 816, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(412); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); case 413: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 'n') ADVANCE(285); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 655, + '\'', 500, + '(', 772, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + ':', 809, + '<', 733, + '=', 683, + '>', 738, + '?', 805, + '\\', 258, + '^', 719, + '`', 906, + '|', 717, + '~', 816, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(413); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < '/' || '?' < lookahead)) ADVANCE(923); END_STATE(); case 414: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if (lookahead == 's') ADVANCE(411); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 655, + '\'', 500, + '(', 772, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + '<', 733, + '=', 683, + '>', 738, + '?', 805, + '\\', 255, + ']', 838, + '^', 719, + '`', 906, + '|', 717, + '~', 816, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(414); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); case 415: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 655, + '\'', 500, + '(', 772, + '*', 757, + '+', 815, + '-', 813, + '/', 763, + '0', 853, + '<', 733, + '=', 683, + '>', 738, + '?', 805, + '\\', 256, + ']', 790, + '^', 719, + '`', 906, + '|', 717, + '~', 816, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(415); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); case 416: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(220); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(416); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 827, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 316, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(416); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 417: - ACCEPT_TOKEN(sym_test_operator); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + '(', 772, + '*', 759, + '-', 755, + '0', 658, + '<', 729, + '=', 917, + '>', 736, + '?', 805, + '@', 862, + '\\', 307, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(417); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(417); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(923); END_STATE(); case 418: - ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_DOT); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 333, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(418); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 419: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_GT); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 332, + ']', 790, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(419); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 420: - ACCEPT_TOKEN(sym_semgrep_named_ellipsis); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(420); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 341, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(420); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 421: - ACCEPT_TOKEN(sym_semgrep_metavariable); - if (lookahead == '+') ADVANCE(207); - if (lookahead == '=') ADVANCE(423); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(421); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 327, + ']', 790, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(421); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 422: - ACCEPT_TOKEN(sym_semgrep_metavariable); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(422); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 526, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 727, + '>', 736, + '?', 805, + '@', 862, + '\\', 349, + '_', 864, + '`', 905, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(422); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '_' || '}' < lookahead)) ADVANCE(923); END_STATE(); case 423: - ACCEPT_TOKEN(sym_semgrep_metavar_eq); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 312, + ']', 790, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(423); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); case 424: - ACCEPT_TOKEN(sym_semgrep_metavar_pluseq); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(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); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 320, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0); - END_STATE(); - case 1: - if (lookahead == '\r') SKIP(13); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(0); + lookahead == ' ') SKIP(424); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 2: - if (lookahead == 'a') ADVANCE(14); + case 425: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 863, + '$', 829, + '&', 498, + '\'', 500, + '*', 759, + '-', 755, + '0', 658, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 334, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(425); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 3: - if (lookahead == 'e') ADVANCE(15); - if (lookahead == 'o') ADVANCE(16); + case 426: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 826, + '\'', 500, + '(', 773, + '+', 815, + '-', 813, + '0', 853, + '<', 505, + '>', 506, + '\\', 326, + '`', 905, + '{', 781, + '~', 816, + '[', 837, + ']', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(923); END_STATE(); - case 4: - if (lookahead == 'l') ADVANCE(17); - if (lookahead == 'x') ADVANCE(18); + case 427: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 826, + '\'', 500, + '(', 772, + '+', 815, + '-', 813, + '0', 853, + '<', 505, + '>', 506, + '\\', 337, + '`', 905, + '~', 816, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(427); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(923); END_STATE(); - case 5: - if (lookahead == 'i') ADVANCE(19); - if (lookahead == 'o') ADVANCE(20); - if (lookahead == 'u') ADVANCE(21); + case 428: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + ')', 774, + '-', 915, + '0', 853, + ';', 499, + '<', 727, + '>', 736, + '[', 789, + '\\', 246, + '`', 905, + '{', 781, + '|', 713, + ']', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(428); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); END_STATE(); - case 6: - if (lookahead == 'f') ADVANCE(22); + case 429: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + ')', 509, + '+', 815, + '-', 813, + '0', 853, + '<', 727, + '>', 736, + '[', 789, + '\\', 247, + '`', 905, + '{', 781, + '|', 714, + '~', 816, + ']', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(429); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 7: - if (lookahead == 'o') ADVANCE(23); + case 430: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + '+', 815, + '-', 813, + '0', 853, + '<', 727, + '>', 736, + '[', 789, + '\\', 249, + ']', 790, + '`', 905, + '{', 781, + '}', 837, + '~', 816, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(430); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(923); END_STATE(); - case 8: - if (lookahead == 'e') ADVANCE(24); + case 431: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + '-', 915, + '0', 853, + ';', 499, + '<', 727, + '>', 736, + '[', 789, + '\\', 252, + '`', 905, + 'e', 921, + '{', 781, + ']', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(431); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 9: - if (lookahead == 'e') ADVANCE(25); + case 432: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '[', 789, + '\\', 254, + ']', 837, + '`', 905, + '{', 781, + '}', 782, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(432); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 10: - if (lookahead == 'h') ADVANCE(26); - if (lookahead == 'y') ADVANCE(27); + case 433: + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 772, + '+', 815, + '-', 813, + '0', 853, + '<', 727, + '>', 736, + '[', 789, + '\\', 264, + '`', 905, + '~', 816, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(433); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(923); END_STATE(); - case 11: - if (lookahead == 'n') ADVANCE(28); + case 434: + ADVANCE_MAP( + '!', 916, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 853, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 263, + ']', 790, + '^', 719, + '`', 906, + '|', 715, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(434); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); - case 12: - if (lookahead == 'h') ADVANCE(29); + case 435: + ADVANCE_MAP( + '!', 916, + '"', 839, + '#', 912, + '$', 826, + '%', 768, + '&', 656, + '\'', 500, + '(', 772, + '*', 757, + '+', 749, + '-', 752, + '/', 763, + '0', 853, + '<', 726, + '=', 683, + '>', 735, + '?', 805, + '\\', 265, + ']', 790, + '^', 719, + '`', 905, + '|', 715, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(435); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < ' ' || '+' < lookahead) && + (lookahead < ';' || '?' < lookahead)) ADVANCE(923); END_STATE(); - case 13: - if (lookahead == '\n') SKIP(0); + case 436: + ADVANCE_MAP( + '!', 786, + '"', 839, + '#', 863, + '$', 825, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + '-', 753, + '/', 764, + ':', 806, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(329); + if (lookahead == ']') ADVANCE(528); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(436); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 14: - if (lookahead == 's') ADVANCE(30); + case 437: + ADVANCE_MAP( + '!', 786, + '"', 839, + '#', 863, + '$', 825, + '%', 769, + '&', 655, + '*', 758, + '+', 750, + '-', 753, + '/', 764, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(340); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(437); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 15: - if (lookahead == 'c') ADVANCE(31); + case 438: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 498, + '*', 756, + '-', 751, + '<', 731, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(385); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(438); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 16: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(32); + case 439: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 498, + '*', 756, + '-', 751, + '<', 732, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(383); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(439); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 17: - if (lookahead == 'i') ADVANCE(33); - if (lookahead == 's') ADVANCE(34); + case 440: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 825, + ')', 774, + '*', 756, + '-', 751, + '.', 520, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(400); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(713); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(440); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 18: - if (lookahead == 'p') ADVANCE(35); + case 441: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '*', 756, + '-', 751, + '?', 804, + '@', 861, + '\\', 248, + '_', 866, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(441); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(844); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + if (lookahead != 0 && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(848); END_STATE(); - case 19: - ACCEPT_TOKEN(anon_sym_fi); + case 442: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 836, + '&', 498, + '*', 756, + '-', 751, + '<', 731, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(381); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(442); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 20: - if (lookahead == 'r') ADVANCE(36); + case 443: + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 912, + '$', 834, + '&', 498, + '\'', 500, + '(', 772, + '+', 815, + '-', 813, + '0', 660, + '<', 732, + '>', 737, + ); + if (lookahead == '\\') SKIP(377); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (lookahead == '~') ADVANCE(816); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(443); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 21: - if (lookahead == 'n') ADVANCE(37); + case 444: + ADVANCE_MAP( + '!', 784, + '#', 863, + '$', 825, + '*', 756, + '-', 751, + '?', 804, + '@', 861, + '\\', 250, + '_', 866, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(444); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(845); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(848); END_STATE(); - case 22: - ACCEPT_TOKEN(anon_sym_if); + case 445: + if (lookahead == '!') ADVANCE(784); + if (lookahead == '#') ADVANCE(863); + if (lookahead == '$') ADVANCE(835); + if (lookahead == '*') ADVANCE(756); + if (lookahead == '-') ADVANCE(751); + if (lookahead == '?') ADVANCE(804); + if (lookahead == '@') ADVANCE(861); + if (lookahead == '\\') SKIP(390); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 23: - if (lookahead == 'c') ADVANCE(38); + case 446: + if (lookahead == '!') ADVANCE(784); + if (lookahead == '#') ADVANCE(863); + if (lookahead == '$') ADVANCE(835); + if (lookahead == '*') ADVANCE(756); + if (lookahead == '-') ADVANCE(751); + if (lookahead == '?') ADVANCE(804); + if (lookahead == '@') ADVANCE(861); + if (lookahead == '\\') SKIP(399); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(446); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 24: - if (lookahead == 'a') ADVANCE(39); + case 447: + ADVANCE_MAP( + '!', 869, + '#', 875, + '$', 835, + '*', 756, + '-', 751, + '=', 876, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(390); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(445); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 25: - if (lookahead == 'l') ADVANCE(40); + case 448: + ADVANCE_MAP( + '!', 524, + '"', 839, + '#', 912, + '$', 833, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + ',', 678, + '-', 753, + '.', 516, + '/', 764, + ':', 806, + ';', 499, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(339); + if (lookahead == ']') ADVANCE(838); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(905); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'i') ADVANCE(532); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); - case 26: - if (lookahead == 'e') ADVANCE(41); + case 449: + ADVANCE_MAP( + '!', 524, + '"', 839, + '#', 912, + '$', 833, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + ',', 678, + '-', 753, + '/', 764, + ':', 806, + ';', 499, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(339); + if (lookahead == ']') ADVANCE(838); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(905); + if (lookahead == 'e') ADVANCE(533); + if (lookahead == 'i') ADVANCE(532); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(449); END_STATE(); - case 27: - if (lookahead == 'p') ADVANCE(42); + case 450: + ADVANCE_MAP( + '!', 524, + '"', 839, + '#', 912, + '$', 508, + '%', 769, + '&', 655, + '(', 503, + ')', 509, + '*', 758, + '+', 750, + ',', 678, + '-', 753, + '.', 520, + '/', 764, + ':', 806, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(343); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(450); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 28: - if (lookahead == 's') ADVANCE(43); + case 451: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + ',', 678, + '-', 754, + '/', 764, + '<', 734, + '=', 684, + '>', 739, + ); + if (lookahead == '\\') SKIP(371); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '|') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(451); END_STATE(); - case 29: - if (lookahead == 'i') ADVANCE(44); + case 452: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + '-', 753, + '.', 520, + '/', 764, + ':', 806, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(352); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(717); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(452); END_STATE(); - case 30: - if (lookahead == 'e') ADVANCE(45); + case 453: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + '-', 753, + '/', 764, + ':', 806, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(355); + if (lookahead == ']') ADVANCE(838); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(453); END_STATE(); - case 31: - if (lookahead == 'l') ADVANCE(46); + case 454: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 774, + '*', 758, + '+', 750, + '-', 753, + '/', 764, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + '[', 788, + ); + if (lookahead == '\\') SKIP(370); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '|') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(454); END_STATE(); - case 32: - if (lookahead == 'e') ADVANCE(47); + case 455: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 509, + '*', 758, + '+', 750, + ',', 678, + '-', 753, + '/', 764, + ':', 806, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + '[', 788, + ); + if (lookahead == '\\') SKIP(360); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(455); END_STATE(); - case 33: - if (lookahead == 'f') ADVANCE(48); + case 456: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 509, + '*', 758, + '+', 750, + ',', 678, + '-', 754, + '/', 764, + '<', 734, + '=', 684, + '>', 739, + ); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '}') ADVANCE(823); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(457); END_STATE(); - case 34: - if (lookahead == 'e') ADVANCE(49); + case 457: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + ')', 509, + '*', 758, + '+', 750, + ',', 678, + '-', 754, + '/', 764, + '<', 734, + '=', 684, + '>', 739, + ); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '|') ADVANCE(717); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(457); END_STATE(); - case 35: - if (lookahead == 'o') ADVANCE(50); + case 458: + ADVANCE_MAP( + '!', 524, + '#', 912, + '%', 769, + '&', 655, + '*', 758, + '+', 750, + '-', 753, + '/', 764, + '<', 734, + '=', 685, + '>', 739, + '?', 804, + ); + if (lookahead == '\\') SKIP(358); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '^') ADVANCE(720); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(717); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(458); END_STATE(); - case 36: - ACCEPT_TOKEN(anon_sym_for); + case 459: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 827, + '&', 498, + '\'', 500, + '-', 915, + '0', 658, + '<', 728, + '>', 736, + '\\', 286, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(459); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 37: - if (lookahead == 'c') ADVANCE(51); + case 460: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 827, + '&', 498, + '\'', 500, + '-', 915, + '0', 658, + '<', 728, + '>', 736, + '\\', 348, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(460); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 38: - if (lookahead == 'a') ADVANCE(52); + case 461: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '(', 772, + ')', 774, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 321, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(461); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 39: - if (lookahead == 'd') ADVANCE(53); + case 462: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 729, + '=', 917, + '>', 736, + '\\', 287, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(462); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(923); END_STATE(); - case 40: - if (lookahead == 'e') ADVANCE(54); + case 463: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 729, + '=', 917, + '>', 736, + '\\', 345, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(463); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + (lookahead < ';' || '>' < lookahead)) ADVANCE(923); END_STATE(); - case 41: - if (lookahead == 'n') ADVANCE(55); + case 464: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 356, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 42: - if (lookahead == 'e') ADVANCE(56); + case 465: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 728, + '>', 736, + '\\', 314, + ']', 790, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 43: - if (lookahead == 'e') ADVANCE(57); + case 466: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 728, + '>', 736, + '\\', 324, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(466); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 44: - if (lookahead == 'l') ADVANCE(58); + case 467: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 728, + '>', 736, + '\\', 357, + ']', 790, + '`', 906, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(467); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_case); + case 468: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 728, + '>', 736, + '\\', 359, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(468); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 46: - if (lookahead == 'a') ADVANCE(59); + case 469: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 309, + ']', 790, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(469); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 47: - ACCEPT_TOKEN(anon_sym_done); + case 470: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 353, + ']', 790, + '`', 906, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(470); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 48: - ACCEPT_TOKEN(anon_sym_elif); + case 471: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 505, + '>', 506, + '\\', 361, + '`', 905, + 'e', 921, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(471); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 49: - ACCEPT_TOKEN(anon_sym_else); + case 472: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 826, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 505, + '>', 506, + '\\', 367, + '`', 905, + '}', 868, + '[', 837, + ']', 837, + '{', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(472); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 50: - if (lookahead == 'r') ADVANCE(60); + case 473: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 833, + '&', 498, + '(', 772, + ')', 509, + '+', 512, + '-', 513, + '0', 855, + '<', 731, + '=', 682, + '>', 737, + ); + if (lookahead == '\\') SKIP(389); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(473); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(856); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(681); END_STATE(); - case 51: - if (lookahead == 't') ADVANCE(61); + case 474: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 830, + '\'', 500, + '(', 772, + ')', 774, + '<', 504, + '>', 506, + '\\', 394, + '`', 905, + '|', 713, + '}', 868, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(474); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '[' || ']' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 52: - if (lookahead == 'l') ADVANCE(62); + case 475: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 507, + '%', 765, + '*', 756, + '+', 748, + '-', 751, + '/', 760, + ':', 806, + ); + if (lookahead == '\\') SKIP(402); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '}') ADVANCE(868); + if (('[' <= lookahead && lookahead <= ']') || + lookahead == '{') ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(475); END_STATE(); - case 53: - if (lookahead == 'o') ADVANCE(63); + case 476: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '[', 789, + '\\', 275, + '`', 905, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(476); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 54: - if (lookahead == 'c') ADVANCE(64); + case 477: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '\\', 304, + '`', 905, + '|', 713, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(477); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 55: - ACCEPT_TOKEN(anon_sym_then); + case 478: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + '<', 727, + '>', 736, + '\\', 364, + '`', 906, + '|', 713, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(478); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 56: - if (lookahead == 's') ADVANCE(65); + case 479: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 298, + ']', 790, + '`', 905, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(479); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 57: - if (lookahead == 't') ADVANCE(66); + case 480: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 299, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(480); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 58: - if (lookahead == 'e') ADVANCE(67); + case 481: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 346, + ']', 790, + '`', 906, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(481); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 59: - if (lookahead == 'r') ADVANCE(68); + case 482: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 828, + '&', 498, + '\'', 500, + '-', 915, + '0', 853, + '<', 729, + '>', 736, + '\\', 350, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(482); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 60: - if (lookahead == 't') ADVANCE(69); + case 483: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 829, + '&', 498, + '\'', 500, + '-', 915, + '0', 658, + '<', 728, + '>', 736, + '\\', 311, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(483); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 61: - if (lookahead == 'i') ADVANCE(70); + case 484: + ADVANCE_MAP( + '"', 839, + '#', 912, + '$', 829, + '&', 498, + '\'', 500, + '-', 915, + '0', 658, + '<', 728, + '>', 736, + '\\', 354, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(484); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 62: - ACCEPT_TOKEN(anon_sym_local); + case 485: + if (lookahead == '"') ADVANCE(839); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '\'') ADVANCE(500); + if (lookahead == ')') ADVANCE(774); + if (lookahead == '\\') SKIP(404); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(892); END_STATE(); - case 63: - if (lookahead == 'n') ADVANCE(71); + case 486: + ADVANCE_MAP( + '"', 839, + '#', 913, + '$', 826, + '\'', 500, + '(', 772, + '-', 915, + '0', 853, + '<', 505, + '>', 506, + '\\', 373, + '`', 905, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(486); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 64: - if (lookahead == 't') ADVANCE(72); + case 487: + ADVANCE_MAP( + '"', 839, + '#', 913, + '$', 826, + '\'', 500, + '-', 915, + '0', 853, + '<', 505, + '>', 506, + '\\', 380, + ']', 790, + '`', 905, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(487); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 65: - if (lookahead == 'e') ADVANCE(73); + case 488: + if (lookahead == '"') ADVANCE(839); + if (lookahead == '#') ADVANCE(847); + if (lookahead == '$') ADVANCE(831); + if (lookahead == '\\') ADVANCE(244); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '\n' || + lookahead == '\r') SKIP(488); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(846); + if (lookahead != 0) ADVANCE(848); END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(74); + case 489: + ADVANCE_MAP( + '#', 863, + '%', 767, + '*', 873, + '+', 883, + ',', 680, + '-', 880, + '/', 762, + ':', 808, + '=', 876, + '?', 886, + '@', 871, + '[', 788, + ); + if (lookahead == '\\') SKIP(378); + if (lookahead == '^') ADVANCE(721); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(490); END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_while); + case 490: + if (lookahead == '#') ADVANCE(863); + if (lookahead == '%') ADVANCE(767); + if (lookahead == ',') ADVANCE(680); + if (lookahead == '/') ADVANCE(762); + if (lookahead == ':') ADVANCE(806); + if (lookahead == '[') ADVANCE(788); + if (lookahead == '\\') SKIP(378); + if (lookahead == '^') ADVANCE(721); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(490); END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(75); + case 491: + if (lookahead == '#') ADVANCE(912); + if (lookahead == '$') ADVANCE(534); + if (lookahead == '&') ADVANCE(498); + if (lookahead == '-') ADVANCE(521); + if (lookahead == '0') ADVANCE(660); + if (lookahead == '<') ADVANCE(732); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(392); + if (lookahead == ']') ADVANCE(790); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(716); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(491); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(672); END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_export); + case 492: + ADVANCE_MAP( + '#', 912, + '$', 538, + '&', 498, + '<', 731, + '>', 737, + '\\', 391, + '`', 529, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(492); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 70: - if (lookahead == 'o') ADVANCE(76); + case 493: + ADVANCE_MAP( + '#', 912, + '$', 539, + '&', 498, + '<', 731, + '>', 737, + '\\', 396, + ']', 790, + '`', 529, + '|', 716, + '[', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(493); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + lookahead != ';' && + lookahead != '<') ADVANCE(923); END_STATE(); - case 71: - if (lookahead == 'l') ADVANCE(77); + case 494: + ADVANCE_MAP( + '#', 912, + '%', 765, + '&', 498, + '*', 756, + '+', 748, + '-', 751, + '/', 760, + '<', 732, + '>', 737, + ); + if (lookahead == '\\') SKIP(395); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(494); END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_select); + case 495: + ADVANCE_MAP( + '#', 912, + '&', 526, + '(', 773, + ';', 583, + '<', 730, + '>', 737, + '[', 789, + '\\', 401, + '{', 781, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(495); + if (lookahead != 0 && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '&' || ')' < lookahead) && + (lookahead < '[' || ']' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(923); END_STATE(); - case 73: - if (lookahead == 't') ADVANCE(78); + case 496: + if (lookahead == '#') ADVANCE(912); + if (lookahead == ')') ADVANCE(774); + if (lookahead == '.') ADVANCE(520); + if (lookahead == '\\') SKIP(405); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '|') ADVANCE(713); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(496); END_STATE(); - case 74: - if (lookahead == 'n') ADVANCE(79); + case 497: + if (lookahead == '#') ADVANCE(912); + if (lookahead == '+') ADVANCE(525); + if (lookahead == '/') ADVANCE(760); + if (lookahead == '=') ADVANCE(682); + if (lookahead == '[') ADVANCE(788); + if (lookahead == '\\') SKIP(406); + if (lookahead == '`') ADVANCE(529); + if (lookahead == '}') ADVANCE(868); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(497); END_STATE(); - case 75: - ACCEPT_TOKEN(anon_sym_declare); + case 498: + if (lookahead == '&') ADVANCE(711); + if (lookahead == '>') ADVANCE(795); END_STATE(); - case 76: - if (lookahead == 'n') ADVANCE(80); + case 499: + if (lookahead == '&') ADVANCE(779); + if (lookahead == ';') ADVANCE(587); END_STATE(); - case 77: - if (lookahead == 'y') ADVANCE(81); + case 500: + if (lookahead == '\'') ADVANCE(850); + if (lookahead != 0) ADVANCE(500); END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_typeset); + case 501: + if (lookahead == '\'') ADVANCE(851); + if (lookahead == '\\') ADVANCE(502); + if (lookahead != 0) ADVANCE(501); END_STATE(); - case 79: - if (lookahead == 'v') ADVANCE(82); + case 502: + if (lookahead == '\'') ADVANCE(852); + if (lookahead == '\\') ADVANCE(502); + if (lookahead != 0) ADVANCE(501); END_STATE(); - case 80: - ACCEPT_TOKEN(anon_sym_function); + case 503: + if (lookahead == '(') ADVANCE(676); END_STATE(); - case 81: - ACCEPT_TOKEN(anon_sym_readonly); + case 504: + if (lookahead == '(') ADVANCE(908); END_STATE(); - case 82: - ACCEPT_TOKEN(anon_sym_unsetenv); + case 505: + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 236, .external_lex_state = 2}, - [2] = {.lex_state = 236, .external_lex_state = 2}, - [3] = {.lex_state = 236, .external_lex_state = 2}, - [4] = {.lex_state = 236, .external_lex_state = 2}, - [5] = {.lex_state = 236, .external_lex_state = 2}, - [6] = {.lex_state = 236, .external_lex_state = 2}, - [7] = {.lex_state = 236, .external_lex_state = 2}, - [8] = {.lex_state = 168, .external_lex_state = 2}, - [9] = {.lex_state = 168, .external_lex_state = 2}, - [10] = {.lex_state = 168, .external_lex_state = 2}, - [11] = {.lex_state = 168, .external_lex_state = 2}, - [12] = {.lex_state = 236, .external_lex_state = 2}, - [13] = {.lex_state = 236, .external_lex_state = 2}, - [14] = {.lex_state = 236, .external_lex_state = 2}, - [15] = {.lex_state = 236, .external_lex_state = 2}, - [16] = {.lex_state = 236, .external_lex_state = 2}, - [17] = {.lex_state = 236, .external_lex_state = 2}, - [18] = {.lex_state = 236, .external_lex_state = 2}, - [19] = {.lex_state = 236, .external_lex_state = 2}, - [20] = {.lex_state = 236, .external_lex_state = 2}, - [21] = {.lex_state = 236, .external_lex_state = 2}, - [22] = {.lex_state = 236, .external_lex_state = 2}, - [23] = {.lex_state = 236, .external_lex_state = 2}, - [24] = {.lex_state = 236, .external_lex_state = 2}, - [25] = {.lex_state = 169, .external_lex_state = 3}, - [26] = {.lex_state = 169, .external_lex_state = 3}, - [27] = {.lex_state = 169, .external_lex_state = 3}, - [28] = {.lex_state = 169, .external_lex_state = 3}, - [29] = {.lex_state = 236, .external_lex_state = 2}, - [30] = {.lex_state = 236, .external_lex_state = 2}, - [31] = {.lex_state = 236, .external_lex_state = 2}, - [32] = {.lex_state = 236, .external_lex_state = 2}, - [33] = {.lex_state = 236, .external_lex_state = 2}, - [34] = {.lex_state = 169, .external_lex_state = 3}, - [35] = {.lex_state = 169, .external_lex_state = 3}, - [36] = {.lex_state = 236, .external_lex_state = 2}, - [37] = {.lex_state = 169, .external_lex_state = 3}, - [38] = {.lex_state = 236, .external_lex_state = 2}, - [39] = {.lex_state = 236, .external_lex_state = 2}, - [40] = {.lex_state = 236, .external_lex_state = 2}, - [41] = {.lex_state = 236, .external_lex_state = 2}, - [42] = {.lex_state = 236, .external_lex_state = 2}, - [43] = {.lex_state = 236, .external_lex_state = 2}, - [44] = {.lex_state = 236, .external_lex_state = 2}, - [45] = {.lex_state = 236, .external_lex_state = 2}, - [46] = {.lex_state = 236, .external_lex_state = 2}, - [47] = {.lex_state = 236, .external_lex_state = 2}, - [48] = {.lex_state = 236, .external_lex_state = 2}, - [49] = {.lex_state = 236, .external_lex_state = 2}, - [50] = {.lex_state = 236, .external_lex_state = 2}, - [51] = {.lex_state = 236, .external_lex_state = 2}, - [52] = {.lex_state = 236, .external_lex_state = 2}, - [53] = {.lex_state = 236, .external_lex_state = 2}, - [54] = {.lex_state = 236, .external_lex_state = 2}, - [55] = {.lex_state = 236, .external_lex_state = 2}, - [56] = {.lex_state = 236, .external_lex_state = 2}, - [57] = {.lex_state = 236, .external_lex_state = 2}, - [58] = {.lex_state = 236, .external_lex_state = 2}, - [59] = {.lex_state = 236, .external_lex_state = 2}, - [60] = {.lex_state = 236, .external_lex_state = 2}, - [61] = {.lex_state = 236, .external_lex_state = 2}, - [62] = {.lex_state = 236, .external_lex_state = 2}, - [63] = {.lex_state = 236, .external_lex_state = 2}, - [64] = {.lex_state = 236, .external_lex_state = 2}, - [65] = {.lex_state = 236, .external_lex_state = 2}, - [66] = {.lex_state = 236, .external_lex_state = 2}, - [67] = {.lex_state = 236, .external_lex_state = 2}, - [68] = {.lex_state = 236, .external_lex_state = 2}, - [69] = {.lex_state = 236, .external_lex_state = 2}, - [70] = {.lex_state = 236, .external_lex_state = 2}, - [71] = {.lex_state = 236, .external_lex_state = 2}, - [72] = {.lex_state = 236, .external_lex_state = 2}, - [73] = {.lex_state = 236, .external_lex_state = 2}, - [74] = {.lex_state = 236, .external_lex_state = 2}, - [75] = {.lex_state = 236, .external_lex_state = 2}, - [76] = {.lex_state = 236, .external_lex_state = 2}, - [77] = {.lex_state = 236, .external_lex_state = 2}, - [78] = {.lex_state = 236, .external_lex_state = 2}, - [79] = {.lex_state = 236, .external_lex_state = 2}, - [80] = {.lex_state = 236, .external_lex_state = 2}, - [81] = {.lex_state = 236, .external_lex_state = 2}, - [82] = {.lex_state = 236, .external_lex_state = 2}, - [83] = {.lex_state = 236, .external_lex_state = 2}, - [84] = {.lex_state = 236, .external_lex_state = 2}, - [85] = {.lex_state = 236, .external_lex_state = 2}, - [86] = {.lex_state = 236, .external_lex_state = 2}, - [87] = {.lex_state = 236, .external_lex_state = 2}, - [88] = {.lex_state = 236, .external_lex_state = 2}, - [89] = {.lex_state = 236, .external_lex_state = 2}, - [90] = {.lex_state = 236, .external_lex_state = 2}, - [91] = {.lex_state = 236, .external_lex_state = 2}, - [92] = {.lex_state = 236, .external_lex_state = 2}, - [93] = {.lex_state = 236, .external_lex_state = 2}, - [94] = {.lex_state = 236, .external_lex_state = 2}, - [95] = {.lex_state = 236, .external_lex_state = 2}, - [96] = {.lex_state = 236, .external_lex_state = 2}, - [97] = {.lex_state = 236, .external_lex_state = 2}, - [98] = {.lex_state = 236, .external_lex_state = 2}, - [99] = {.lex_state = 236, .external_lex_state = 2}, - [100] = {.lex_state = 236, .external_lex_state = 2}, - [101] = {.lex_state = 236, .external_lex_state = 2}, - [102] = {.lex_state = 236, .external_lex_state = 2}, - [103] = {.lex_state = 236, .external_lex_state = 2}, - [104] = {.lex_state = 236, .external_lex_state = 2}, - [105] = {.lex_state = 236, .external_lex_state = 2}, - [106] = {.lex_state = 236, .external_lex_state = 2}, - [107] = {.lex_state = 236, .external_lex_state = 2}, - [108] = {.lex_state = 236, .external_lex_state = 2}, - [109] = {.lex_state = 236, .external_lex_state = 2}, - [110] = {.lex_state = 236, .external_lex_state = 2}, - [111] = {.lex_state = 236, .external_lex_state = 2}, - [112] = {.lex_state = 236, .external_lex_state = 2}, - [113] = {.lex_state = 236, .external_lex_state = 2}, - [114] = {.lex_state = 236, .external_lex_state = 2}, - [115] = {.lex_state = 236, .external_lex_state = 2}, - [116] = {.lex_state = 236, .external_lex_state = 2}, - [117] = {.lex_state = 236, .external_lex_state = 2}, - [118] = {.lex_state = 236, .external_lex_state = 2}, - [119] = {.lex_state = 236, .external_lex_state = 2}, - [120] = {.lex_state = 236, .external_lex_state = 2}, - [121] = {.lex_state = 236, .external_lex_state = 2}, - [122] = {.lex_state = 236, .external_lex_state = 2}, - [123] = {.lex_state = 236, .external_lex_state = 2}, - [124] = {.lex_state = 236, .external_lex_state = 2}, - [125] = {.lex_state = 236, .external_lex_state = 2}, - [126] = {.lex_state = 236, .external_lex_state = 2}, - [127] = {.lex_state = 236, .external_lex_state = 2}, - [128] = {.lex_state = 236, .external_lex_state = 2}, - [129] = {.lex_state = 236, .external_lex_state = 2}, - [130] = {.lex_state = 236, .external_lex_state = 2}, - [131] = {.lex_state = 236, .external_lex_state = 2}, - [132] = {.lex_state = 236, .external_lex_state = 2}, - [133] = {.lex_state = 236, .external_lex_state = 2}, - [134] = {.lex_state = 236, .external_lex_state = 2}, - [135] = {.lex_state = 236, .external_lex_state = 2}, - [136] = {.lex_state = 236, .external_lex_state = 2}, - [137] = {.lex_state = 236, .external_lex_state = 2}, - [138] = {.lex_state = 236, .external_lex_state = 2}, - [139] = {.lex_state = 236, .external_lex_state = 2}, - [140] = {.lex_state = 236, .external_lex_state = 2}, - [141] = {.lex_state = 236, .external_lex_state = 2}, - [142] = {.lex_state = 236, .external_lex_state = 2}, - [143] = {.lex_state = 236, .external_lex_state = 2}, - [144] = {.lex_state = 236, .external_lex_state = 2}, - [145] = {.lex_state = 236, .external_lex_state = 2}, - [146] = {.lex_state = 236, .external_lex_state = 2}, - [147] = {.lex_state = 236, .external_lex_state = 2}, - [148] = {.lex_state = 236, .external_lex_state = 2}, - [149] = {.lex_state = 236, .external_lex_state = 2}, - [150] = {.lex_state = 236, .external_lex_state = 2}, - [151] = {.lex_state = 236, .external_lex_state = 2}, - [152] = {.lex_state = 236, .external_lex_state = 2}, - [153] = {.lex_state = 6, .external_lex_state = 4}, - [154] = {.lex_state = 6, .external_lex_state = 4}, - [155] = {.lex_state = 6, .external_lex_state = 4}, - [156] = {.lex_state = 72, .external_lex_state = 4}, - [157] = {.lex_state = 72, .external_lex_state = 4}, - [158] = {.lex_state = 72, .external_lex_state = 4}, - [159] = {.lex_state = 168, .external_lex_state = 5}, - [160] = {.lex_state = 168, .external_lex_state = 5}, - [161] = {.lex_state = 225, .external_lex_state = 4}, - [162] = {.lex_state = 225, .external_lex_state = 4}, - [163] = {.lex_state = 74, .external_lex_state = 4}, - [164] = {.lex_state = 225, .external_lex_state = 4}, - [165] = {.lex_state = 225, .external_lex_state = 4}, - [166] = {.lex_state = 225, .external_lex_state = 4}, - [167] = {.lex_state = 225, .external_lex_state = 4}, - [168] = {.lex_state = 236, .external_lex_state = 5}, - [169] = {.lex_state = 236, .external_lex_state = 5}, - [170] = {.lex_state = 225, .external_lex_state = 4}, - [171] = {.lex_state = 236, .external_lex_state = 5}, - [172] = {.lex_state = 225, .external_lex_state = 4}, - [173] = {.lex_state = 75, .external_lex_state = 4}, - [174] = {.lex_state = 76, .external_lex_state = 4}, - [175] = {.lex_state = 226, .external_lex_state = 4}, - [176] = {.lex_state = 226, .external_lex_state = 4}, - [177] = {.lex_state = 78, .external_lex_state = 6}, - [178] = {.lex_state = 79, .external_lex_state = 4}, - [179] = {.lex_state = 236, .external_lex_state = 5}, - [180] = {.lex_state = 168, .external_lex_state = 2}, - [181] = {.lex_state = 236, .external_lex_state = 5}, - [182] = {.lex_state = 236, .external_lex_state = 2}, - [183] = {.lex_state = 227, .external_lex_state = 4}, - [184] = {.lex_state = 236, .external_lex_state = 5}, - [185] = {.lex_state = 168, .external_lex_state = 2}, - [186] = {.lex_state = 236, .external_lex_state = 2}, - [187] = {.lex_state = 227, .external_lex_state = 4}, - [188] = {.lex_state = 236, .external_lex_state = 5}, - [189] = {.lex_state = 236, .external_lex_state = 2}, - [190] = {.lex_state = 236, .external_lex_state = 2}, - [191] = {.lex_state = 236, .external_lex_state = 2}, - [192] = {.lex_state = 236, .external_lex_state = 2}, - [193] = {.lex_state = 81, .external_lex_state = 6}, - [194] = {.lex_state = 81, .external_lex_state = 6}, - [195] = {.lex_state = 82, .external_lex_state = 6}, - [196] = {.lex_state = 83, .external_lex_state = 6}, - [197] = {.lex_state = 84, .external_lex_state = 6}, - [198] = {.lex_state = 168, .external_lex_state = 2}, - [199] = {.lex_state = 83, .external_lex_state = 6}, - [200] = {.lex_state = 81, .external_lex_state = 6}, - [201] = {.lex_state = 168, .external_lex_state = 2}, - [202] = {.lex_state = 81, .external_lex_state = 6}, - [203] = {.lex_state = 83, .external_lex_state = 6}, - [204] = {.lex_state = 81, .external_lex_state = 6}, - [205] = {.lex_state = 169, .external_lex_state = 7}, - [206] = {.lex_state = 228, .external_lex_state = 6}, - [207] = {.lex_state = 236, .external_lex_state = 5}, - [208] = {.lex_state = 86, .external_lex_state = 6}, - [209] = {.lex_state = 87, .external_lex_state = 6}, - [210] = {.lex_state = 86, .external_lex_state = 6}, - [211] = {.lex_state = 88, .external_lex_state = 6}, - [212] = {.lex_state = 86, .external_lex_state = 6}, - [213] = {.lex_state = 87, .external_lex_state = 6}, - [214] = {.lex_state = 87, .external_lex_state = 6}, - [215] = {.lex_state = 87, .external_lex_state = 6}, - [216] = {.lex_state = 228, .external_lex_state = 6}, - [217] = {.lex_state = 87, .external_lex_state = 6}, - [218] = {.lex_state = 236, .external_lex_state = 5}, - [219] = {.lex_state = 186, .external_lex_state = 2}, - [220] = {.lex_state = 229, .external_lex_state = 6}, - [221] = {.lex_state = 230, .external_lex_state = 6}, - [222] = {.lex_state = 230, .external_lex_state = 6}, - [223] = {.lex_state = 229, .external_lex_state = 6}, - [224] = {.lex_state = 186, .external_lex_state = 2}, - [225] = {.lex_state = 230, .external_lex_state = 6}, - [226] = {.lex_state = 231, .external_lex_state = 6}, - [227] = {.lex_state = 230, .external_lex_state = 6}, - [228] = {.lex_state = 186, .external_lex_state = 2}, - [229] = {.lex_state = 231, .external_lex_state = 6}, - [230] = {.lex_state = 186, .external_lex_state = 2}, - [231] = {.lex_state = 230, .external_lex_state = 6}, - [232] = {.lex_state = 231, .external_lex_state = 6}, - [233] = {.lex_state = 230, .external_lex_state = 6}, - [234] = {.lex_state = 231, .external_lex_state = 6}, - [235] = {.lex_state = 230, .external_lex_state = 6}, - [236] = {.lex_state = 230, .external_lex_state = 6}, - [237] = {.lex_state = 231, .external_lex_state = 6}, - [238] = {.lex_state = 230, .external_lex_state = 6}, - [239] = {.lex_state = 230, .external_lex_state = 6}, - [240] = {.lex_state = 186, .external_lex_state = 2}, - [241] = {.lex_state = 231, .external_lex_state = 6}, - [242] = {.lex_state = 236, .external_lex_state = 2}, - [243] = {.lex_state = 231, .external_lex_state = 6}, - [244] = {.lex_state = 169, .external_lex_state = 3}, - [245] = {.lex_state = 236, .external_lex_state = 2}, - [246] = {.lex_state = 236, .external_lex_state = 2}, - [247] = {.lex_state = 231, .external_lex_state = 6}, - [248] = {.lex_state = 230, .external_lex_state = 6}, - [249] = {.lex_state = 236, .external_lex_state = 2}, - [250] = {.lex_state = 169, .external_lex_state = 3}, - [251] = {.lex_state = 230, .external_lex_state = 6}, - [252] = {.lex_state = 230, .external_lex_state = 6}, - [253] = {.lex_state = 230, .external_lex_state = 6}, - [254] = {.lex_state = 236, .external_lex_state = 2}, - [255] = {.lex_state = 236, .external_lex_state = 2}, - [256] = {.lex_state = 236, .external_lex_state = 2}, - [257] = {.lex_state = 236, .external_lex_state = 2}, - [258] = {.lex_state = 6, .external_lex_state = 8}, - [259] = {.lex_state = 6, .external_lex_state = 8}, - [260] = {.lex_state = 92, .external_lex_state = 4}, - [261] = {.lex_state = 92, .external_lex_state = 4}, - [262] = {.lex_state = 6, .external_lex_state = 8}, - [263] = {.lex_state = 6, .external_lex_state = 8}, - [264] = {.lex_state = 92, .external_lex_state = 4}, - [265] = {.lex_state = 92, .external_lex_state = 4}, - [266] = {.lex_state = 6, .external_lex_state = 8}, - [267] = {.lex_state = 6, .external_lex_state = 8}, - [268] = {.lex_state = 72, .external_lex_state = 8}, - [269] = {.lex_state = 6, .external_lex_state = 8}, - [270] = {.lex_state = 6, .external_lex_state = 8}, - [271] = {.lex_state = 6, .external_lex_state = 8}, - [272] = {.lex_state = 6, .external_lex_state = 8}, - [273] = {.lex_state = 6, .external_lex_state = 8}, - [274] = {.lex_state = 6, .external_lex_state = 8}, - [275] = {.lex_state = 6, .external_lex_state = 8}, - [276] = {.lex_state = 6, .external_lex_state = 8}, - [277] = {.lex_state = 6, .external_lex_state = 8}, - [278] = {.lex_state = 6, .external_lex_state = 8}, - [279] = {.lex_state = 6, .external_lex_state = 8}, - [280] = {.lex_state = 6, .external_lex_state = 4}, - [281] = {.lex_state = 6, .external_lex_state = 8}, - [282] = {.lex_state = 6, .external_lex_state = 8}, - [283] = {.lex_state = 6, .external_lex_state = 8}, - [284] = {.lex_state = 6, .external_lex_state = 8}, - [285] = {.lex_state = 6, .external_lex_state = 8}, - [286] = {.lex_state = 6, .external_lex_state = 8}, - [287] = {.lex_state = 6, .external_lex_state = 8}, - [288] = {.lex_state = 6, .external_lex_state = 4}, - [289] = {.lex_state = 6, .external_lex_state = 8}, - [290] = {.lex_state = 6, .external_lex_state = 8}, - [291] = {.lex_state = 6, .external_lex_state = 8}, - [292] = {.lex_state = 6, .external_lex_state = 8}, - [293] = {.lex_state = 6, .external_lex_state = 8}, - [294] = {.lex_state = 6, .external_lex_state = 8}, - [295] = {.lex_state = 6, .external_lex_state = 8}, - [296] = {.lex_state = 6, .external_lex_state = 8}, - [297] = {.lex_state = 6, .external_lex_state = 8}, - [298] = {.lex_state = 6, .external_lex_state = 8}, - [299] = {.lex_state = 6, .external_lex_state = 8}, - [300] = {.lex_state = 6, .external_lex_state = 8}, - [301] = {.lex_state = 6, .external_lex_state = 8}, - [302] = {.lex_state = 6, .external_lex_state = 8}, - [303] = {.lex_state = 72, .external_lex_state = 8}, - [304] = {.lex_state = 72, .external_lex_state = 8}, - [305] = {.lex_state = 93, .external_lex_state = 4}, - [306] = {.lex_state = 72, .external_lex_state = 8}, - [307] = {.lex_state = 6, .external_lex_state = 4}, - [308] = {.lex_state = 6, .external_lex_state = 4}, - [309] = {.lex_state = 72, .external_lex_state = 8}, - [310] = {.lex_state = 72, .external_lex_state = 8}, - [311] = {.lex_state = 93, .external_lex_state = 4}, - [312] = {.lex_state = 93, .external_lex_state = 4}, - [313] = {.lex_state = 93, .external_lex_state = 4}, - [314] = {.lex_state = 6, .external_lex_state = 8}, - [315] = {.lex_state = 232, .external_lex_state = 4}, - [316] = {.lex_state = 72, .external_lex_state = 8}, - [317] = {.lex_state = 92, .external_lex_state = 8}, - [318] = {.lex_state = 72, .external_lex_state = 8}, - [319] = {.lex_state = 92, .external_lex_state = 8}, - [320] = {.lex_state = 72, .external_lex_state = 8}, - [321] = {.lex_state = 72, .external_lex_state = 8}, - [322] = {.lex_state = 72, .external_lex_state = 8}, - [323] = {.lex_state = 72, .external_lex_state = 8}, - [324] = {.lex_state = 72, .external_lex_state = 4}, - [325] = {.lex_state = 72, .external_lex_state = 8}, - [326] = {.lex_state = 72, .external_lex_state = 8}, - [327] = {.lex_state = 72, .external_lex_state = 8}, - [328] = {.lex_state = 72, .external_lex_state = 8}, - [329] = {.lex_state = 225, .external_lex_state = 8}, - [330] = {.lex_state = 72, .external_lex_state = 8}, - [331] = {.lex_state = 72, .external_lex_state = 8}, - [332] = {.lex_state = 72, .external_lex_state = 8}, - [333] = {.lex_state = 72, .external_lex_state = 8}, - [334] = {.lex_state = 72, .external_lex_state = 8}, - [335] = {.lex_state = 72, .external_lex_state = 8}, - [336] = {.lex_state = 72, .external_lex_state = 8}, - [337] = {.lex_state = 72, .external_lex_state = 8}, - [338] = {.lex_state = 72, .external_lex_state = 8}, - [339] = {.lex_state = 72, .external_lex_state = 8}, - [340] = {.lex_state = 72, .external_lex_state = 8}, - [341] = {.lex_state = 72, .external_lex_state = 8}, - [342] = {.lex_state = 72, .external_lex_state = 8}, - [343] = {.lex_state = 72, .external_lex_state = 8}, - [344] = {.lex_state = 72, .external_lex_state = 8}, - [345] = {.lex_state = 72, .external_lex_state = 8}, - [346] = {.lex_state = 72, .external_lex_state = 8}, - [347] = {.lex_state = 72, .external_lex_state = 8}, - [348] = {.lex_state = 6, .external_lex_state = 4}, - [349] = {.lex_state = 92, .external_lex_state = 8}, - [350] = {.lex_state = 225, .external_lex_state = 8}, - [351] = {.lex_state = 225, .external_lex_state = 8}, - [352] = {.lex_state = 72, .external_lex_state = 8}, - [353] = {.lex_state = 232, .external_lex_state = 4}, - [354] = {.lex_state = 6, .external_lex_state = 4}, - [355] = {.lex_state = 6, .external_lex_state = 4}, - [356] = {.lex_state = 232, .external_lex_state = 4}, - [357] = {.lex_state = 232, .external_lex_state = 4}, - [358] = {.lex_state = 225, .external_lex_state = 8}, - [359] = {.lex_state = 72, .external_lex_state = 4}, - [360] = {.lex_state = 72, .external_lex_state = 8}, - [361] = {.lex_state = 72, .external_lex_state = 8}, - [362] = {.lex_state = 72, .external_lex_state = 4}, - [363] = {.lex_state = 225, .external_lex_state = 8}, - [364] = {.lex_state = 72, .external_lex_state = 4}, - [365] = {.lex_state = 225, .external_lex_state = 8}, - [366] = {.lex_state = 225, .external_lex_state = 8}, - [367] = {.lex_state = 72, .external_lex_state = 8}, - [368] = {.lex_state = 225, .external_lex_state = 8}, - [369] = {.lex_state = 225, .external_lex_state = 8}, - [370] = {.lex_state = 72, .external_lex_state = 8}, - [371] = {.lex_state = 225, .external_lex_state = 8}, - [372] = {.lex_state = 225, .external_lex_state = 8}, - [373] = {.lex_state = 92, .external_lex_state = 8}, - [374] = {.lex_state = 232, .external_lex_state = 4}, - [375] = {.lex_state = 232, .external_lex_state = 4}, - [376] = {.lex_state = 92, .external_lex_state = 8}, - [377] = {.lex_state = 232, .external_lex_state = 4}, - [378] = {.lex_state = 232, .external_lex_state = 4}, - [379] = {.lex_state = 225, .external_lex_state = 8}, - [380] = {.lex_state = 81, .external_lex_state = 9}, - [381] = {.lex_state = 6, .external_lex_state = 4}, - [382] = {.lex_state = 6, .external_lex_state = 4}, - [383] = {.lex_state = 225, .external_lex_state = 8}, - [384] = {.lex_state = 225, .external_lex_state = 4}, - [385] = {.lex_state = 83, .external_lex_state = 9}, - [386] = {.lex_state = 225, .external_lex_state = 8}, - [387] = {.lex_state = 92, .external_lex_state = 8}, - [388] = {.lex_state = 92, .external_lex_state = 8}, - [389] = {.lex_state = 92, .external_lex_state = 8}, - [390] = {.lex_state = 92, .external_lex_state = 8}, - [391] = {.lex_state = 92, .external_lex_state = 8}, - [392] = {.lex_state = 92, .external_lex_state = 4}, - [393] = {.lex_state = 92, .external_lex_state = 8}, - [394] = {.lex_state = 92, .external_lex_state = 8}, - [395] = {.lex_state = 92, .external_lex_state = 8}, - [396] = {.lex_state = 92, .external_lex_state = 8}, - [397] = {.lex_state = 225, .external_lex_state = 8}, - [398] = {.lex_state = 92, .external_lex_state = 8}, - [399] = {.lex_state = 92, .external_lex_state = 8}, - [400] = {.lex_state = 92, .external_lex_state = 8}, - [401] = {.lex_state = 92, .external_lex_state = 8}, - [402] = {.lex_state = 92, .external_lex_state = 8}, - [403] = {.lex_state = 92, .external_lex_state = 8}, - [404] = {.lex_state = 93, .external_lex_state = 8}, - [405] = {.lex_state = 225, .external_lex_state = 8}, - [406] = {.lex_state = 92, .external_lex_state = 8}, - [407] = {.lex_state = 92, .external_lex_state = 8}, - [408] = {.lex_state = 225, .external_lex_state = 4}, - [409] = {.lex_state = 232, .external_lex_state = 4}, - [410] = {.lex_state = 92, .external_lex_state = 8}, - [411] = {.lex_state = 225, .external_lex_state = 8}, - [412] = {.lex_state = 92, .external_lex_state = 8}, - [413] = {.lex_state = 92, .external_lex_state = 8}, - [414] = {.lex_state = 225, .external_lex_state = 4}, - [415] = {.lex_state = 92, .external_lex_state = 8}, - [416] = {.lex_state = 225, .external_lex_state = 8}, - [417] = {.lex_state = 92, .external_lex_state = 8}, - [418] = {.lex_state = 93, .external_lex_state = 8}, - [419] = {.lex_state = 93, .external_lex_state = 8}, - [420] = {.lex_state = 92, .external_lex_state = 8}, - [421] = {.lex_state = 92, .external_lex_state = 8}, - [422] = {.lex_state = 72, .external_lex_state = 4}, - [423] = {.lex_state = 92, .external_lex_state = 8}, - [424] = {.lex_state = 92, .external_lex_state = 8}, - [425] = {.lex_state = 72, .external_lex_state = 4}, - [426] = {.lex_state = 92, .external_lex_state = 8}, - [427] = {.lex_state = 92, .external_lex_state = 8}, - [428] = {.lex_state = 81, .external_lex_state = 9}, - [429] = {.lex_state = 72, .external_lex_state = 4}, - [430] = {.lex_state = 92, .external_lex_state = 8}, - [431] = {.lex_state = 225, .external_lex_state = 4}, - [432] = {.lex_state = 83, .external_lex_state = 9}, - [433] = {.lex_state = 232, .external_lex_state = 4}, - [434] = {.lex_state = 72, .external_lex_state = 4}, - [435] = {.lex_state = 225, .external_lex_state = 4}, - [436] = {.lex_state = 232, .external_lex_state = 4}, - [437] = {.lex_state = 225, .external_lex_state = 8}, - [438] = {.lex_state = 83, .external_lex_state = 9}, - [439] = {.lex_state = 225, .external_lex_state = 8}, - [440] = {.lex_state = 225, .external_lex_state = 8}, - [441] = {.lex_state = 225, .external_lex_state = 4}, - [442] = {.lex_state = 81, .external_lex_state = 9}, - [443] = {.lex_state = 225, .external_lex_state = 8}, - [444] = {.lex_state = 81, .external_lex_state = 9}, - [445] = {.lex_state = 225, .external_lex_state = 8}, - [446] = {.lex_state = 225, .external_lex_state = 8}, - [447] = {.lex_state = 225, .external_lex_state = 8}, - [448] = {.lex_state = 225, .external_lex_state = 8}, - [449] = {.lex_state = 225, .external_lex_state = 8}, - [450] = {.lex_state = 225, .external_lex_state = 8}, - [451] = {.lex_state = 225, .external_lex_state = 8}, - [452] = {.lex_state = 92, .external_lex_state = 8}, - [453] = {.lex_state = 225, .external_lex_state = 8}, - [454] = {.lex_state = 225, .external_lex_state = 8}, - [455] = {.lex_state = 225, .external_lex_state = 4}, - [456] = {.lex_state = 225, .external_lex_state = 8}, - [457] = {.lex_state = 225, .external_lex_state = 8}, - [458] = {.lex_state = 92, .external_lex_state = 8}, - [459] = {.lex_state = 225, .external_lex_state = 8}, - [460] = {.lex_state = 225, .external_lex_state = 8}, - [461] = {.lex_state = 225, .external_lex_state = 8}, - [462] = {.lex_state = 225, .external_lex_state = 8}, - [463] = {.lex_state = 225, .external_lex_state = 8}, - [464] = {.lex_state = 93, .external_lex_state = 8}, - [465] = {.lex_state = 225, .external_lex_state = 8}, - [466] = {.lex_state = 92, .external_lex_state = 4}, - [467] = {.lex_state = 92, .external_lex_state = 8}, - [468] = {.lex_state = 92, .external_lex_state = 4}, - [469] = {.lex_state = 225, .external_lex_state = 8}, - [470] = {.lex_state = 225, .external_lex_state = 8}, - [471] = {.lex_state = 93, .external_lex_state = 8}, - [472] = {.lex_state = 225, .external_lex_state = 8}, - [473] = {.lex_state = 225, .external_lex_state = 8}, - [474] = {.lex_state = 92, .external_lex_state = 8}, - [475] = {.lex_state = 225, .external_lex_state = 8}, - [476] = {.lex_state = 225, .external_lex_state = 8}, - [477] = {.lex_state = 225, .external_lex_state = 8}, - [478] = {.lex_state = 225, .external_lex_state = 8}, - [479] = {.lex_state = 225, .external_lex_state = 8}, - [480] = {.lex_state = 225, .external_lex_state = 8}, - [481] = {.lex_state = 81, .external_lex_state = 9}, - [482] = {.lex_state = 225, .external_lex_state = 4}, - [483] = {.lex_state = 225, .external_lex_state = 8}, - [484] = {.lex_state = 232, .external_lex_state = 4}, - [485] = {.lex_state = 225, .external_lex_state = 8}, - [486] = {.lex_state = 225, .external_lex_state = 8}, - [487] = {.lex_state = 225, .external_lex_state = 8}, - [488] = {.lex_state = 225, .external_lex_state = 8}, - [489] = {.lex_state = 225, .external_lex_state = 8}, - [490] = {.lex_state = 83, .external_lex_state = 9}, - [491] = {.lex_state = 225, .external_lex_state = 8}, - [492] = {.lex_state = 225, .external_lex_state = 8}, - [493] = {.lex_state = 225, .external_lex_state = 8}, - [494] = {.lex_state = 225, .external_lex_state = 8}, - [495] = {.lex_state = 225, .external_lex_state = 8}, - [496] = {.lex_state = 81, .external_lex_state = 9}, - [497] = {.lex_state = 225, .external_lex_state = 8}, - [498] = {.lex_state = 232, .external_lex_state = 4}, - [499] = {.lex_state = 225, .external_lex_state = 8}, - [500] = {.lex_state = 225, .external_lex_state = 8}, - [501] = {.lex_state = 225, .external_lex_state = 8}, - [502] = {.lex_state = 232, .external_lex_state = 4}, - [503] = {.lex_state = 232, .external_lex_state = 4}, - [504] = {.lex_state = 81, .external_lex_state = 9}, - [505] = {.lex_state = 225, .external_lex_state = 8}, - [506] = {.lex_state = 225, .external_lex_state = 8}, - [507] = {.lex_state = 225, .external_lex_state = 8}, - [508] = {.lex_state = 225, .external_lex_state = 8}, - [509] = {.lex_state = 225, .external_lex_state = 8}, - [510] = {.lex_state = 225, .external_lex_state = 8}, - [511] = {.lex_state = 225, .external_lex_state = 8}, - [512] = {.lex_state = 225, .external_lex_state = 8}, - [513] = {.lex_state = 225, .external_lex_state = 8}, - [514] = {.lex_state = 87, .external_lex_state = 9}, - [515] = {.lex_state = 225, .external_lex_state = 8}, - [516] = {.lex_state = 225, .external_lex_state = 8}, - [517] = {.lex_state = 225, .external_lex_state = 8}, - [518] = {.lex_state = 72, .external_lex_state = 4}, - [519] = {.lex_state = 225, .external_lex_state = 8}, - [520] = {.lex_state = 225, .external_lex_state = 8}, - [521] = {.lex_state = 230, .external_lex_state = 9}, - [522] = {.lex_state = 93, .external_lex_state = 4}, - [523] = {.lex_state = 93, .external_lex_state = 4}, - [524] = {.lex_state = 232, .external_lex_state = 8}, - [525] = {.lex_state = 232, .external_lex_state = 8}, - [526] = {.lex_state = 232, .external_lex_state = 8}, - [527] = {.lex_state = 225, .external_lex_state = 4}, - [528] = {.lex_state = 81, .external_lex_state = 6}, - [529] = {.lex_state = 187, .external_lex_state = 2}, - [530] = {.lex_state = 232, .external_lex_state = 8}, - [531] = {.lex_state = 232, .external_lex_state = 8}, - [532] = {.lex_state = 83, .external_lex_state = 6}, - [533] = {.lex_state = 232, .external_lex_state = 8}, - [534] = {.lex_state = 81, .external_lex_state = 9}, - [535] = {.lex_state = 81, .external_lex_state = 9}, - [536] = {.lex_state = 81, .external_lex_state = 9}, - [537] = {.lex_state = 81, .external_lex_state = 9}, - [538] = {.lex_state = 81, .external_lex_state = 9}, - [539] = {.lex_state = 81, .external_lex_state = 9}, - [540] = {.lex_state = 81, .external_lex_state = 9}, - [541] = {.lex_state = 81, .external_lex_state = 9}, - [542] = {.lex_state = 81, .external_lex_state = 9}, - [543] = {.lex_state = 81, .external_lex_state = 9}, - [544] = {.lex_state = 83, .external_lex_state = 9}, - [545] = {.lex_state = 83, .external_lex_state = 9}, - [546] = {.lex_state = 81, .external_lex_state = 9}, - [547] = {.lex_state = 81, .external_lex_state = 6}, - [548] = {.lex_state = 83, .external_lex_state = 9}, - [549] = {.lex_state = 83, .external_lex_state = 9}, - [550] = {.lex_state = 81, .external_lex_state = 9}, - [551] = {.lex_state = 81, .external_lex_state = 9}, - [552] = {.lex_state = 81, .external_lex_state = 9}, - [553] = {.lex_state = 81, .external_lex_state = 9}, - [554] = {.lex_state = 83, .external_lex_state = 9}, - [555] = {.lex_state = 83, .external_lex_state = 9}, - [556] = {.lex_state = 83, .external_lex_state = 9}, - [557] = {.lex_state = 81, .external_lex_state = 9}, - [558] = {.lex_state = 81, .external_lex_state = 9}, - [559] = {.lex_state = 81, .external_lex_state = 9}, - [560] = {.lex_state = 81, .external_lex_state = 9}, - [561] = {.lex_state = 81, .external_lex_state = 9}, - [562] = {.lex_state = 81, .external_lex_state = 9}, - [563] = {.lex_state = 81, .external_lex_state = 9}, - [564] = {.lex_state = 81, .external_lex_state = 9}, - [565] = {.lex_state = 81, .external_lex_state = 9}, - [566] = {.lex_state = 81, .external_lex_state = 9}, - [567] = {.lex_state = 81, .external_lex_state = 9}, - [568] = {.lex_state = 81, .external_lex_state = 9}, - [569] = {.lex_state = 81, .external_lex_state = 9}, - [570] = {.lex_state = 81, .external_lex_state = 9}, - [571] = {.lex_state = 81, .external_lex_state = 9}, - [572] = {.lex_state = 81, .external_lex_state = 9}, - [573] = {.lex_state = 81, .external_lex_state = 9}, - [574] = {.lex_state = 81, .external_lex_state = 9}, - [575] = {.lex_state = 81, .external_lex_state = 6}, - [576] = {.lex_state = 81, .external_lex_state = 6}, - [577] = {.lex_state = 83, .external_lex_state = 9}, - [578] = {.lex_state = 83, .external_lex_state = 9}, - [579] = {.lex_state = 83, .external_lex_state = 9}, - [580] = {.lex_state = 83, .external_lex_state = 9}, - [581] = {.lex_state = 83, .external_lex_state = 6}, - [582] = {.lex_state = 83, .external_lex_state = 9}, - [583] = {.lex_state = 83, .external_lex_state = 9}, - [584] = {.lex_state = 83, .external_lex_state = 9}, - [585] = {.lex_state = 83, .external_lex_state = 9}, - [586] = {.lex_state = 83, .external_lex_state = 9}, - [587] = {.lex_state = 83, .external_lex_state = 9}, - [588] = {.lex_state = 83, .external_lex_state = 9}, - [589] = {.lex_state = 83, .external_lex_state = 9}, - [590] = {.lex_state = 83, .external_lex_state = 9}, - [591] = {.lex_state = 83, .external_lex_state = 9}, - [592] = {.lex_state = 83, .external_lex_state = 9}, - [593] = {.lex_state = 83, .external_lex_state = 9}, - [594] = {.lex_state = 83, .external_lex_state = 9}, - [595] = {.lex_state = 83, .external_lex_state = 9}, - [596] = {.lex_state = 83, .external_lex_state = 9}, - [597] = {.lex_state = 83, .external_lex_state = 9}, - [598] = {.lex_state = 83, .external_lex_state = 9}, - [599] = {.lex_state = 83, .external_lex_state = 9}, - [600] = {.lex_state = 83, .external_lex_state = 9}, - [601] = {.lex_state = 232, .external_lex_state = 8}, - [602] = {.lex_state = 83, .external_lex_state = 9}, - [603] = {.lex_state = 83, .external_lex_state = 9}, - [604] = {.lex_state = 87, .external_lex_state = 9}, - [605] = {.lex_state = 87, .external_lex_state = 9}, - [606] = {.lex_state = 87, .external_lex_state = 9}, - [607] = {.lex_state = 187, .external_lex_state = 2}, - [608] = {.lex_state = 87, .external_lex_state = 9}, - [609] = {.lex_state = 86, .external_lex_state = 9}, - [610] = {.lex_state = 86, .external_lex_state = 9}, - [611] = {.lex_state = 93, .external_lex_state = 8}, - [612] = {.lex_state = 86, .external_lex_state = 9}, - [613] = {.lex_state = 93, .external_lex_state = 8}, - [614] = {.lex_state = 93, .external_lex_state = 8}, - [615] = {.lex_state = 93, .external_lex_state = 8}, - [616] = {.lex_state = 225, .external_lex_state = 4}, - [617] = {.lex_state = 93, .external_lex_state = 8}, - [618] = {.lex_state = 93, .external_lex_state = 8}, - [619] = {.lex_state = 93, .external_lex_state = 8}, - [620] = {.lex_state = 87, .external_lex_state = 9}, - [621] = {.lex_state = 225, .external_lex_state = 4}, - [622] = {.lex_state = 86, .external_lex_state = 9}, - [623] = {.lex_state = 225, .external_lex_state = 4}, - [624] = {.lex_state = 93, .external_lex_state = 8}, - [625] = {.lex_state = 93, .external_lex_state = 8}, - [626] = {.lex_state = 93, .external_lex_state = 8}, - [627] = {.lex_state = 93, .external_lex_state = 8}, - [628] = {.lex_state = 93, .external_lex_state = 4}, - [629] = {.lex_state = 93, .external_lex_state = 8}, - [630] = {.lex_state = 93, .external_lex_state = 8}, - [631] = {.lex_state = 93, .external_lex_state = 8}, - [632] = {.lex_state = 93, .external_lex_state = 8}, - [633] = {.lex_state = 93, .external_lex_state = 8}, - [634] = {.lex_state = 93, .external_lex_state = 8}, - [635] = {.lex_state = 93, .external_lex_state = 8}, - [636] = {.lex_state = 93, .external_lex_state = 8}, - [637] = {.lex_state = 93, .external_lex_state = 8}, - [638] = {.lex_state = 93, .external_lex_state = 8}, - [639] = {.lex_state = 93, .external_lex_state = 8}, - [640] = {.lex_state = 93, .external_lex_state = 8}, - [641] = {.lex_state = 93, .external_lex_state = 8}, - [642] = {.lex_state = 93, .external_lex_state = 8}, - [643] = {.lex_state = 93, .external_lex_state = 8}, - [644] = {.lex_state = 93, .external_lex_state = 8}, - [645] = {.lex_state = 93, .external_lex_state = 8}, - [646] = {.lex_state = 93, .external_lex_state = 8}, - [647] = {.lex_state = 93, .external_lex_state = 8}, - [648] = {.lex_state = 93, .external_lex_state = 8}, - [649] = {.lex_state = 93, .external_lex_state = 8}, - [650] = {.lex_state = 93, .external_lex_state = 8}, - [651] = {.lex_state = 87, .external_lex_state = 9}, - [652] = {.lex_state = 225, .external_lex_state = 4}, - [653] = {.lex_state = 187, .external_lex_state = 2}, - [654] = {.lex_state = 225, .external_lex_state = 4}, - [655] = {.lex_state = 225, .external_lex_state = 4}, - [656] = {.lex_state = 225, .external_lex_state = 4}, - [657] = {.lex_state = 225, .external_lex_state = 4}, - [658] = {.lex_state = 232, .external_lex_state = 8}, - [659] = {.lex_state = 92, .external_lex_state = 4}, - [660] = {.lex_state = 92, .external_lex_state = 4}, - [661] = {.lex_state = 187, .external_lex_state = 2}, - [662] = {.lex_state = 230, .external_lex_state = 9}, - [663] = {.lex_state = 92, .external_lex_state = 4}, - [664] = {.lex_state = 187, .external_lex_state = 2}, - [665] = {.lex_state = 225, .external_lex_state = 4}, - [666] = {.lex_state = 92, .external_lex_state = 4}, - [667] = {.lex_state = 232, .external_lex_state = 8}, - [668] = {.lex_state = 232, .external_lex_state = 8}, - [669] = {.lex_state = 83, .external_lex_state = 9}, - [670] = {.lex_state = 232, .external_lex_state = 8}, - [671] = {.lex_state = 232, .external_lex_state = 8}, - [672] = {.lex_state = 232, .external_lex_state = 8}, - [673] = {.lex_state = 232, .external_lex_state = 8}, - [674] = {.lex_state = 232, .external_lex_state = 8}, - [675] = {.lex_state = 232, .external_lex_state = 4}, - [676] = {.lex_state = 231, .external_lex_state = 9}, - [677] = {.lex_state = 93, .external_lex_state = 4}, - [678] = {.lex_state = 93, .external_lex_state = 4}, - [679] = {.lex_state = 93, .external_lex_state = 4}, - [680] = {.lex_state = 230, .external_lex_state = 9}, - [681] = {.lex_state = 93, .external_lex_state = 4}, - [682] = {.lex_state = 232, .external_lex_state = 8}, - [683] = {.lex_state = 232, .external_lex_state = 8}, - [684] = {.lex_state = 232, .external_lex_state = 8}, - [685] = {.lex_state = 232, .external_lex_state = 8}, - [686] = {.lex_state = 232, .external_lex_state = 8}, - [687] = {.lex_state = 232, .external_lex_state = 8}, - [688] = {.lex_state = 232, .external_lex_state = 8}, - [689] = {.lex_state = 232, .external_lex_state = 8}, - [690] = {.lex_state = 232, .external_lex_state = 8}, - [691] = {.lex_state = 232, .external_lex_state = 8}, - [692] = {.lex_state = 232, .external_lex_state = 8}, - [693] = {.lex_state = 232, .external_lex_state = 4}, - [694] = {.lex_state = 232, .external_lex_state = 8}, - [695] = {.lex_state = 232, .external_lex_state = 8}, - [696] = {.lex_state = 232, .external_lex_state = 8}, - [697] = {.lex_state = 232, .external_lex_state = 8}, - [698] = {.lex_state = 232, .external_lex_state = 8}, - [699] = {.lex_state = 232, .external_lex_state = 8}, - [700] = {.lex_state = 232, .external_lex_state = 8}, - [701] = {.lex_state = 232, .external_lex_state = 8}, - [702] = {.lex_state = 232, .external_lex_state = 8}, - [703] = {.lex_state = 232, .external_lex_state = 8}, - [704] = {.lex_state = 232, .external_lex_state = 8}, - [705] = {.lex_state = 232, .external_lex_state = 8}, - [706] = {.lex_state = 232, .external_lex_state = 8}, - [707] = {.lex_state = 232, .external_lex_state = 8}, - [708] = {.lex_state = 81, .external_lex_state = 6}, - [709] = {.lex_state = 232, .external_lex_state = 8}, - [710] = {.lex_state = 230, .external_lex_state = 9}, - [711] = {.lex_state = 230, .external_lex_state = 9}, - [712] = {.lex_state = 231, .external_lex_state = 9}, - [713] = {.lex_state = 81, .external_lex_state = 6}, - [714] = {.lex_state = 230, .external_lex_state = 9}, - [715] = {.lex_state = 232, .external_lex_state = 8}, - [716] = {.lex_state = 232, .external_lex_state = 8}, - [717] = {.lex_state = 232, .external_lex_state = 8}, - [718] = {.lex_state = 232, .external_lex_state = 8}, - [719] = {.lex_state = 232, .external_lex_state = 8}, - [720] = {.lex_state = 232, .external_lex_state = 8}, - [721] = {.lex_state = 230, .external_lex_state = 9}, - [722] = {.lex_state = 231, .external_lex_state = 9}, - [723] = {.lex_state = 231, .external_lex_state = 9}, - [724] = {.lex_state = 230, .external_lex_state = 9}, - [725] = {.lex_state = 230, .external_lex_state = 9}, - [726] = {.lex_state = 81, .external_lex_state = 6}, - [727] = {.lex_state = 87, .external_lex_state = 9}, - [728] = {.lex_state = 87, .external_lex_state = 9}, - [729] = {.lex_state = 87, .external_lex_state = 9}, - [730] = {.lex_state = 87, .external_lex_state = 9}, - [731] = {.lex_state = 87, .external_lex_state = 9}, - [732] = {.lex_state = 87, .external_lex_state = 9}, - [733] = {.lex_state = 87, .external_lex_state = 9}, - [734] = {.lex_state = 87, .external_lex_state = 6}, - [735] = {.lex_state = 83, .external_lex_state = 6}, - [736] = {.lex_state = 87, .external_lex_state = 9}, - [737] = {.lex_state = 87, .external_lex_state = 9}, - [738] = {.lex_state = 87, .external_lex_state = 9}, - [739] = {.lex_state = 86, .external_lex_state = 9}, - [740] = {.lex_state = 86, .external_lex_state = 9}, - [741] = {.lex_state = 87, .external_lex_state = 9}, - [742] = {.lex_state = 87, .external_lex_state = 6}, - [743] = {.lex_state = 86, .external_lex_state = 9}, - [744] = {.lex_state = 86, .external_lex_state = 9}, - [745] = {.lex_state = 87, .external_lex_state = 9}, - [746] = {.lex_state = 87, .external_lex_state = 9}, - [747] = {.lex_state = 87, .external_lex_state = 9}, - [748] = {.lex_state = 87, .external_lex_state = 9}, - [749] = {.lex_state = 86, .external_lex_state = 9}, - [750] = {.lex_state = 86, .external_lex_state = 9}, - [751] = {.lex_state = 86, .external_lex_state = 9}, - [752] = {.lex_state = 87, .external_lex_state = 9}, - [753] = {.lex_state = 87, .external_lex_state = 9}, - [754] = {.lex_state = 87, .external_lex_state = 9}, - [755] = {.lex_state = 87, .external_lex_state = 9}, - [756] = {.lex_state = 87, .external_lex_state = 9}, - [757] = {.lex_state = 87, .external_lex_state = 9}, - [758] = {.lex_state = 87, .external_lex_state = 9}, - [759] = {.lex_state = 87, .external_lex_state = 9}, - [760] = {.lex_state = 87, .external_lex_state = 9}, - [761] = {.lex_state = 87, .external_lex_state = 9}, - [762] = {.lex_state = 232, .external_lex_state = 8}, - [763] = {.lex_state = 87, .external_lex_state = 9}, - [764] = {.lex_state = 87, .external_lex_state = 9}, - [765] = {.lex_state = 87, .external_lex_state = 9}, - [766] = {.lex_state = 87, .external_lex_state = 9}, - [767] = {.lex_state = 87, .external_lex_state = 9}, - [768] = {.lex_state = 87, .external_lex_state = 9}, - [769] = {.lex_state = 87, .external_lex_state = 9}, - [770] = {.lex_state = 232, .external_lex_state = 8}, - [771] = {.lex_state = 86, .external_lex_state = 6}, - [772] = {.lex_state = 232, .external_lex_state = 8}, - [773] = {.lex_state = 232, .external_lex_state = 8}, - [774] = {.lex_state = 232, .external_lex_state = 8}, - [775] = {.lex_state = 87, .external_lex_state = 6}, - [776] = {.lex_state = 230, .external_lex_state = 9}, - [777] = {.lex_state = 86, .external_lex_state = 9}, - [778] = {.lex_state = 86, .external_lex_state = 9}, - [779] = {.lex_state = 86, .external_lex_state = 9}, - [780] = {.lex_state = 86, .external_lex_state = 9}, - [781] = {.lex_state = 86, .external_lex_state = 6}, - [782] = {.lex_state = 86, .external_lex_state = 9}, - [783] = {.lex_state = 86, .external_lex_state = 9}, - [784] = {.lex_state = 86, .external_lex_state = 9}, - [785] = {.lex_state = 86, .external_lex_state = 9}, - [786] = {.lex_state = 86, .external_lex_state = 9}, - [787] = {.lex_state = 86, .external_lex_state = 9}, - [788] = {.lex_state = 86, .external_lex_state = 9}, - [789] = {.lex_state = 86, .external_lex_state = 9}, - [790] = {.lex_state = 86, .external_lex_state = 9}, - [791] = {.lex_state = 86, .external_lex_state = 9}, - [792] = {.lex_state = 86, .external_lex_state = 9}, - [793] = {.lex_state = 86, .external_lex_state = 9}, - [794] = {.lex_state = 86, .external_lex_state = 9}, - [795] = {.lex_state = 86, .external_lex_state = 9}, - [796] = {.lex_state = 86, .external_lex_state = 9}, - [797] = {.lex_state = 86, .external_lex_state = 9}, - [798] = {.lex_state = 86, .external_lex_state = 9}, - [799] = {.lex_state = 86, .external_lex_state = 9}, - [800] = {.lex_state = 86, .external_lex_state = 9}, - [801] = {.lex_state = 86, .external_lex_state = 9}, - [802] = {.lex_state = 86, .external_lex_state = 9}, - [803] = {.lex_state = 86, .external_lex_state = 9}, - [804] = {.lex_state = 232, .external_lex_state = 8}, - [805] = {.lex_state = 232, .external_lex_state = 8}, - [806] = {.lex_state = 232, .external_lex_state = 8}, - [807] = {.lex_state = 231, .external_lex_state = 9}, - [808] = {.lex_state = 232, .external_lex_state = 8}, - [809] = {.lex_state = 232, .external_lex_state = 8}, - [810] = {.lex_state = 232, .external_lex_state = 8}, - [811] = {.lex_state = 232, .external_lex_state = 8}, - [812] = {.lex_state = 87, .external_lex_state = 6}, - [813] = {.lex_state = 232, .external_lex_state = 8}, - [814] = {.lex_state = 232, .external_lex_state = 8}, - [815] = {.lex_state = 232, .external_lex_state = 8}, - [816] = {.lex_state = 232, .external_lex_state = 8}, - [817] = {.lex_state = 232, .external_lex_state = 8}, - [818] = {.lex_state = 232, .external_lex_state = 8}, - [819] = {.lex_state = 232, .external_lex_state = 4}, - [820] = {.lex_state = 232, .external_lex_state = 8}, - [821] = {.lex_state = 232, .external_lex_state = 8}, - [822] = {.lex_state = 232, .external_lex_state = 8}, - [823] = {.lex_state = 230, .external_lex_state = 9}, - [824] = {.lex_state = 230, .external_lex_state = 9}, - [825] = {.lex_state = 232, .external_lex_state = 8}, - [826] = {.lex_state = 232, .external_lex_state = 8}, - [827] = {.lex_state = 232, .external_lex_state = 8}, - [828] = {.lex_state = 232, .external_lex_state = 8}, - [829] = {.lex_state = 230, .external_lex_state = 9}, - [830] = {.lex_state = 232, .external_lex_state = 8}, - [831] = {.lex_state = 231, .external_lex_state = 9}, - [832] = {.lex_state = 232, .external_lex_state = 8}, - [833] = {.lex_state = 232, .external_lex_state = 4}, - [834] = {.lex_state = 230, .external_lex_state = 9}, - [835] = {.lex_state = 231, .external_lex_state = 9}, - [836] = {.lex_state = 232, .external_lex_state = 8}, - [837] = {.lex_state = 232, .external_lex_state = 4}, - [838] = {.lex_state = 231, .external_lex_state = 9}, - [839] = {.lex_state = 232, .external_lex_state = 8}, - [840] = {.lex_state = 232, .external_lex_state = 4}, - [841] = {.lex_state = 87, .external_lex_state = 9}, - [842] = {.lex_state = 231, .external_lex_state = 9}, - [843] = {.lex_state = 230, .external_lex_state = 9}, - [844] = {.lex_state = 231, .external_lex_state = 9}, - [845] = {.lex_state = 230, .external_lex_state = 9}, - [846] = {.lex_state = 230, .external_lex_state = 9}, - [847] = {.lex_state = 231, .external_lex_state = 9}, - [848] = {.lex_state = 231, .external_lex_state = 9}, - [849] = {.lex_state = 231, .external_lex_state = 9}, - [850] = {.lex_state = 230, .external_lex_state = 9}, - [851] = {.lex_state = 230, .external_lex_state = 9}, - [852] = {.lex_state = 230, .external_lex_state = 9}, - [853] = {.lex_state = 86, .external_lex_state = 6}, - [854] = {.lex_state = 231, .external_lex_state = 9}, - [855] = {.lex_state = 230, .external_lex_state = 9}, - [856] = {.lex_state = 231, .external_lex_state = 9}, - [857] = {.lex_state = 231, .external_lex_state = 9}, - [858] = {.lex_state = 230, .external_lex_state = 9}, - [859] = {.lex_state = 231, .external_lex_state = 9}, - [860] = {.lex_state = 230, .external_lex_state = 9}, - [861] = {.lex_state = 230, .external_lex_state = 9}, - [862] = {.lex_state = 230, .external_lex_state = 9}, - [863] = {.lex_state = 231, .external_lex_state = 9}, - [864] = {.lex_state = 230, .external_lex_state = 9}, - [865] = {.lex_state = 231, .external_lex_state = 9}, - [866] = {.lex_state = 87, .external_lex_state = 6}, - [867] = {.lex_state = 230, .external_lex_state = 9}, - [868] = {.lex_state = 230, .external_lex_state = 9}, - [869] = {.lex_state = 232, .external_lex_state = 4}, - [870] = {.lex_state = 231, .external_lex_state = 9}, - [871] = {.lex_state = 230, .external_lex_state = 9}, - [872] = {.lex_state = 231, .external_lex_state = 9}, - [873] = {.lex_state = 231, .external_lex_state = 9}, - [874] = {.lex_state = 232, .external_lex_state = 4}, - [875] = {.lex_state = 230, .external_lex_state = 9}, - [876] = {.lex_state = 230, .external_lex_state = 9}, - [877] = {.lex_state = 231, .external_lex_state = 9}, - [878] = {.lex_state = 230, .external_lex_state = 6}, - [879] = {.lex_state = 230, .external_lex_state = 9}, - [880] = {.lex_state = 230, .external_lex_state = 9}, - [881] = {.lex_state = 230, .external_lex_state = 9}, - [882] = {.lex_state = 165, .external_lex_state = 2}, - [883] = {.lex_state = 230, .external_lex_state = 6}, - [884] = {.lex_state = 230, .external_lex_state = 9}, - [885] = {.lex_state = 230, .external_lex_state = 9}, - [886] = {.lex_state = 230, .external_lex_state = 9}, - [887] = {.lex_state = 230, .external_lex_state = 9}, - [888] = {.lex_state = 230, .external_lex_state = 9}, - [889] = {.lex_state = 230, .external_lex_state = 9}, - [890] = {.lex_state = 230, .external_lex_state = 9}, - [891] = {.lex_state = 230, .external_lex_state = 9}, - [892] = {.lex_state = 230, .external_lex_state = 9}, - [893] = {.lex_state = 230, .external_lex_state = 9}, - [894] = {.lex_state = 230, .external_lex_state = 9}, - [895] = {.lex_state = 230, .external_lex_state = 9}, - [896] = {.lex_state = 230, .external_lex_state = 9}, - [897] = {.lex_state = 230, .external_lex_state = 9}, - [898] = {.lex_state = 231, .external_lex_state = 9}, - [899] = {.lex_state = 230, .external_lex_state = 9}, - [900] = {.lex_state = 230, .external_lex_state = 9}, - [901] = {.lex_state = 231, .external_lex_state = 9}, - [902] = {.lex_state = 230, .external_lex_state = 9}, - [903] = {.lex_state = 231, .external_lex_state = 9}, - [904] = {.lex_state = 231, .external_lex_state = 9}, - [905] = {.lex_state = 231, .external_lex_state = 9}, - [906] = {.lex_state = 231, .external_lex_state = 9}, - [907] = {.lex_state = 231, .external_lex_state = 9}, - [908] = {.lex_state = 231, .external_lex_state = 9}, - [909] = {.lex_state = 231, .external_lex_state = 9}, - [910] = {.lex_state = 231, .external_lex_state = 9}, - [911] = {.lex_state = 231, .external_lex_state = 9}, - [912] = {.lex_state = 231, .external_lex_state = 9}, - [913] = {.lex_state = 231, .external_lex_state = 9}, - [914] = {.lex_state = 231, .external_lex_state = 9}, - [915] = {.lex_state = 231, .external_lex_state = 9}, - [916] = {.lex_state = 231, .external_lex_state = 9}, - [917] = {.lex_state = 231, .external_lex_state = 9}, - [918] = {.lex_state = 231, .external_lex_state = 9}, - [919] = {.lex_state = 231, .external_lex_state = 9}, - [920] = {.lex_state = 231, .external_lex_state = 9}, - [921] = {.lex_state = 230, .external_lex_state = 9}, - [922] = {.lex_state = 87, .external_lex_state = 6}, - [923] = {.lex_state = 230, .external_lex_state = 9}, - [924] = {.lex_state = 230, .external_lex_state = 9}, - [925] = {.lex_state = 230, .external_lex_state = 9}, - [926] = {.lex_state = 230, .external_lex_state = 9}, - [927] = {.lex_state = 231, .external_lex_state = 9}, - [928] = {.lex_state = 231, .external_lex_state = 6}, - [929] = {.lex_state = 231, .external_lex_state = 6}, - [930] = {.lex_state = 230, .external_lex_state = 9}, - [931] = {.lex_state = 230, .external_lex_state = 9}, - [932] = {.lex_state = 230, .external_lex_state = 9}, - [933] = {.lex_state = 230, .external_lex_state = 9}, - [934] = {.lex_state = 230, .external_lex_state = 9}, - [935] = {.lex_state = 230, .external_lex_state = 9}, - [936] = {.lex_state = 230, .external_lex_state = 9}, - [937] = {.lex_state = 230, .external_lex_state = 9}, - [938] = {.lex_state = 230, .external_lex_state = 9}, - [939] = {.lex_state = 230, .external_lex_state = 9}, - [940] = {.lex_state = 230, .external_lex_state = 9}, - [941] = {.lex_state = 230, .external_lex_state = 9}, - [942] = {.lex_state = 230, .external_lex_state = 9}, - [943] = {.lex_state = 230, .external_lex_state = 9}, - [944] = {.lex_state = 230, .external_lex_state = 9}, - [945] = {.lex_state = 230, .external_lex_state = 9}, - [946] = {.lex_state = 231, .external_lex_state = 9}, - [947] = {.lex_state = 230, .external_lex_state = 9}, - [948] = {.lex_state = 232, .external_lex_state = 4}, - [949] = {.lex_state = 230, .external_lex_state = 9}, - [950] = {.lex_state = 230, .external_lex_state = 9}, - [951] = {.lex_state = 230, .external_lex_state = 9}, - [952] = {.lex_state = 230, .external_lex_state = 9}, - [953] = {.lex_state = 230, .external_lex_state = 9}, - [954] = {.lex_state = 230, .external_lex_state = 6}, - [955] = {.lex_state = 231, .external_lex_state = 9}, - [956] = {.lex_state = 231, .external_lex_state = 9}, - [957] = {.lex_state = 231, .external_lex_state = 6}, - [958] = {.lex_state = 231, .external_lex_state = 9}, - [959] = {.lex_state = 231, .external_lex_state = 9}, - [960] = {.lex_state = 230, .external_lex_state = 6}, - [961] = {.lex_state = 232, .external_lex_state = 4}, - [962] = {.lex_state = 230, .external_lex_state = 6}, - [963] = {.lex_state = 231, .external_lex_state = 9}, - [964] = {.lex_state = 25, .external_lex_state = 6}, - [965] = {.lex_state = 231, .external_lex_state = 9}, - [966] = {.lex_state = 231, .external_lex_state = 6}, - [967] = {.lex_state = 230, .external_lex_state = 6}, - [968] = {.lex_state = 232, .external_lex_state = 4}, - [969] = {.lex_state = 230, .external_lex_state = 9}, - [970] = {.lex_state = 231, .external_lex_state = 9}, - [971] = {.lex_state = 231, .external_lex_state = 9}, - [972] = {.lex_state = 231, .external_lex_state = 9}, - [973] = {.lex_state = 231, .external_lex_state = 9}, - [974] = {.lex_state = 231, .external_lex_state = 9}, - [975] = {.lex_state = 230, .external_lex_state = 6}, - [976] = {.lex_state = 231, .external_lex_state = 9}, - [977] = {.lex_state = 231, .external_lex_state = 9}, - [978] = {.lex_state = 230, .external_lex_state = 6}, - [979] = {.lex_state = 232, .external_lex_state = 4}, - [980] = {.lex_state = 231, .external_lex_state = 9}, - [981] = {.lex_state = 232, .external_lex_state = 4}, - [982] = {.lex_state = 232, .external_lex_state = 4}, - [983] = {.lex_state = 231, .external_lex_state = 9}, - [984] = {.lex_state = 231, .external_lex_state = 9}, - [985] = {.lex_state = 231, .external_lex_state = 9}, - [986] = {.lex_state = 231, .external_lex_state = 9}, - [987] = {.lex_state = 231, .external_lex_state = 9}, - [988] = {.lex_state = 231, .external_lex_state = 9}, - [989] = {.lex_state = 231, .external_lex_state = 9}, - [990] = {.lex_state = 231, .external_lex_state = 9}, - [991] = {.lex_state = 231, .external_lex_state = 9}, - [992] = {.lex_state = 230, .external_lex_state = 9}, - [993] = {.lex_state = 231, .external_lex_state = 9}, - [994] = {.lex_state = 231, .external_lex_state = 9}, - [995] = {.lex_state = 231, .external_lex_state = 9}, - [996] = {.lex_state = 231, .external_lex_state = 9}, - [997] = {.lex_state = 231, .external_lex_state = 9}, - [998] = {.lex_state = 231, .external_lex_state = 9}, - [999] = {.lex_state = 87, .external_lex_state = 6}, - [1000] = {.lex_state = 230, .external_lex_state = 6}, - [1001] = {.lex_state = 230, .external_lex_state = 6}, - [1002] = {.lex_state = 230, .external_lex_state = 6}, - [1003] = {.lex_state = 231, .external_lex_state = 6}, - [1004] = {.lex_state = 230, .external_lex_state = 6}, - [1005] = {.lex_state = 26, .external_lex_state = 6}, - [1006] = {.lex_state = 231, .external_lex_state = 6}, - [1007] = {.lex_state = 221, .external_lex_state = 6}, - [1008] = {.lex_state = 230, .external_lex_state = 6}, - [1009] = {.lex_state = 230, .external_lex_state = 6}, - [1010] = {.lex_state = 33, .external_lex_state = 10}, - [1011] = {.lex_state = 33, .external_lex_state = 10}, - [1012] = {.lex_state = 221, .external_lex_state = 6}, - [1013] = {.lex_state = 33, .external_lex_state = 10}, - [1014] = {.lex_state = 33, .external_lex_state = 10}, - [1015] = {.lex_state = 33, .external_lex_state = 10}, - [1016] = {.lex_state = 33, .external_lex_state = 10}, - [1017] = {.lex_state = 33, .external_lex_state = 10}, - [1018] = {.lex_state = 33, .external_lex_state = 10}, - [1019] = {.lex_state = 33, .external_lex_state = 10}, - [1020] = {.lex_state = 35, .external_lex_state = 10}, - [1021] = {.lex_state = 175}, - [1022] = {.lex_state = 180, .external_lex_state = 11}, - [1023] = {.lex_state = 180, .external_lex_state = 11}, - [1024] = {.lex_state = 180, .external_lex_state = 11}, - [1025] = {.lex_state = 166, .external_lex_state = 12}, - [1026] = {.lex_state = 180, .external_lex_state = 11}, - [1027] = {.lex_state = 181, .external_lex_state = 13}, - [1028] = {.lex_state = 180, .external_lex_state = 11}, - [1029] = {.lex_state = 180, .external_lex_state = 11}, - [1030] = {.lex_state = 181, .external_lex_state = 13}, - [1031] = {.lex_state = 181, .external_lex_state = 13}, - [1032] = {.lex_state = 181, .external_lex_state = 13}, - [1033] = {.lex_state = 180, .external_lex_state = 11}, - [1034] = {.lex_state = 180, .external_lex_state = 11}, - [1035] = {.lex_state = 181, .external_lex_state = 13}, - [1036] = {.lex_state = 180, .external_lex_state = 11}, - [1037] = {.lex_state = 180, .external_lex_state = 11}, - [1038] = {.lex_state = 181, .external_lex_state = 13}, - [1039] = {.lex_state = 181, .external_lex_state = 13}, - [1040] = {.lex_state = 181, .external_lex_state = 13}, - [1041] = {.lex_state = 180, .external_lex_state = 11}, - [1042] = {.lex_state = 180, .external_lex_state = 11}, - [1043] = {.lex_state = 181, .external_lex_state = 13}, - [1044] = {.lex_state = 180, .external_lex_state = 11}, - [1045] = {.lex_state = 180, .external_lex_state = 11}, - [1046] = {.lex_state = 181, .external_lex_state = 13}, - [1047] = {.lex_state = 181, .external_lex_state = 13}, - [1048] = {.lex_state = 181, .external_lex_state = 13}, - [1049] = {.lex_state = 180, .external_lex_state = 11}, - [1050] = {.lex_state = 180, .external_lex_state = 11}, - [1051] = {.lex_state = 181, .external_lex_state = 13}, - [1052] = {.lex_state = 180, .external_lex_state = 11}, - [1053] = {.lex_state = 180, .external_lex_state = 11}, - [1054] = {.lex_state = 181, .external_lex_state = 13}, - [1055] = {.lex_state = 181, .external_lex_state = 13}, - [1056] = {.lex_state = 181, .external_lex_state = 13}, - [1057] = {.lex_state = 180, .external_lex_state = 11}, - [1058] = {.lex_state = 180, .external_lex_state = 11}, - [1059] = {.lex_state = 181, .external_lex_state = 13}, - [1060] = {.lex_state = 180, .external_lex_state = 11}, - [1061] = {.lex_state = 180, .external_lex_state = 11}, - [1062] = {.lex_state = 181, .external_lex_state = 13}, - [1063] = {.lex_state = 181, .external_lex_state = 13}, - [1064] = {.lex_state = 181, .external_lex_state = 13}, - [1065] = {.lex_state = 180, .external_lex_state = 11}, - [1066] = {.lex_state = 180, .external_lex_state = 11}, - [1067] = {.lex_state = 181, .external_lex_state = 13}, - [1068] = {.lex_state = 180, .external_lex_state = 11}, - [1069] = {.lex_state = 180, .external_lex_state = 11}, - [1070] = {.lex_state = 181, .external_lex_state = 13}, - [1071] = {.lex_state = 181, .external_lex_state = 13}, - [1072] = {.lex_state = 181, .external_lex_state = 13}, - [1073] = {.lex_state = 180, .external_lex_state = 11}, - [1074] = {.lex_state = 180, .external_lex_state = 11}, - [1075] = {.lex_state = 181, .external_lex_state = 13}, - [1076] = {.lex_state = 180, .external_lex_state = 11}, - [1077] = {.lex_state = 180, .external_lex_state = 11}, - [1078] = {.lex_state = 181, .external_lex_state = 13}, - [1079] = {.lex_state = 181, .external_lex_state = 13}, - [1080] = {.lex_state = 181, .external_lex_state = 13}, - [1081] = {.lex_state = 180, .external_lex_state = 11}, - [1082] = {.lex_state = 180, .external_lex_state = 11}, - [1083] = {.lex_state = 181, .external_lex_state = 13}, - [1084] = {.lex_state = 180, .external_lex_state = 11}, - [1085] = {.lex_state = 180, .external_lex_state = 11}, - [1086] = {.lex_state = 181, .external_lex_state = 13}, - [1087] = {.lex_state = 181, .external_lex_state = 13}, - [1088] = {.lex_state = 181, .external_lex_state = 13}, - [1089] = {.lex_state = 180, .external_lex_state = 11}, - [1090] = {.lex_state = 180, .external_lex_state = 11}, - [1091] = {.lex_state = 181, .external_lex_state = 13}, - [1092] = {.lex_state = 180, .external_lex_state = 11}, - [1093] = {.lex_state = 180, .external_lex_state = 11}, - [1094] = {.lex_state = 181, .external_lex_state = 13}, - [1095] = {.lex_state = 181, .external_lex_state = 13}, - [1096] = {.lex_state = 181, .external_lex_state = 13}, - [1097] = {.lex_state = 180, .external_lex_state = 11}, - [1098] = {.lex_state = 180, .external_lex_state = 11}, - [1099] = {.lex_state = 181, .external_lex_state = 13}, - [1100] = {.lex_state = 180, .external_lex_state = 11}, - [1101] = {.lex_state = 180, .external_lex_state = 11}, - [1102] = {.lex_state = 181, .external_lex_state = 13}, - [1103] = {.lex_state = 181, .external_lex_state = 13}, - [1104] = {.lex_state = 181, .external_lex_state = 13}, - [1105] = {.lex_state = 180, .external_lex_state = 11}, - [1106] = {.lex_state = 180, .external_lex_state = 11}, - [1107] = {.lex_state = 181, .external_lex_state = 13}, - [1108] = {.lex_state = 180, .external_lex_state = 11}, - [1109] = {.lex_state = 180, .external_lex_state = 11}, - [1110] = {.lex_state = 181, .external_lex_state = 13}, - [1111] = {.lex_state = 181, .external_lex_state = 13}, - [1112] = {.lex_state = 181, .external_lex_state = 13}, - [1113] = {.lex_state = 180, .external_lex_state = 11}, - [1114] = {.lex_state = 180, .external_lex_state = 11}, - [1115] = {.lex_state = 181, .external_lex_state = 13}, - [1116] = {.lex_state = 180, .external_lex_state = 11}, - [1117] = {.lex_state = 180, .external_lex_state = 11}, - [1118] = {.lex_state = 181, .external_lex_state = 13}, - [1119] = {.lex_state = 181, .external_lex_state = 13}, - [1120] = {.lex_state = 181, .external_lex_state = 13}, - [1121] = {.lex_state = 180, .external_lex_state = 11}, - [1122] = {.lex_state = 180, .external_lex_state = 11}, - [1123] = {.lex_state = 181, .external_lex_state = 13}, - [1124] = {.lex_state = 180, .external_lex_state = 11}, - [1125] = {.lex_state = 180, .external_lex_state = 11}, - [1126] = {.lex_state = 181, .external_lex_state = 13}, - [1127] = {.lex_state = 181, .external_lex_state = 13}, - [1128] = {.lex_state = 181, .external_lex_state = 13}, - [1129] = {.lex_state = 180, .external_lex_state = 11}, - [1130] = {.lex_state = 180, .external_lex_state = 11}, - [1131] = {.lex_state = 181, .external_lex_state = 13}, - [1132] = {.lex_state = 180, .external_lex_state = 11}, - [1133] = {.lex_state = 180, .external_lex_state = 11}, - [1134] = {.lex_state = 181, .external_lex_state = 13}, - [1135] = {.lex_state = 181, .external_lex_state = 13}, - [1136] = {.lex_state = 181, .external_lex_state = 13}, - [1137] = {.lex_state = 180, .external_lex_state = 11}, - [1138] = {.lex_state = 180, .external_lex_state = 11}, - [1139] = {.lex_state = 181, .external_lex_state = 13}, - [1140] = {.lex_state = 180, .external_lex_state = 11}, - [1141] = {.lex_state = 180, .external_lex_state = 11}, - [1142] = {.lex_state = 181, .external_lex_state = 13}, - [1143] = {.lex_state = 181, .external_lex_state = 13}, - [1144] = {.lex_state = 181, .external_lex_state = 13}, - [1145] = {.lex_state = 180, .external_lex_state = 11}, - [1146] = {.lex_state = 180, .external_lex_state = 11}, - [1147] = {.lex_state = 181, .external_lex_state = 13}, - [1148] = {.lex_state = 180, .external_lex_state = 11}, - [1149] = {.lex_state = 180, .external_lex_state = 11}, - [1150] = {.lex_state = 181, .external_lex_state = 13}, - [1151] = {.lex_state = 181, .external_lex_state = 13}, - [1152] = {.lex_state = 181, .external_lex_state = 13}, - [1153] = {.lex_state = 180, .external_lex_state = 11}, - [1154] = {.lex_state = 180, .external_lex_state = 11}, - [1155] = {.lex_state = 181, .external_lex_state = 13}, - [1156] = {.lex_state = 180, .external_lex_state = 11}, - [1157] = {.lex_state = 180, .external_lex_state = 11}, - [1158] = {.lex_state = 181, .external_lex_state = 13}, - [1159] = {.lex_state = 181, .external_lex_state = 13}, - [1160] = {.lex_state = 181, .external_lex_state = 13}, - [1161] = {.lex_state = 180, .external_lex_state = 11}, - [1162] = {.lex_state = 166}, - [1163] = {.lex_state = 181, .external_lex_state = 13}, - [1164] = {.lex_state = 180, .external_lex_state = 11}, - [1165] = {.lex_state = 180, .external_lex_state = 11}, - [1166] = {.lex_state = 181, .external_lex_state = 13}, - [1167] = {.lex_state = 181, .external_lex_state = 13}, - [1168] = {.lex_state = 181, .external_lex_state = 13}, - [1169] = {.lex_state = 180, .external_lex_state = 11}, - [1170] = {.lex_state = 181, .external_lex_state = 13}, - [1171] = {.lex_state = 181, .external_lex_state = 13}, - [1172] = {.lex_state = 180, .external_lex_state = 11}, - [1173] = {.lex_state = 180, .external_lex_state = 11}, - [1174] = {.lex_state = 181, .external_lex_state = 13}, - [1175] = {.lex_state = 181, .external_lex_state = 13}, - [1176] = {.lex_state = 181, .external_lex_state = 13}, - [1177] = {.lex_state = 180, .external_lex_state = 11}, - [1178] = {.lex_state = 180, .external_lex_state = 11}, - [1179] = {.lex_state = 181, .external_lex_state = 13}, - [1180] = {.lex_state = 180, .external_lex_state = 11}, - [1181] = {.lex_state = 180, .external_lex_state = 11}, - [1182] = {.lex_state = 181, .external_lex_state = 13}, - [1183] = {.lex_state = 181, .external_lex_state = 13}, - [1184] = {.lex_state = 181, .external_lex_state = 13}, - [1185] = {.lex_state = 180, .external_lex_state = 11}, - [1186] = {.lex_state = 180, .external_lex_state = 11}, - [1187] = {.lex_state = 181, .external_lex_state = 13}, - [1188] = {.lex_state = 180, .external_lex_state = 11}, - [1189] = {.lex_state = 180, .external_lex_state = 11}, - [1190] = {.lex_state = 181, .external_lex_state = 13}, - [1191] = {.lex_state = 181, .external_lex_state = 13}, - [1192] = {.lex_state = 181, .external_lex_state = 13}, - [1193] = {.lex_state = 180, .external_lex_state = 11}, - [1194] = {.lex_state = 180, .external_lex_state = 11}, - [1195] = {.lex_state = 181, .external_lex_state = 13}, - [1196] = {.lex_state = 180, .external_lex_state = 11}, - [1197] = {.lex_state = 180, .external_lex_state = 11}, - [1198] = {.lex_state = 181, .external_lex_state = 13}, - [1199] = {.lex_state = 181, .external_lex_state = 13}, - [1200] = {.lex_state = 181, .external_lex_state = 13}, - [1201] = {.lex_state = 180, .external_lex_state = 11}, - [1202] = {.lex_state = 180, .external_lex_state = 11}, - [1203] = {.lex_state = 181, .external_lex_state = 13}, - [1204] = {.lex_state = 180, .external_lex_state = 11}, - [1205] = {.lex_state = 180, .external_lex_state = 11}, - [1206] = {.lex_state = 181, .external_lex_state = 13}, - [1207] = {.lex_state = 181, .external_lex_state = 13}, - [1208] = {.lex_state = 181, .external_lex_state = 13}, - [1209] = {.lex_state = 180, .external_lex_state = 11}, - [1210] = {.lex_state = 180, .external_lex_state = 11}, - [1211] = {.lex_state = 181, .external_lex_state = 13}, - [1212] = {.lex_state = 180, .external_lex_state = 11}, - [1213] = {.lex_state = 180, .external_lex_state = 11}, - [1214] = {.lex_state = 181, .external_lex_state = 13}, - [1215] = {.lex_state = 181, .external_lex_state = 13}, - [1216] = {.lex_state = 181, .external_lex_state = 13}, - [1217] = {.lex_state = 180, .external_lex_state = 11}, - [1218] = {.lex_state = 180, .external_lex_state = 11}, - [1219] = {.lex_state = 181, .external_lex_state = 13}, - [1220] = {.lex_state = 180, .external_lex_state = 11}, - [1221] = {.lex_state = 180, .external_lex_state = 11}, - [1222] = {.lex_state = 181, .external_lex_state = 13}, - [1223] = {.lex_state = 181, .external_lex_state = 13}, - [1224] = {.lex_state = 181, .external_lex_state = 13}, - [1225] = {.lex_state = 180, .external_lex_state = 11}, - [1226] = {.lex_state = 180, .external_lex_state = 11}, - [1227] = {.lex_state = 181, .external_lex_state = 13}, - [1228] = {.lex_state = 180, .external_lex_state = 11}, - [1229] = {.lex_state = 180, .external_lex_state = 11}, - [1230] = {.lex_state = 181, .external_lex_state = 13}, - [1231] = {.lex_state = 181, .external_lex_state = 13}, - [1232] = {.lex_state = 181, .external_lex_state = 13}, - [1233] = {.lex_state = 180, .external_lex_state = 11}, - [1234] = {.lex_state = 180, .external_lex_state = 11}, - [1235] = {.lex_state = 181, .external_lex_state = 13}, - [1236] = {.lex_state = 180, .external_lex_state = 11}, - [1237] = {.lex_state = 180, .external_lex_state = 11}, - [1238] = {.lex_state = 181, .external_lex_state = 13}, - [1239] = {.lex_state = 181, .external_lex_state = 13}, - [1240] = {.lex_state = 181, .external_lex_state = 13}, - [1241] = {.lex_state = 180, .external_lex_state = 11}, - [1242] = {.lex_state = 180, .external_lex_state = 11}, - [1243] = {.lex_state = 181, .external_lex_state = 13}, - [1244] = {.lex_state = 180, .external_lex_state = 11}, - [1245] = {.lex_state = 180, .external_lex_state = 11}, - [1246] = {.lex_state = 181, .external_lex_state = 13}, - [1247] = {.lex_state = 181, .external_lex_state = 13}, - [1248] = {.lex_state = 181, .external_lex_state = 13}, - [1249] = {.lex_state = 180, .external_lex_state = 11}, - [1250] = {.lex_state = 180, .external_lex_state = 11}, - [1251] = {.lex_state = 181, .external_lex_state = 13}, - [1252] = {.lex_state = 180, .external_lex_state = 11}, - [1253] = {.lex_state = 180, .external_lex_state = 11}, - [1254] = {.lex_state = 181, .external_lex_state = 13}, - [1255] = {.lex_state = 181, .external_lex_state = 13}, - [1256] = {.lex_state = 181, .external_lex_state = 13}, - [1257] = {.lex_state = 180, .external_lex_state = 11}, - [1258] = {.lex_state = 180, .external_lex_state = 11}, - [1259] = {.lex_state = 181, .external_lex_state = 13}, - [1260] = {.lex_state = 180, .external_lex_state = 11}, - [1261] = {.lex_state = 180, .external_lex_state = 11}, - [1262] = {.lex_state = 181, .external_lex_state = 13}, - [1263] = {.lex_state = 181, .external_lex_state = 13}, - [1264] = {.lex_state = 181, .external_lex_state = 13}, - [1265] = {.lex_state = 166}, - [1266] = {.lex_state = 180, .external_lex_state = 11}, - [1267] = {.lex_state = 166}, - [1268] = {.lex_state = 166}, - [1269] = {.lex_state = 166}, - [1270] = {.lex_state = 166}, - [1271] = {.lex_state = 166}, - [1272] = {.lex_state = 166}, - [1273] = {.lex_state = 166}, - [1274] = {.lex_state = 166}, - [1275] = {.lex_state = 166}, - [1276] = {.lex_state = 166, .external_lex_state = 12}, - [1277] = {.lex_state = 181, .external_lex_state = 13}, - [1278] = {.lex_state = 180, .external_lex_state = 11}, - [1279] = {.lex_state = 180, .external_lex_state = 11}, - [1280] = {.lex_state = 181, .external_lex_state = 13}, - [1281] = {.lex_state = 181, .external_lex_state = 13}, - [1282] = {.lex_state = 166, .external_lex_state = 12}, - [1283] = {.lex_state = 166, .external_lex_state = 12}, - [1284] = {.lex_state = 166}, - [1285] = {.lex_state = 166, .external_lex_state = 12}, - [1286] = {.lex_state = 180, .external_lex_state = 11}, - [1287] = {.lex_state = 181, .external_lex_state = 11}, - [1288] = {.lex_state = 181, .external_lex_state = 11}, - [1289] = {.lex_state = 181, .external_lex_state = 11}, - [1290] = {.lex_state = 181, .external_lex_state = 11}, - [1291] = {.lex_state = 181, .external_lex_state = 11}, - [1292] = {.lex_state = 181, .external_lex_state = 11}, - [1293] = {.lex_state = 181, .external_lex_state = 11}, - [1294] = {.lex_state = 181, .external_lex_state = 11}, - [1295] = {.lex_state = 181, .external_lex_state = 11}, - [1296] = {.lex_state = 166}, - [1297] = {.lex_state = 181, .external_lex_state = 11}, - [1298] = {.lex_state = 181, .external_lex_state = 11}, - [1299] = {.lex_state = 181, .external_lex_state = 11}, - [1300] = {.lex_state = 181, .external_lex_state = 11}, - [1301] = {.lex_state = 181, .external_lex_state = 11}, - [1302] = {.lex_state = 181, .external_lex_state = 11}, - [1303] = {.lex_state = 181, .external_lex_state = 11}, - [1304] = {.lex_state = 181, .external_lex_state = 11}, - [1305] = {.lex_state = 181, .external_lex_state = 11}, - [1306] = {.lex_state = 181, .external_lex_state = 11}, - [1307] = {.lex_state = 181, .external_lex_state = 11}, - [1308] = {.lex_state = 181, .external_lex_state = 11}, - [1309] = {.lex_state = 181, .external_lex_state = 11}, - [1310] = {.lex_state = 181, .external_lex_state = 11}, - [1311] = {.lex_state = 181, .external_lex_state = 11}, - [1312] = {.lex_state = 181, .external_lex_state = 11}, - [1313] = {.lex_state = 181, .external_lex_state = 11}, - [1314] = {.lex_state = 181, .external_lex_state = 11}, - [1315] = {.lex_state = 181, .external_lex_state = 11}, - [1316] = {.lex_state = 181, .external_lex_state = 11}, - [1317] = {.lex_state = 181, .external_lex_state = 11}, - [1318] = {.lex_state = 181, .external_lex_state = 11}, - [1319] = {.lex_state = 181, .external_lex_state = 11}, - [1320] = {.lex_state = 181, .external_lex_state = 11}, - [1321] = {.lex_state = 181, .external_lex_state = 11}, - [1322] = {.lex_state = 181, .external_lex_state = 11}, - [1323] = {.lex_state = 181, .external_lex_state = 11}, - [1324] = {.lex_state = 181, .external_lex_state = 11}, - [1325] = {.lex_state = 181, .external_lex_state = 11}, - [1326] = {.lex_state = 181, .external_lex_state = 11}, - [1327] = {.lex_state = 181, .external_lex_state = 11}, - [1328] = {.lex_state = 181, .external_lex_state = 11}, - [1329] = {.lex_state = 181, .external_lex_state = 11}, - [1330] = {.lex_state = 181, .external_lex_state = 11}, - [1331] = {.lex_state = 181, .external_lex_state = 11}, - [1332] = {.lex_state = 181, .external_lex_state = 11}, - [1333] = {.lex_state = 181, .external_lex_state = 11}, - [1334] = {.lex_state = 181, .external_lex_state = 11}, - [1335] = {.lex_state = 181, .external_lex_state = 11}, - [1336] = {.lex_state = 181, .external_lex_state = 11}, - [1337] = {.lex_state = 181, .external_lex_state = 11}, - [1338] = {.lex_state = 181, .external_lex_state = 11}, - [1339] = {.lex_state = 181, .external_lex_state = 11}, - [1340] = {.lex_state = 181, .external_lex_state = 11}, - [1341] = {.lex_state = 166}, - [1342] = {.lex_state = 181, .external_lex_state = 11}, - [1343] = {.lex_state = 181, .external_lex_state = 11}, - [1344] = {.lex_state = 181, .external_lex_state = 11}, - [1345] = {.lex_state = 181, .external_lex_state = 11}, - [1346] = {.lex_state = 181, .external_lex_state = 11}, - [1347] = {.lex_state = 181, .external_lex_state = 11}, - [1348] = {.lex_state = 181, .external_lex_state = 11}, - [1349] = {.lex_state = 181, .external_lex_state = 11}, - [1350] = {.lex_state = 181, .external_lex_state = 11}, - [1351] = {.lex_state = 181, .external_lex_state = 11}, - [1352] = {.lex_state = 166}, - [1353] = {.lex_state = 181, .external_lex_state = 11}, - [1354] = {.lex_state = 181, .external_lex_state = 11}, - [1355] = {.lex_state = 181, .external_lex_state = 11}, - [1356] = {.lex_state = 181, .external_lex_state = 11}, - [1357] = {.lex_state = 181, .external_lex_state = 11}, - [1358] = {.lex_state = 181, .external_lex_state = 11}, - [1359] = {.lex_state = 181, .external_lex_state = 11}, - [1360] = {.lex_state = 181, .external_lex_state = 11}, - [1361] = {.lex_state = 181, .external_lex_state = 11}, - [1362] = {.lex_state = 181, .external_lex_state = 11}, - [1363] = {.lex_state = 181, .external_lex_state = 11}, - [1364] = {.lex_state = 181, .external_lex_state = 11}, - [1365] = {.lex_state = 181, .external_lex_state = 11}, - [1366] = {.lex_state = 181, .external_lex_state = 11}, - [1367] = {.lex_state = 181, .external_lex_state = 11}, - [1368] = {.lex_state = 181, .external_lex_state = 11}, - [1369] = {.lex_state = 181, .external_lex_state = 11}, - [1370] = {.lex_state = 181, .external_lex_state = 11}, - [1371] = {.lex_state = 181, .external_lex_state = 11}, - [1372] = {.lex_state = 181, .external_lex_state = 11}, - [1373] = {.lex_state = 181, .external_lex_state = 11}, - [1374] = {.lex_state = 181, .external_lex_state = 11}, - [1375] = {.lex_state = 181, .external_lex_state = 11}, - [1376] = {.lex_state = 181, .external_lex_state = 11}, - [1377] = {.lex_state = 181, .external_lex_state = 11}, - [1378] = {.lex_state = 181, .external_lex_state = 11}, - [1379] = {.lex_state = 181, .external_lex_state = 11}, - [1380] = {.lex_state = 181, .external_lex_state = 11}, - [1381] = {.lex_state = 181, .external_lex_state = 11}, - [1382] = {.lex_state = 181, .external_lex_state = 11}, - [1383] = {.lex_state = 181, .external_lex_state = 11}, - [1384] = {.lex_state = 181, .external_lex_state = 11}, - [1385] = {.lex_state = 181, .external_lex_state = 11}, - [1386] = {.lex_state = 181, .external_lex_state = 11}, - [1387] = {.lex_state = 181, .external_lex_state = 11}, - [1388] = {.lex_state = 181, .external_lex_state = 11}, - [1389] = {.lex_state = 181, .external_lex_state = 11}, - [1390] = {.lex_state = 181, .external_lex_state = 11}, - [1391] = {.lex_state = 181, .external_lex_state = 11}, - [1392] = {.lex_state = 181, .external_lex_state = 11}, - [1393] = {.lex_state = 181, .external_lex_state = 11}, - [1394] = {.lex_state = 181, .external_lex_state = 11}, - [1395] = {.lex_state = 181, .external_lex_state = 11}, - [1396] = {.lex_state = 181, .external_lex_state = 11}, - [1397] = {.lex_state = 181, .external_lex_state = 11}, - [1398] = {.lex_state = 181, .external_lex_state = 11}, - [1399] = {.lex_state = 181, .external_lex_state = 11}, - [1400] = {.lex_state = 181, .external_lex_state = 11}, - [1401] = {.lex_state = 181, .external_lex_state = 11}, - [1402] = {.lex_state = 181, .external_lex_state = 11}, - [1403] = {.lex_state = 181, .external_lex_state = 11}, - [1404] = {.lex_state = 181, .external_lex_state = 11}, - [1405] = {.lex_state = 181, .external_lex_state = 11}, - [1406] = {.lex_state = 181, .external_lex_state = 11}, - [1407] = {.lex_state = 181, .external_lex_state = 11}, - [1408] = {.lex_state = 181, .external_lex_state = 11}, - [1409] = {.lex_state = 181, .external_lex_state = 11}, - [1410] = {.lex_state = 181, .external_lex_state = 11}, - [1411] = {.lex_state = 181, .external_lex_state = 11}, - [1412] = {.lex_state = 181, .external_lex_state = 11}, - [1413] = {.lex_state = 181, .external_lex_state = 11}, - [1414] = {.lex_state = 166}, - [1415] = {.lex_state = 181, .external_lex_state = 11}, - [1416] = {.lex_state = 181, .external_lex_state = 11}, - [1417] = {.lex_state = 181, .external_lex_state = 11}, - [1418] = {.lex_state = 181, .external_lex_state = 11}, - [1419] = {.lex_state = 181, .external_lex_state = 11}, - [1420] = {.lex_state = 181, .external_lex_state = 11}, - [1421] = {.lex_state = 181, .external_lex_state = 11}, - [1422] = {.lex_state = 181, .external_lex_state = 11}, - [1423] = {.lex_state = 181, .external_lex_state = 11}, - [1424] = {.lex_state = 181, .external_lex_state = 11}, - [1425] = {.lex_state = 181, .external_lex_state = 11}, - [1426] = {.lex_state = 181, .external_lex_state = 11}, - [1427] = {.lex_state = 181, .external_lex_state = 11}, - [1428] = {.lex_state = 181, .external_lex_state = 11}, - [1429] = {.lex_state = 181, .external_lex_state = 11}, - [1430] = {.lex_state = 181, .external_lex_state = 11}, - [1431] = {.lex_state = 181, .external_lex_state = 11}, - [1432] = {.lex_state = 181, .external_lex_state = 11}, - [1433] = {.lex_state = 181, .external_lex_state = 11}, - [1434] = {.lex_state = 181, .external_lex_state = 11}, - [1435] = {.lex_state = 181, .external_lex_state = 11}, - [1436] = {.lex_state = 181, .external_lex_state = 11}, - [1437] = {.lex_state = 181, .external_lex_state = 11}, - [1438] = {.lex_state = 181, .external_lex_state = 11}, - [1439] = {.lex_state = 181, .external_lex_state = 11}, - [1440] = {.lex_state = 181, .external_lex_state = 11}, - [1441] = {.lex_state = 181, .external_lex_state = 11}, - [1442] = {.lex_state = 181, .external_lex_state = 11}, - [1443] = {.lex_state = 181, .external_lex_state = 11}, - [1444] = {.lex_state = 181, .external_lex_state = 11}, - [1445] = {.lex_state = 181, .external_lex_state = 11}, - [1446] = {.lex_state = 181, .external_lex_state = 11}, - [1447] = {.lex_state = 181, .external_lex_state = 11}, - [1448] = {.lex_state = 181, .external_lex_state = 11}, - [1449] = {.lex_state = 181, .external_lex_state = 11}, - [1450] = {.lex_state = 181, .external_lex_state = 11}, - [1451] = {.lex_state = 181, .external_lex_state = 11}, - [1452] = {.lex_state = 181, .external_lex_state = 11}, - [1453] = {.lex_state = 181, .external_lex_state = 11}, - [1454] = {.lex_state = 181, .external_lex_state = 11}, - [1455] = {.lex_state = 181, .external_lex_state = 11}, - [1456] = {.lex_state = 181, .external_lex_state = 11}, - [1457] = {.lex_state = 181, .external_lex_state = 11}, - [1458] = {.lex_state = 181, .external_lex_state = 11}, - [1459] = {.lex_state = 181, .external_lex_state = 11}, - [1460] = {.lex_state = 181, .external_lex_state = 11}, - [1461] = {.lex_state = 181, .external_lex_state = 11}, - [1462] = {.lex_state = 181, .external_lex_state = 11}, - [1463] = {.lex_state = 181, .external_lex_state = 11}, - [1464] = {.lex_state = 181, .external_lex_state = 11}, - [1465] = {.lex_state = 181, .external_lex_state = 11}, - [1466] = {.lex_state = 181, .external_lex_state = 11}, - [1467] = {.lex_state = 181, .external_lex_state = 11}, - [1468] = {.lex_state = 181, .external_lex_state = 11}, - [1469] = {.lex_state = 181, .external_lex_state = 11}, - [1470] = {.lex_state = 181, .external_lex_state = 11}, - [1471] = {.lex_state = 181, .external_lex_state = 11}, - [1472] = {.lex_state = 181, .external_lex_state = 11}, - [1473] = {.lex_state = 181, .external_lex_state = 11}, - [1474] = {.lex_state = 181, .external_lex_state = 11}, - [1475] = {.lex_state = 181, .external_lex_state = 11}, - [1476] = {.lex_state = 181, .external_lex_state = 11}, - [1477] = {.lex_state = 181, .external_lex_state = 11}, - [1478] = {.lex_state = 181, .external_lex_state = 11}, - [1479] = {.lex_state = 181, .external_lex_state = 11}, - [1480] = {.lex_state = 181, .external_lex_state = 11}, - [1481] = {.lex_state = 181, .external_lex_state = 11}, - [1482] = {.lex_state = 181, .external_lex_state = 11}, - [1483] = {.lex_state = 181, .external_lex_state = 11}, - [1484] = {.lex_state = 181, .external_lex_state = 11}, - [1485] = {.lex_state = 181, .external_lex_state = 11}, - [1486] = {.lex_state = 181, .external_lex_state = 11}, - [1487] = {.lex_state = 181, .external_lex_state = 11}, - [1488] = {.lex_state = 166}, - [1489] = {.lex_state = 181, .external_lex_state = 11}, - [1490] = {.lex_state = 181, .external_lex_state = 11}, - [1491] = {.lex_state = 181, .external_lex_state = 11}, - [1492] = {.lex_state = 181, .external_lex_state = 11}, - [1493] = {.lex_state = 181, .external_lex_state = 11}, - [1494] = {.lex_state = 166}, - [1495] = {.lex_state = 181, .external_lex_state = 11}, - [1496] = {.lex_state = 181, .external_lex_state = 11}, - [1497] = {.lex_state = 181, .external_lex_state = 11}, - [1498] = {.lex_state = 181, .external_lex_state = 11}, - [1499] = {.lex_state = 181, .external_lex_state = 11}, - [1500] = {.lex_state = 181, .external_lex_state = 11}, - [1501] = {.lex_state = 181, .external_lex_state = 11}, - [1502] = {.lex_state = 181, .external_lex_state = 11}, - [1503] = {.lex_state = 181, .external_lex_state = 11}, - [1504] = {.lex_state = 181, .external_lex_state = 11}, - [1505] = {.lex_state = 181, .external_lex_state = 11}, - [1506] = {.lex_state = 181, .external_lex_state = 11}, - [1507] = {.lex_state = 181, .external_lex_state = 11}, - [1508] = {.lex_state = 166}, - [1509] = {.lex_state = 181, .external_lex_state = 11}, - [1510] = {.lex_state = 181, .external_lex_state = 11}, - [1511] = {.lex_state = 181, .external_lex_state = 11}, - [1512] = {.lex_state = 181, .external_lex_state = 11}, - [1513] = {.lex_state = 181, .external_lex_state = 11}, - [1514] = {.lex_state = 181, .external_lex_state = 11}, - [1515] = {.lex_state = 181, .external_lex_state = 11}, - [1516] = {.lex_state = 181, .external_lex_state = 11}, - [1517] = {.lex_state = 181, .external_lex_state = 11}, - [1518] = {.lex_state = 181, .external_lex_state = 11}, - [1519] = {.lex_state = 181, .external_lex_state = 11}, - [1520] = {.lex_state = 181, .external_lex_state = 11}, - [1521] = {.lex_state = 181, .external_lex_state = 11}, - [1522] = {.lex_state = 181, .external_lex_state = 11}, - [1523] = {.lex_state = 181, .external_lex_state = 11}, - [1524] = {.lex_state = 181, .external_lex_state = 11}, - [1525] = {.lex_state = 181, .external_lex_state = 11}, - [1526] = {.lex_state = 181, .external_lex_state = 11}, - [1527] = {.lex_state = 181, .external_lex_state = 11}, - [1528] = {.lex_state = 181, .external_lex_state = 11}, - [1529] = {.lex_state = 181, .external_lex_state = 11}, - [1530] = {.lex_state = 181, .external_lex_state = 11}, - [1531] = {.lex_state = 181, .external_lex_state = 11}, - [1532] = {.lex_state = 181, .external_lex_state = 11}, - [1533] = {.lex_state = 181, .external_lex_state = 11}, - [1534] = {.lex_state = 181, .external_lex_state = 11}, - [1535] = {.lex_state = 181, .external_lex_state = 11}, - [1536] = {.lex_state = 181, .external_lex_state = 11}, - [1537] = {.lex_state = 181, .external_lex_state = 11}, - [1538] = {.lex_state = 181, .external_lex_state = 11}, - [1539] = {.lex_state = 181, .external_lex_state = 11}, - [1540] = {.lex_state = 181, .external_lex_state = 11}, - [1541] = {.lex_state = 181, .external_lex_state = 11}, - [1542] = {.lex_state = 181, .external_lex_state = 11}, - [1543] = {.lex_state = 181, .external_lex_state = 11}, - [1544] = {.lex_state = 181, .external_lex_state = 11}, - [1545] = {.lex_state = 181, .external_lex_state = 11}, - [1546] = {.lex_state = 181, .external_lex_state = 11}, - [1547] = {.lex_state = 181, .external_lex_state = 11}, - [1548] = {.lex_state = 181, .external_lex_state = 11}, - [1549] = {.lex_state = 181, .external_lex_state = 11}, - [1550] = {.lex_state = 181, .external_lex_state = 11}, - [1551] = {.lex_state = 181, .external_lex_state = 11}, - [1552] = {.lex_state = 181, .external_lex_state = 11}, - [1553] = {.lex_state = 181, .external_lex_state = 11}, - [1554] = {.lex_state = 181, .external_lex_state = 11}, - [1555] = {.lex_state = 181, .external_lex_state = 11}, - [1556] = {.lex_state = 181, .external_lex_state = 11}, - [1557] = {.lex_state = 181, .external_lex_state = 11}, - [1558] = {.lex_state = 181, .external_lex_state = 11}, - [1559] = {.lex_state = 181, .external_lex_state = 11}, - [1560] = {.lex_state = 166}, - [1561] = {.lex_state = 181, .external_lex_state = 11}, - [1562] = {.lex_state = 181, .external_lex_state = 11}, - [1563] = {.lex_state = 181, .external_lex_state = 11}, - [1564] = {.lex_state = 181, .external_lex_state = 11}, - [1565] = {.lex_state = 166}, - [1566] = {.lex_state = 181, .external_lex_state = 11}, - [1567] = {.lex_state = 181, .external_lex_state = 11}, - [1568] = {.lex_state = 181, .external_lex_state = 11}, - [1569] = {.lex_state = 181, .external_lex_state = 11}, - [1570] = {.lex_state = 181, .external_lex_state = 11}, - [1571] = {.lex_state = 181, .external_lex_state = 11}, - [1572] = {.lex_state = 181, .external_lex_state = 11}, - [1573] = {.lex_state = 181, .external_lex_state = 11}, - [1574] = {.lex_state = 181, .external_lex_state = 11}, - [1575] = {.lex_state = 181, .external_lex_state = 11}, - [1576] = {.lex_state = 181, .external_lex_state = 11}, - [1577] = {.lex_state = 181, .external_lex_state = 11}, - [1578] = {.lex_state = 181, .external_lex_state = 11}, - [1579] = {.lex_state = 181, .external_lex_state = 11}, - [1580] = {.lex_state = 181, .external_lex_state = 11}, - [1581] = {.lex_state = 181, .external_lex_state = 11}, - [1582] = {.lex_state = 181, .external_lex_state = 11}, - [1583] = {.lex_state = 181, .external_lex_state = 11}, - [1584] = {.lex_state = 181, .external_lex_state = 11}, - [1585] = {.lex_state = 181, .external_lex_state = 11}, - [1586] = {.lex_state = 181, .external_lex_state = 11}, - [1587] = {.lex_state = 181, .external_lex_state = 11}, - [1588] = {.lex_state = 181, .external_lex_state = 11}, - [1589] = {.lex_state = 181, .external_lex_state = 11}, - [1590] = {.lex_state = 181, .external_lex_state = 11}, - [1591] = {.lex_state = 181, .external_lex_state = 11}, - [1592] = {.lex_state = 181, .external_lex_state = 11}, - [1593] = {.lex_state = 181, .external_lex_state = 11}, - [1594] = {.lex_state = 181, .external_lex_state = 11}, - [1595] = {.lex_state = 181, .external_lex_state = 11}, - [1596] = {.lex_state = 181, .external_lex_state = 11}, - [1597] = {.lex_state = 181, .external_lex_state = 11}, - [1598] = {.lex_state = 181, .external_lex_state = 11}, - [1599] = {.lex_state = 181, .external_lex_state = 11}, - [1600] = {.lex_state = 181, .external_lex_state = 11}, - [1601] = {.lex_state = 181, .external_lex_state = 11}, - [1602] = {.lex_state = 181, .external_lex_state = 11}, - [1603] = {.lex_state = 181, .external_lex_state = 11}, - [1604] = {.lex_state = 181, .external_lex_state = 11}, - [1605] = {.lex_state = 181, .external_lex_state = 11}, - [1606] = {.lex_state = 181, .external_lex_state = 11}, - [1607] = {.lex_state = 181, .external_lex_state = 11}, - [1608] = {.lex_state = 181, .external_lex_state = 11}, - [1609] = {.lex_state = 181, .external_lex_state = 11}, - [1610] = {.lex_state = 181, .external_lex_state = 11}, - [1611] = {.lex_state = 181, .external_lex_state = 11}, - [1612] = {.lex_state = 181, .external_lex_state = 11}, - [1613] = {.lex_state = 181, .external_lex_state = 11}, - [1614] = {.lex_state = 181, .external_lex_state = 11}, - [1615] = {.lex_state = 181, .external_lex_state = 11}, - [1616] = {.lex_state = 181, .external_lex_state = 11}, - [1617] = {.lex_state = 181, .external_lex_state = 11}, - [1618] = {.lex_state = 181, .external_lex_state = 11}, - [1619] = {.lex_state = 181, .external_lex_state = 11}, - [1620] = {.lex_state = 181, .external_lex_state = 11}, - [1621] = {.lex_state = 181, .external_lex_state = 11}, - [1622] = {.lex_state = 181, .external_lex_state = 11}, - [1623] = {.lex_state = 181, .external_lex_state = 11}, - [1624] = {.lex_state = 181, .external_lex_state = 11}, - [1625] = {.lex_state = 181, .external_lex_state = 11}, - [1626] = {.lex_state = 181, .external_lex_state = 11}, - [1627] = {.lex_state = 181, .external_lex_state = 11}, - [1628] = {.lex_state = 181, .external_lex_state = 11}, - [1629] = {.lex_state = 181, .external_lex_state = 11}, - [1630] = {.lex_state = 181, .external_lex_state = 11}, - [1631] = {.lex_state = 181, .external_lex_state = 11}, - [1632] = {.lex_state = 181, .external_lex_state = 11}, - [1633] = {.lex_state = 181, .external_lex_state = 11}, - [1634] = {.lex_state = 181, .external_lex_state = 11}, - [1635] = {.lex_state = 181, .external_lex_state = 11}, - [1636] = {.lex_state = 166}, - [1637] = {.lex_state = 181, .external_lex_state = 11}, - [1638] = {.lex_state = 181, .external_lex_state = 11}, - [1639] = {.lex_state = 181, .external_lex_state = 11}, - [1640] = {.lex_state = 181, .external_lex_state = 11}, - [1641] = {.lex_state = 181, .external_lex_state = 11}, - [1642] = {.lex_state = 181, .external_lex_state = 11}, - [1643] = {.lex_state = 181, .external_lex_state = 11}, - [1644] = {.lex_state = 181, .external_lex_state = 11}, - [1645] = {.lex_state = 181, .external_lex_state = 11}, - [1646] = {.lex_state = 181, .external_lex_state = 11}, - [1647] = {.lex_state = 181, .external_lex_state = 11}, - [1648] = {.lex_state = 181, .external_lex_state = 11}, - [1649] = {.lex_state = 181, .external_lex_state = 11}, - [1650] = {.lex_state = 181, .external_lex_state = 11}, - [1651] = {.lex_state = 181, .external_lex_state = 11}, - [1652] = {.lex_state = 181, .external_lex_state = 11}, - [1653] = {.lex_state = 181, .external_lex_state = 11}, - [1654] = {.lex_state = 181, .external_lex_state = 11}, - [1655] = {.lex_state = 181, .external_lex_state = 11}, - [1656] = {.lex_state = 181, .external_lex_state = 11}, - [1657] = {.lex_state = 181, .external_lex_state = 11}, - [1658] = {.lex_state = 181, .external_lex_state = 11}, - [1659] = {.lex_state = 181, .external_lex_state = 11}, - [1660] = {.lex_state = 181, .external_lex_state = 11}, - [1661] = {.lex_state = 181, .external_lex_state = 11}, - [1662] = {.lex_state = 181, .external_lex_state = 11}, - [1663] = {.lex_state = 181, .external_lex_state = 11}, - [1664] = {.lex_state = 181, .external_lex_state = 11}, - [1665] = {.lex_state = 181, .external_lex_state = 11}, - [1666] = {.lex_state = 181, .external_lex_state = 11}, - [1667] = {.lex_state = 181, .external_lex_state = 11}, - [1668] = {.lex_state = 181, .external_lex_state = 11}, - [1669] = {.lex_state = 181, .external_lex_state = 11}, - [1670] = {.lex_state = 181, .external_lex_state = 11}, - [1671] = {.lex_state = 181, .external_lex_state = 11}, - [1672] = {.lex_state = 181, .external_lex_state = 11}, - [1673] = {.lex_state = 181, .external_lex_state = 11}, - [1674] = {.lex_state = 181, .external_lex_state = 11}, - [1675] = {.lex_state = 181, .external_lex_state = 11}, - [1676] = {.lex_state = 181, .external_lex_state = 11}, - [1677] = {.lex_state = 181, .external_lex_state = 11}, - [1678] = {.lex_state = 181, .external_lex_state = 11}, - [1679] = {.lex_state = 181, .external_lex_state = 11}, - [1680] = {.lex_state = 181, .external_lex_state = 11}, - [1681] = {.lex_state = 181, .external_lex_state = 11}, - [1682] = {.lex_state = 181, .external_lex_state = 11}, - [1683] = {.lex_state = 181, .external_lex_state = 11}, - [1684] = {.lex_state = 181, .external_lex_state = 11}, - [1685] = {.lex_state = 181, .external_lex_state = 11}, - [1686] = {.lex_state = 181, .external_lex_state = 11}, - [1687] = {.lex_state = 181, .external_lex_state = 11}, - [1688] = {.lex_state = 181, .external_lex_state = 11}, - [1689] = {.lex_state = 181, .external_lex_state = 11}, - [1690] = {.lex_state = 181, .external_lex_state = 11}, - [1691] = {.lex_state = 181, .external_lex_state = 11}, - [1692] = {.lex_state = 181, .external_lex_state = 11}, - [1693] = {.lex_state = 181, .external_lex_state = 11}, - [1694] = {.lex_state = 181, .external_lex_state = 11}, - [1695] = {.lex_state = 181, .external_lex_state = 11}, - [1696] = {.lex_state = 181, .external_lex_state = 11}, - [1697] = {.lex_state = 181, .external_lex_state = 11}, - [1698] = {.lex_state = 181, .external_lex_state = 11}, - [1699] = {.lex_state = 181, .external_lex_state = 11}, - [1700] = {.lex_state = 181, .external_lex_state = 11}, - [1701] = {.lex_state = 181, .external_lex_state = 11}, - [1702] = {.lex_state = 181, .external_lex_state = 11}, - [1703] = {.lex_state = 181, .external_lex_state = 11}, - [1704] = {.lex_state = 181, .external_lex_state = 11}, - [1705] = {.lex_state = 181, .external_lex_state = 11}, - [1706] = {.lex_state = 181, .external_lex_state = 11}, - [1707] = {.lex_state = 181, .external_lex_state = 11}, - [1708] = {.lex_state = 181, .external_lex_state = 11}, - [1709] = {.lex_state = 181, .external_lex_state = 11}, - [1710] = {.lex_state = 181, .external_lex_state = 11}, - [1711] = {.lex_state = 181, .external_lex_state = 11}, - [1712] = {.lex_state = 181, .external_lex_state = 11}, - [1713] = {.lex_state = 181, .external_lex_state = 11}, - [1714] = {.lex_state = 181, .external_lex_state = 11}, - [1715] = {.lex_state = 181, .external_lex_state = 11}, - [1716] = {.lex_state = 181, .external_lex_state = 11}, - [1717] = {.lex_state = 181, .external_lex_state = 11}, - [1718] = {.lex_state = 181, .external_lex_state = 11}, - [1719] = {.lex_state = 181, .external_lex_state = 11}, - [1720] = {.lex_state = 181, .external_lex_state = 11}, - [1721] = {.lex_state = 181, .external_lex_state = 11}, - [1722] = {.lex_state = 181, .external_lex_state = 11}, - [1723] = {.lex_state = 181, .external_lex_state = 11}, - [1724] = {.lex_state = 181, .external_lex_state = 11}, - [1725] = {.lex_state = 181, .external_lex_state = 11}, - [1726] = {.lex_state = 181, .external_lex_state = 11}, - [1727] = {.lex_state = 181, .external_lex_state = 11}, - [1728] = {.lex_state = 181, .external_lex_state = 11}, - [1729] = {.lex_state = 181, .external_lex_state = 11}, - [1730] = {.lex_state = 181, .external_lex_state = 11}, - [1731] = {.lex_state = 181, .external_lex_state = 11}, - [1732] = {.lex_state = 181, .external_lex_state = 11}, - [1733] = {.lex_state = 181, .external_lex_state = 11}, - [1734] = {.lex_state = 181, .external_lex_state = 11}, - [1735] = {.lex_state = 181, .external_lex_state = 11}, - [1736] = {.lex_state = 181, .external_lex_state = 11}, - [1737] = {.lex_state = 181, .external_lex_state = 11}, - [1738] = {.lex_state = 181, .external_lex_state = 11}, - [1739] = {.lex_state = 181, .external_lex_state = 11}, - [1740] = {.lex_state = 181, .external_lex_state = 11}, - [1741] = {.lex_state = 181, .external_lex_state = 11}, - [1742] = {.lex_state = 181, .external_lex_state = 11}, - [1743] = {.lex_state = 181, .external_lex_state = 11}, - [1744] = {.lex_state = 181, .external_lex_state = 11}, - [1745] = {.lex_state = 181, .external_lex_state = 11}, - [1746] = {.lex_state = 181, .external_lex_state = 11}, - [1747] = {.lex_state = 181, .external_lex_state = 11}, - [1748] = {.lex_state = 181, .external_lex_state = 11}, - [1749] = {.lex_state = 181, .external_lex_state = 11}, - [1750] = {.lex_state = 181, .external_lex_state = 11}, - [1751] = {.lex_state = 181, .external_lex_state = 11}, - [1752] = {.lex_state = 181, .external_lex_state = 11}, - [1753] = {.lex_state = 181, .external_lex_state = 11}, - [1754] = {.lex_state = 181, .external_lex_state = 11}, - [1755] = {.lex_state = 181, .external_lex_state = 11}, - [1756] = {.lex_state = 181, .external_lex_state = 11}, - [1757] = {.lex_state = 181, .external_lex_state = 11}, - [1758] = {.lex_state = 181, .external_lex_state = 11}, - [1759] = {.lex_state = 181, .external_lex_state = 11}, - [1760] = {.lex_state = 181, .external_lex_state = 11}, - [1761] = {.lex_state = 181, .external_lex_state = 11}, - [1762] = {.lex_state = 181, .external_lex_state = 11}, - [1763] = {.lex_state = 181, .external_lex_state = 11}, - [1764] = {.lex_state = 181, .external_lex_state = 11}, - [1765] = {.lex_state = 181, .external_lex_state = 11}, - [1766] = {.lex_state = 181, .external_lex_state = 11}, - [1767] = {.lex_state = 181, .external_lex_state = 11}, - [1768] = {.lex_state = 181, .external_lex_state = 11}, - [1769] = {.lex_state = 181, .external_lex_state = 11}, - [1770] = {.lex_state = 166}, - [1771] = {.lex_state = 181, .external_lex_state = 11}, - [1772] = {.lex_state = 166}, - [1773] = {.lex_state = 166}, - [1774] = {.lex_state = 181, .external_lex_state = 11}, - [1775] = {.lex_state = 181, .external_lex_state = 11}, - [1776] = {.lex_state = 166}, - [1777] = {.lex_state = 166}, - [1778] = {.lex_state = 166}, - [1779] = {.lex_state = 181, .external_lex_state = 11}, - [1780] = {.lex_state = 181, .external_lex_state = 11}, - [1781] = {.lex_state = 166}, - [1782] = {.lex_state = 166}, - [1783] = {.lex_state = 166}, - [1784] = {.lex_state = 166}, - [1785] = {.lex_state = 166}, - [1786] = {.lex_state = 166}, - [1787] = {.lex_state = 181, .external_lex_state = 11}, - [1788] = {.lex_state = 181, .external_lex_state = 11}, - [1789] = {.lex_state = 181, .external_lex_state = 11}, - [1790] = {.lex_state = 166}, - [1791] = {.lex_state = 166}, - [1792] = {.lex_state = 166}, - [1793] = {.lex_state = 181, .external_lex_state = 11}, - [1794] = {.lex_state = 181, .external_lex_state = 11}, - [1795] = {.lex_state = 174, .external_lex_state = 14}, - [1796] = {.lex_state = 181, .external_lex_state = 11}, - [1797] = {.lex_state = 166}, - [1798] = {.lex_state = 166}, - [1799] = {.lex_state = 166}, - [1800] = {.lex_state = 181, .external_lex_state = 11}, - [1801] = {.lex_state = 166}, - [1802] = {.lex_state = 174}, - [1803] = {.lex_state = 166}, - [1804] = {.lex_state = 181, .external_lex_state = 11}, - [1805] = {.lex_state = 166}, - [1806] = {.lex_state = 181, .external_lex_state = 11}, - [1807] = {.lex_state = 166}, - [1808] = {.lex_state = 181, .external_lex_state = 11}, - [1809] = {.lex_state = 181, .external_lex_state = 11}, - [1810] = {.lex_state = 181, .external_lex_state = 11}, - [1811] = {.lex_state = 181, .external_lex_state = 11}, - [1812] = {.lex_state = 166}, - [1813] = {.lex_state = 181, .external_lex_state = 11}, - [1814] = {.lex_state = 181, .external_lex_state = 11}, - [1815] = {.lex_state = 181, .external_lex_state = 11}, - [1816] = {.lex_state = 181, .external_lex_state = 11}, - [1817] = {.lex_state = 181, .external_lex_state = 11}, - [1818] = {.lex_state = 181, .external_lex_state = 11}, - [1819] = {.lex_state = 163, .external_lex_state = 11}, - [1820] = {.lex_state = 187, .external_lex_state = 2}, - [1821] = {.lex_state = 187, .external_lex_state = 15}, - [1822] = {.lex_state = 187, .external_lex_state = 15}, - [1823] = {.lex_state = 187, .external_lex_state = 15}, - [1824] = {.lex_state = 187, .external_lex_state = 15}, - [1825] = {.lex_state = 187, .external_lex_state = 15}, - [1826] = {.lex_state = 95, .external_lex_state = 10}, - [1827] = {.lex_state = 28, .external_lex_state = 6}, - [1828] = {.lex_state = 187, .external_lex_state = 2}, - [1829] = {.lex_state = 187, .external_lex_state = 15}, - [1830] = {.lex_state = 28, .external_lex_state = 6}, - [1831] = {.lex_state = 28, .external_lex_state = 6}, - [1832] = {.lex_state = 187, .external_lex_state = 2}, - [1833] = {.lex_state = 233, .external_lex_state = 10}, - [1834] = {.lex_state = 187, .external_lex_state = 15}, - [1835] = {.lex_state = 187, .external_lex_state = 15}, - [1836] = {.lex_state = 187, .external_lex_state = 15}, - [1837] = {.lex_state = 187, .external_lex_state = 15}, - [1838] = {.lex_state = 187, .external_lex_state = 15}, - [1839] = {.lex_state = 187, .external_lex_state = 15}, - [1840] = {.lex_state = 187, .external_lex_state = 15}, - [1841] = {.lex_state = 187, .external_lex_state = 15}, - [1842] = {.lex_state = 187, .external_lex_state = 15}, - [1843] = {.lex_state = 187, .external_lex_state = 15}, - [1844] = {.lex_state = 233, .external_lex_state = 10}, - [1845] = {.lex_state = 233, .external_lex_state = 10}, - [1846] = {.lex_state = 187, .external_lex_state = 15}, - [1847] = {.lex_state = 187, .external_lex_state = 15}, - [1848] = {.lex_state = 233, .external_lex_state = 10}, - [1849] = {.lex_state = 233, .external_lex_state = 10}, - [1850] = {.lex_state = 233, .external_lex_state = 10}, - [1851] = {.lex_state = 187, .external_lex_state = 15}, - [1852] = {.lex_state = 187, .external_lex_state = 15}, - [1853] = {.lex_state = 187, .external_lex_state = 15}, - [1854] = {.lex_state = 28, .external_lex_state = 6}, - [1855] = {.lex_state = 187, .external_lex_state = 15}, - [1856] = {.lex_state = 187, .external_lex_state = 15}, - [1857] = {.lex_state = 187, .external_lex_state = 15}, - [1858] = {.lex_state = 187, .external_lex_state = 15}, - [1859] = {.lex_state = 187, .external_lex_state = 15}, - [1860] = {.lex_state = 187, .external_lex_state = 15}, - [1861] = {.lex_state = 187, .external_lex_state = 15}, - [1862] = {.lex_state = 187, .external_lex_state = 15}, - [1863] = {.lex_state = 187, .external_lex_state = 15}, - [1864] = {.lex_state = 187, .external_lex_state = 2}, - [1865] = {.lex_state = 233, .external_lex_state = 10}, - [1866] = {.lex_state = 187, .external_lex_state = 15}, - [1867] = {.lex_state = 28, .external_lex_state = 6}, - [1868] = {.lex_state = 187, .external_lex_state = 15}, - [1869] = {.lex_state = 187, .external_lex_state = 15}, - [1870] = {.lex_state = 187, .external_lex_state = 15}, - [1871] = {.lex_state = 187, .external_lex_state = 15}, - [1872] = {.lex_state = 28, .external_lex_state = 6}, - [1873] = {.lex_state = 187, .external_lex_state = 15}, - [1874] = {.lex_state = 187, .external_lex_state = 15}, - [1875] = {.lex_state = 187, .external_lex_state = 15}, - [1876] = {.lex_state = 187, .external_lex_state = 15}, - [1877] = {.lex_state = 187, .external_lex_state = 15}, - [1878] = {.lex_state = 183}, - [1879] = {.lex_state = 187, .external_lex_state = 2}, - [1880] = {.lex_state = 187, .external_lex_state = 2}, - [1881] = {.lex_state = 183}, - [1882] = {.lex_state = 187, .external_lex_state = 2}, - [1883] = {.lex_state = 187, .external_lex_state = 2}, - [1884] = {.lex_state = 187, .external_lex_state = 2}, - [1885] = {.lex_state = 187, .external_lex_state = 2}, - [1886] = {.lex_state = 187, .external_lex_state = 2}, - [1887] = {.lex_state = 222, .external_lex_state = 6}, - [1888] = {.lex_state = 187, .external_lex_state = 2}, - [1889] = {.lex_state = 187, .external_lex_state = 2}, - [1890] = {.lex_state = 183}, - [1891] = {.lex_state = 28, .external_lex_state = 6}, - [1892] = {.lex_state = 183}, - [1893] = {.lex_state = 187, .external_lex_state = 2}, - [1894] = {.lex_state = 187, .external_lex_state = 2}, - [1895] = {.lex_state = 222, .external_lex_state = 6}, - [1896] = {.lex_state = 187, .external_lex_state = 2}, - [1897] = {.lex_state = 187, .external_lex_state = 2}, - [1898] = {.lex_state = 183}, - [1899] = {.lex_state = 183}, - [1900] = {.lex_state = 187, .external_lex_state = 2}, - [1901] = {.lex_state = 187, .external_lex_state = 2}, - [1902] = {.lex_state = 187, .external_lex_state = 2}, - [1903] = {.lex_state = 28, .external_lex_state = 6}, - [1904] = {.lex_state = 187, .external_lex_state = 2}, - [1905] = {.lex_state = 187, .external_lex_state = 2}, - [1906] = {.lex_state = 187, .external_lex_state = 2}, - [1907] = {.lex_state = 187, .external_lex_state = 2}, - [1908] = {.lex_state = 187, .external_lex_state = 2}, - [1909] = {.lex_state = 28, .external_lex_state = 6}, - [1910] = {.lex_state = 187, .external_lex_state = 2}, - [1911] = {.lex_state = 187, .external_lex_state = 2}, - [1912] = {.lex_state = 187, .external_lex_state = 2}, - [1913] = {.lex_state = 187, .external_lex_state = 2}, - [1914] = {.lex_state = 187, .external_lex_state = 2}, - [1915] = {.lex_state = 187, .external_lex_state = 2}, - [1916] = {.lex_state = 187, .external_lex_state = 2}, - [1917] = {.lex_state = 222, .external_lex_state = 6}, - [1918] = {.lex_state = 187, .external_lex_state = 2}, - [1919] = {.lex_state = 187, .external_lex_state = 2}, - [1920] = {.lex_state = 187, .external_lex_state = 2}, - [1921] = {.lex_state = 187, .external_lex_state = 2}, - [1922] = {.lex_state = 28, .external_lex_state = 9}, - [1923] = {.lex_state = 187, .external_lex_state = 2}, - [1924] = {.lex_state = 187, .external_lex_state = 2}, - [1925] = {.lex_state = 28, .external_lex_state = 6}, - [1926] = {.lex_state = 28, .external_lex_state = 6}, - [1927] = {.lex_state = 28, .external_lex_state = 6}, - [1928] = {.lex_state = 187, .external_lex_state = 2}, - [1929] = {.lex_state = 182, .external_lex_state = 16}, - [1930] = {.lex_state = 182, .external_lex_state = 16}, - [1931] = {.lex_state = 182, .external_lex_state = 16}, - [1932] = {.lex_state = 187, .external_lex_state = 2}, - [1933] = {.lex_state = 182}, - [1934] = {.lex_state = 182, .external_lex_state = 16}, - [1935] = {.lex_state = 182}, - [1936] = {.lex_state = 28, .external_lex_state = 9}, - [1937] = {.lex_state = 28, .external_lex_state = 9}, - [1938] = {.lex_state = 182}, - [1939] = {.lex_state = 28, .external_lex_state = 9}, - [1940] = {.lex_state = 222, .external_lex_state = 6}, - [1941] = {.lex_state = 182, .external_lex_state = 16}, - [1942] = {.lex_state = 182, .external_lex_state = 16}, - [1943] = {.lex_state = 222, .external_lex_state = 6}, - [1944] = {.lex_state = 182}, - [1945] = {.lex_state = 182}, - [1946] = {.lex_state = 164}, - [1947] = {.lex_state = 182, .external_lex_state = 16}, - [1948] = {.lex_state = 182, .external_lex_state = 16}, - [1949] = {.lex_state = 182, .external_lex_state = 16}, - [1950] = {.lex_state = 182, .external_lex_state = 16}, - [1951] = {.lex_state = 182, .external_lex_state = 16}, - [1952] = {.lex_state = 222, .external_lex_state = 6}, - [1953] = {.lex_state = 222, .external_lex_state = 6}, - [1954] = {.lex_state = 28, .external_lex_state = 9}, - [1955] = {.lex_state = 222, .external_lex_state = 6}, - [1956] = {.lex_state = 222, .external_lex_state = 6}, - [1957] = {.lex_state = 28, .external_lex_state = 6}, - [1958] = {.lex_state = 182, .external_lex_state = 16}, - [1959] = {.lex_state = 182, .external_lex_state = 16}, - [1960] = {.lex_state = 222, .external_lex_state = 6}, - [1961] = {.lex_state = 222, .external_lex_state = 6}, - [1962] = {.lex_state = 187, .external_lex_state = 2}, - [1963] = {.lex_state = 28, .external_lex_state = 6}, - [1964] = {.lex_state = 222, .external_lex_state = 6}, - [1965] = {.lex_state = 222, .external_lex_state = 6}, - [1966] = {.lex_state = 222, .external_lex_state = 6}, - [1967] = {.lex_state = 36, .external_lex_state = 17}, - [1968] = {.lex_state = 28, .external_lex_state = 9}, - [1969] = {.lex_state = 182, .external_lex_state = 16}, - [1970] = {.lex_state = 28, .external_lex_state = 6}, - [1971] = {.lex_state = 187, .external_lex_state = 2}, - [1972] = {.lex_state = 222, .external_lex_state = 6}, - [1973] = {.lex_state = 28, .external_lex_state = 9}, - [1974] = {.lex_state = 28, .external_lex_state = 6}, - [1975] = {.lex_state = 182, .external_lex_state = 16}, - [1976] = {.lex_state = 187, .external_lex_state = 2}, - [1977] = {.lex_state = 182}, - [1978] = {.lex_state = 222, .external_lex_state = 9}, - [1979] = {.lex_state = 182, .external_lex_state = 16}, - [1980] = {.lex_state = 182, .external_lex_state = 16}, - [1981] = {.lex_state = 182, .external_lex_state = 16}, - [1982] = {.lex_state = 182}, - [1983] = {.lex_state = 222, .external_lex_state = 9}, - [1984] = {.lex_state = 28, .external_lex_state = 9}, - [1985] = {.lex_state = 28, .external_lex_state = 9}, - [1986] = {.lex_state = 28, .external_lex_state = 9}, - [1987] = {.lex_state = 28, .external_lex_state = 9}, - [1988] = {.lex_state = 28, .external_lex_state = 9}, - [1989] = {.lex_state = 28, .external_lex_state = 9}, - [1990] = {.lex_state = 28, .external_lex_state = 9}, - [1991] = {.lex_state = 28, .external_lex_state = 9}, - [1992] = {.lex_state = 28, .external_lex_state = 9}, - [1993] = {.lex_state = 28, .external_lex_state = 9}, - [1994] = {.lex_state = 182}, - [1995] = {.lex_state = 182}, - [1996] = {.lex_state = 222, .external_lex_state = 6}, - [1997] = {.lex_state = 182}, - [1998] = {.lex_state = 176, .external_lex_state = 18}, - [1999] = {.lex_state = 222, .external_lex_state = 6}, - [2000] = {.lex_state = 28, .external_lex_state = 9}, - [2001] = {.lex_state = 28, .external_lex_state = 9}, - [2002] = {.lex_state = 182}, - [2003] = {.lex_state = 182}, - [2004] = {.lex_state = 28, .external_lex_state = 9}, - [2005] = {.lex_state = 28, .external_lex_state = 9}, - [2006] = {.lex_state = 222, .external_lex_state = 9}, - [2007] = {.lex_state = 222, .external_lex_state = 6}, - [2008] = {.lex_state = 182}, - [2009] = {.lex_state = 182}, - [2010] = {.lex_state = 222, .external_lex_state = 6}, - [2011] = {.lex_state = 28, .external_lex_state = 9}, - [2012] = {.lex_state = 222, .external_lex_state = 6}, - [2013] = {.lex_state = 28, .external_lex_state = 9}, - [2014] = {.lex_state = 222, .external_lex_state = 6}, - [2015] = {.lex_state = 36, .external_lex_state = 17}, - [2016] = {.lex_state = 182}, - [2017] = {.lex_state = 28, .external_lex_state = 9}, - [2018] = {.lex_state = 182}, - [2019] = {.lex_state = 36, .external_lex_state = 10}, - [2020] = {.lex_state = 182}, - [2021] = {.lex_state = 182}, - [2022] = {.lex_state = 222, .external_lex_state = 9}, - [2023] = {.lex_state = 182}, - [2024] = {.lex_state = 222, .external_lex_state = 9}, - [2025] = {.lex_state = 36, .external_lex_state = 10}, - [2026] = {.lex_state = 182}, - [2027] = {.lex_state = 28, .external_lex_state = 9}, - [2028] = {.lex_state = 28, .external_lex_state = 9}, - [2029] = {.lex_state = 28, .external_lex_state = 9}, - [2030] = {.lex_state = 28, .external_lex_state = 9}, - [2031] = {.lex_state = 28, .external_lex_state = 9}, - [2032] = {.lex_state = 222, .external_lex_state = 9}, - [2033] = {.lex_state = 36, .external_lex_state = 17}, - [2034] = {.lex_state = 182}, - [2035] = {.lex_state = 28, .external_lex_state = 9}, - [2036] = {.lex_state = 28, .external_lex_state = 9}, - [2037] = {.lex_state = 28, .external_lex_state = 9}, - [2038] = {.lex_state = 182}, - [2039] = {.lex_state = 36, .external_lex_state = 17}, - [2040] = {.lex_state = 28, .external_lex_state = 9}, - [2041] = {.lex_state = 182}, - [2042] = {.lex_state = 182}, - [2043] = {.lex_state = 28, .external_lex_state = 9}, - [2044] = {.lex_state = 222, .external_lex_state = 6}, - [2045] = {.lex_state = 182}, - [2046] = {.lex_state = 182}, - [2047] = {.lex_state = 222, .external_lex_state = 9}, - [2048] = {.lex_state = 28, .external_lex_state = 9}, - [2049] = {.lex_state = 28, .external_lex_state = 9}, - [2050] = {.lex_state = 28, .external_lex_state = 9}, - [2051] = {.lex_state = 28, .external_lex_state = 9}, - [2052] = {.lex_state = 28, .external_lex_state = 9}, - [2053] = {.lex_state = 28, .external_lex_state = 9}, - [2054] = {.lex_state = 28, .external_lex_state = 9}, - [2055] = {.lex_state = 28, .external_lex_state = 9}, - [2056] = {.lex_state = 28, .external_lex_state = 9}, - [2057] = {.lex_state = 28, .external_lex_state = 9}, - [2058] = {.lex_state = 176, .external_lex_state = 18}, - [2059] = {.lex_state = 36, .external_lex_state = 17}, - [2060] = {.lex_state = 36, .external_lex_state = 17}, - [2061] = {.lex_state = 36, .external_lex_state = 17}, - [2062] = {.lex_state = 182, .external_lex_state = 12}, - [2063] = {.lex_state = 36, .external_lex_state = 17}, - [2064] = {.lex_state = 28, .external_lex_state = 6}, - [2065] = {.lex_state = 28, .external_lex_state = 6}, - [2066] = {.lex_state = 184, .external_lex_state = 11}, - [2067] = {.lex_state = 36, .external_lex_state = 17}, - [2068] = {.lex_state = 36, .external_lex_state = 17}, - [2069] = {.lex_state = 36, .external_lex_state = 17}, - [2070] = {.lex_state = 184, .external_lex_state = 11}, - [2071] = {.lex_state = 36, .external_lex_state = 17}, - [2072] = {.lex_state = 36, .external_lex_state = 17}, - [2073] = {.lex_state = 36, .external_lex_state = 17}, - [2074] = {.lex_state = 36, .external_lex_state = 17}, - [2075] = {.lex_state = 36, .external_lex_state = 17}, - [2076] = {.lex_state = 182, .external_lex_state = 12}, - [2077] = {.lex_state = 36, .external_lex_state = 17}, - [2078] = {.lex_state = 36, .external_lex_state = 17}, - [2079] = {.lex_state = 36, .external_lex_state = 17}, - [2080] = {.lex_state = 36, .external_lex_state = 17}, - [2081] = {.lex_state = 36, .external_lex_state = 17}, - [2082] = {.lex_state = 36, .external_lex_state = 17}, - [2083] = {.lex_state = 36, .external_lex_state = 17}, - [2084] = {.lex_state = 36, .external_lex_state = 17}, - [2085] = {.lex_state = 184, .external_lex_state = 11}, - [2086] = {.lex_state = 36, .external_lex_state = 17}, - [2087] = {.lex_state = 36, .external_lex_state = 17}, - [2088] = {.lex_state = 36, .external_lex_state = 17}, - [2089] = {.lex_state = 36, .external_lex_state = 17}, - [2090] = {.lex_state = 36, .external_lex_state = 17}, - [2091] = {.lex_state = 36, .external_lex_state = 17}, - [2092] = {.lex_state = 36, .external_lex_state = 17}, - [2093] = {.lex_state = 36, .external_lex_state = 17}, - [2094] = {.lex_state = 36, .external_lex_state = 17}, - [2095] = {.lex_state = 184, .external_lex_state = 11}, - [2096] = {.lex_state = 36, .external_lex_state = 17}, - [2097] = {.lex_state = 184, .external_lex_state = 11}, - [2098] = {.lex_state = 184, .external_lex_state = 11}, - [2099] = {.lex_state = 184, .external_lex_state = 11}, - [2100] = {.lex_state = 184, .external_lex_state = 11}, - [2101] = {.lex_state = 28, .external_lex_state = 6}, - [2102] = {.lex_state = 184, .external_lex_state = 11}, - [2103] = {.lex_state = 28, .external_lex_state = 6}, - [2104] = {.lex_state = 28, .external_lex_state = 6}, - [2105] = {.lex_state = 28, .external_lex_state = 6}, - [2106] = {.lex_state = 28, .external_lex_state = 6}, - [2107] = {.lex_state = 181, .external_lex_state = 19}, - [2108] = {.lex_state = 184, .external_lex_state = 11}, - [2109] = {.lex_state = 28, .external_lex_state = 6}, - [2110] = {.lex_state = 28, .external_lex_state = 6}, - [2111] = {.lex_state = 184, .external_lex_state = 11}, - [2112] = {.lex_state = 28, .external_lex_state = 6}, - [2113] = {.lex_state = 28, .external_lex_state = 6}, - [2114] = {.lex_state = 28, .external_lex_state = 6}, - [2115] = {.lex_state = 28, .external_lex_state = 6}, - [2116] = {.lex_state = 184, .external_lex_state = 11}, - [2117] = {.lex_state = 28, .external_lex_state = 6}, - [2118] = {.lex_state = 28, .external_lex_state = 6}, - [2119] = {.lex_state = 28, .external_lex_state = 6}, - [2120] = {.lex_state = 184, .external_lex_state = 11}, - [2121] = {.lex_state = 28, .external_lex_state = 6}, - [2122] = {.lex_state = 28, .external_lex_state = 6}, - [2123] = {.lex_state = 181, .external_lex_state = 19}, - [2124] = {.lex_state = 181, .external_lex_state = 19}, - [2125] = {.lex_state = 184, .external_lex_state = 11}, - [2126] = {.lex_state = 28, .external_lex_state = 6}, - [2127] = {.lex_state = 28, .external_lex_state = 6}, - [2128] = {.lex_state = 28, .external_lex_state = 6}, - [2129] = {.lex_state = 28, .external_lex_state = 6}, - [2130] = {.lex_state = 28, .external_lex_state = 6}, - [2131] = {.lex_state = 184, .external_lex_state = 11}, - [2132] = {.lex_state = 28, .external_lex_state = 6}, - [2133] = {.lex_state = 28, .external_lex_state = 6}, - [2134] = {.lex_state = 28, .external_lex_state = 6}, - [2135] = {.lex_state = 28, .external_lex_state = 6}, - [2136] = {.lex_state = 28, .external_lex_state = 6}, - [2137] = {.lex_state = 28, .external_lex_state = 6}, - [2138] = {.lex_state = 184, .external_lex_state = 11}, - [2139] = {.lex_state = 28, .external_lex_state = 6}, - [2140] = {.lex_state = 184, .external_lex_state = 11}, - [2141] = {.lex_state = 28, .external_lex_state = 6}, - [2142] = {.lex_state = 184, .external_lex_state = 11}, - [2143] = {.lex_state = 181, .external_lex_state = 19}, - [2144] = {.lex_state = 184, .external_lex_state = 11}, - [2145] = {.lex_state = 222, .external_lex_state = 9}, - [2146] = {.lex_state = 222, .external_lex_state = 9}, - [2147] = {.lex_state = 184, .external_lex_state = 11}, - [2148] = {.lex_state = 28, .external_lex_state = 6}, - [2149] = {.lex_state = 184, .external_lex_state = 11}, - [2150] = {.lex_state = 184, .external_lex_state = 11}, - [2151] = {.lex_state = 184, .external_lex_state = 11}, - [2152] = {.lex_state = 28, .external_lex_state = 6}, - [2153] = {.lex_state = 184, .external_lex_state = 11}, - [2154] = {.lex_state = 184, .external_lex_state = 11}, - [2155] = {.lex_state = 28, .external_lex_state = 6}, - [2156] = {.lex_state = 222, .external_lex_state = 9}, - [2157] = {.lex_state = 28, .external_lex_state = 6}, - [2158] = {.lex_state = 222, .external_lex_state = 9}, - [2159] = {.lex_state = 222, .external_lex_state = 6}, - [2160] = {.lex_state = 222, .external_lex_state = 9}, - [2161] = {.lex_state = 28, .external_lex_state = 6}, - [2162] = {.lex_state = 222, .external_lex_state = 9}, - [2163] = {.lex_state = 184, .external_lex_state = 11}, - [2164] = {.lex_state = 222, .external_lex_state = 9}, - [2165] = {.lex_state = 222, .external_lex_state = 9}, - [2166] = {.lex_state = 28, .external_lex_state = 6}, - [2167] = {.lex_state = 222, .external_lex_state = 9}, - [2168] = {.lex_state = 184, .external_lex_state = 11}, - [2169] = {.lex_state = 222, .external_lex_state = 9}, - [2170] = {.lex_state = 184, .external_lex_state = 11}, - [2171] = {.lex_state = 222, .external_lex_state = 9}, - [2172] = {.lex_state = 222, .external_lex_state = 9}, - [2173] = {.lex_state = 222, .external_lex_state = 9}, - [2174] = {.lex_state = 184, .external_lex_state = 11}, - [2175] = {.lex_state = 222, .external_lex_state = 9}, - [2176] = {.lex_state = 222, .external_lex_state = 9}, - [2177] = {.lex_state = 222, .external_lex_state = 9}, - [2178] = {.lex_state = 222, .external_lex_state = 9}, - [2179] = {.lex_state = 28, .external_lex_state = 6}, - [2180] = {.lex_state = 222, .external_lex_state = 9}, - [2181] = {.lex_state = 222, .external_lex_state = 9}, - [2182] = {.lex_state = 222, .external_lex_state = 9}, - [2183] = {.lex_state = 222, .external_lex_state = 9}, - [2184] = {.lex_state = 222, .external_lex_state = 9}, - [2185] = {.lex_state = 222, .external_lex_state = 9}, - [2186] = {.lex_state = 184, .external_lex_state = 11}, - [2187] = {.lex_state = 222, .external_lex_state = 9}, - [2188] = {.lex_state = 222, .external_lex_state = 9}, - [2189] = {.lex_state = 222, .external_lex_state = 9}, - [2190] = {.lex_state = 222, .external_lex_state = 9}, - [2191] = {.lex_state = 222, .external_lex_state = 9}, - [2192] = {.lex_state = 222, .external_lex_state = 9}, - [2193] = {.lex_state = 222, .external_lex_state = 9}, - [2194] = {.lex_state = 222, .external_lex_state = 9}, - [2195] = {.lex_state = 184, .external_lex_state = 11}, - [2196] = {.lex_state = 222, .external_lex_state = 9}, - [2197] = {.lex_state = 222, .external_lex_state = 9}, - [2198] = {.lex_state = 222, .external_lex_state = 9}, - [2199] = {.lex_state = 222, .external_lex_state = 9}, - [2200] = {.lex_state = 28, .external_lex_state = 6}, - [2201] = {.lex_state = 28, .external_lex_state = 6}, - [2202] = {.lex_state = 28, .external_lex_state = 6}, - [2203] = {.lex_state = 184, .external_lex_state = 11}, - [2204] = {.lex_state = 184, .external_lex_state = 11}, - [2205] = {.lex_state = 184, .external_lex_state = 11}, - [2206] = {.lex_state = 184, .external_lex_state = 11}, - [2207] = {.lex_state = 184, .external_lex_state = 11}, - [2208] = {.lex_state = 184, .external_lex_state = 11}, - [2209] = {.lex_state = 28, .external_lex_state = 6}, - [2210] = {.lex_state = 184, .external_lex_state = 11}, - [2211] = {.lex_state = 184, .external_lex_state = 11}, - [2212] = {.lex_state = 28, .external_lex_state = 6}, - [2213] = {.lex_state = 184, .external_lex_state = 11}, - [2214] = {.lex_state = 184, .external_lex_state = 11}, - [2215] = {.lex_state = 184, .external_lex_state = 11}, - [2216] = {.lex_state = 184, .external_lex_state = 11}, - [2217] = {.lex_state = 184, .external_lex_state = 11}, - [2218] = {.lex_state = 184, .external_lex_state = 11}, - [2219] = {.lex_state = 184, .external_lex_state = 11}, - [2220] = {.lex_state = 177, .external_lex_state = 18}, - [2221] = {.lex_state = 184, .external_lex_state = 11}, - [2222] = {.lex_state = 176, .external_lex_state = 18}, - [2223] = {.lex_state = 222, .external_lex_state = 9}, - [2224] = {.lex_state = 222, .external_lex_state = 6}, - [2225] = {.lex_state = 182, .external_lex_state = 12}, - [2226] = {.lex_state = 184, .external_lex_state = 11}, - [2227] = {.lex_state = 184, .external_lex_state = 11}, - [2228] = {.lex_state = 184, .external_lex_state = 11}, - [2229] = {.lex_state = 184, .external_lex_state = 11}, - [2230] = {.lex_state = 222, .external_lex_state = 9}, - [2231] = {.lex_state = 222, .external_lex_state = 6}, - [2232] = {.lex_state = 176, .external_lex_state = 18}, - [2233] = {.lex_state = 176, .external_lex_state = 18}, - [2234] = {.lex_state = 176, .external_lex_state = 18}, - [2235] = {.lex_state = 176, .external_lex_state = 18}, - [2236] = {.lex_state = 184, .external_lex_state = 11}, - [2237] = {.lex_state = 176, .external_lex_state = 18}, - [2238] = {.lex_state = 176, .external_lex_state = 18}, - [2239] = {.lex_state = 184, .external_lex_state = 11}, - [2240] = {.lex_state = 182, .external_lex_state = 12}, - [2241] = {.lex_state = 177}, - [2242] = {.lex_state = 222, .external_lex_state = 9}, - [2243] = {.lex_state = 222, .external_lex_state = 6}, - [2244] = {.lex_state = 184, .external_lex_state = 11}, - [2245] = {.lex_state = 184, .external_lex_state = 11}, - [2246] = {.lex_state = 176, .external_lex_state = 18}, - [2247] = {.lex_state = 176, .external_lex_state = 18}, - [2248] = {.lex_state = 176, .external_lex_state = 18}, - [2249] = {.lex_state = 176, .external_lex_state = 18}, - [2250] = {.lex_state = 176, .external_lex_state = 18}, - [2251] = {.lex_state = 176, .external_lex_state = 18}, - [2252] = {.lex_state = 184, .external_lex_state = 11}, - [2253] = {.lex_state = 176, .external_lex_state = 18}, - [2254] = {.lex_state = 176, .external_lex_state = 18}, - [2255] = {.lex_state = 184, .external_lex_state = 11}, - [2256] = {.lex_state = 182}, - [2257] = {.lex_state = 184, .external_lex_state = 11}, - [2258] = {.lex_state = 182}, - [2259] = {.lex_state = 180, .external_lex_state = 19}, - [2260] = {.lex_state = 184, .external_lex_state = 11}, - [2261] = {.lex_state = 184, .external_lex_state = 11}, - [2262] = {.lex_state = 176, .external_lex_state = 18}, - [2263] = {.lex_state = 176, .external_lex_state = 18}, - [2264] = {.lex_state = 176, .external_lex_state = 18}, - [2265] = {.lex_state = 176, .external_lex_state = 18}, - [2266] = {.lex_state = 176, .external_lex_state = 18}, - [2267] = {.lex_state = 176, .external_lex_state = 18}, - [2268] = {.lex_state = 180, .external_lex_state = 19}, - [2269] = {.lex_state = 176, .external_lex_state = 18}, - [2270] = {.lex_state = 176, .external_lex_state = 18}, - [2271] = {.lex_state = 176, .external_lex_state = 18}, - [2272] = {.lex_state = 176, .external_lex_state = 18}, - [2273] = {.lex_state = 176, .external_lex_state = 18}, - [2274] = {.lex_state = 176, .external_lex_state = 18}, - [2275] = {.lex_state = 176, .external_lex_state = 18}, - [2276] = {.lex_state = 176, .external_lex_state = 18}, - [2277] = {.lex_state = 176, .external_lex_state = 18}, - [2278] = {.lex_state = 176, .external_lex_state = 18}, - [2279] = {.lex_state = 176, .external_lex_state = 18}, - [2280] = {.lex_state = 176, .external_lex_state = 18}, - [2281] = {.lex_state = 176, .external_lex_state = 18}, - [2282] = {.lex_state = 184, .external_lex_state = 11}, - [2283] = {.lex_state = 184, .external_lex_state = 11}, - [2284] = {.lex_state = 182}, - [2285] = {.lex_state = 182}, - [2286] = {.lex_state = 36, .external_lex_state = 17}, - [2287] = {.lex_state = 36, .external_lex_state = 17}, - [2288] = {.lex_state = 182}, - [2289] = {.lex_state = 182}, - [2290] = {.lex_state = 36, .external_lex_state = 17}, - [2291] = {.lex_state = 181, .external_lex_state = 19}, - [2292] = {.lex_state = 181, .external_lex_state = 11}, - [2293] = {.lex_state = 222, .external_lex_state = 9}, - [2294] = {.lex_state = 181, .external_lex_state = 19}, - [2295] = {.lex_state = 222, .external_lex_state = 9}, - [2296] = {.lex_state = 222, .external_lex_state = 9}, - [2297] = {.lex_state = 222, .external_lex_state = 9}, - [2298] = {.lex_state = 181, .external_lex_state = 19}, - [2299] = {.lex_state = 177}, - [2300] = {.lex_state = 222, .external_lex_state = 9}, - [2301] = {.lex_state = 181, .external_lex_state = 19}, - [2302] = {.lex_state = 222, .external_lex_state = 9}, - [2303] = {.lex_state = 222, .external_lex_state = 9}, - [2304] = {.lex_state = 222, .external_lex_state = 9}, - [2305] = {.lex_state = 181, .external_lex_state = 19}, - [2306] = {.lex_state = 222, .external_lex_state = 9}, - [2307] = {.lex_state = 181, .external_lex_state = 19}, - [2308] = {.lex_state = 178, .external_lex_state = 20}, - [2309] = {.lex_state = 222, .external_lex_state = 9}, - [2310] = {.lex_state = 222, .external_lex_state = 9}, - [2311] = {.lex_state = 222, .external_lex_state = 9}, - [2312] = {.lex_state = 182}, - [2313] = {.lex_state = 222, .external_lex_state = 9}, - [2314] = {.lex_state = 181, .external_lex_state = 19}, - [2315] = {.lex_state = 222, .external_lex_state = 9}, - [2316] = {.lex_state = 222, .external_lex_state = 9}, - [2317] = {.lex_state = 222, .external_lex_state = 9}, - [2318] = {.lex_state = 222, .external_lex_state = 9}, - [2319] = {.lex_state = 222, .external_lex_state = 6}, - [2320] = {.lex_state = 222, .external_lex_state = 6}, - [2321] = {.lex_state = 222, .external_lex_state = 9}, - [2322] = {.lex_state = 176, .external_lex_state = 18}, - [2323] = {.lex_state = 222, .external_lex_state = 9}, - [2324] = {.lex_state = 182}, - [2325] = {.lex_state = 222, .external_lex_state = 9}, - [2326] = {.lex_state = 222, .external_lex_state = 9}, - [2327] = {.lex_state = 222, .external_lex_state = 9}, - [2328] = {.lex_state = 182}, - [2329] = {.lex_state = 222, .external_lex_state = 9}, - [2330] = {.lex_state = 222, .external_lex_state = 9}, - [2331] = {.lex_state = 222, .external_lex_state = 9}, - [2332] = {.lex_state = 222, .external_lex_state = 9}, - [2333] = {.lex_state = 222, .external_lex_state = 9}, - [2334] = {.lex_state = 182}, - [2335] = {.lex_state = 36, .external_lex_state = 10}, - [2336] = {.lex_state = 182}, - [2337] = {.lex_state = 222, .external_lex_state = 9}, - [2338] = {.lex_state = 222, .external_lex_state = 9}, - [2339] = {.lex_state = 222, .external_lex_state = 9}, - [2340] = {.lex_state = 182}, - [2341] = {.lex_state = 182}, - [2342] = {.lex_state = 222, .external_lex_state = 9}, - [2343] = {.lex_state = 181, .external_lex_state = 11}, - [2344] = {.lex_state = 222, .external_lex_state = 6}, - [2345] = {.lex_state = 222, .external_lex_state = 6}, - [2346] = {.lex_state = 179, .external_lex_state = 18}, - [2347] = {.lex_state = 222, .external_lex_state = 6}, - [2348] = {.lex_state = 222, .external_lex_state = 6}, - [2349] = {.lex_state = 222, .external_lex_state = 6}, - [2350] = {.lex_state = 36, .external_lex_state = 10}, - [2351] = {.lex_state = 179}, - [2352] = {.lex_state = 222, .external_lex_state = 6}, - [2353] = {.lex_state = 182}, - [2354] = {.lex_state = 36, .external_lex_state = 10}, - [2355] = {.lex_state = 36, .external_lex_state = 10}, - [2356] = {.lex_state = 36, .external_lex_state = 10}, - [2357] = {.lex_state = 182}, - [2358] = {.lex_state = 36, .external_lex_state = 10}, - [2359] = {.lex_state = 182}, - [2360] = {.lex_state = 178, .external_lex_state = 18}, - [2361] = {.lex_state = 222, .external_lex_state = 6}, - [2362] = {.lex_state = 222, .external_lex_state = 6}, - [2363] = {.lex_state = 181, .external_lex_state = 19}, - [2364] = {.lex_state = 36, .external_lex_state = 10}, - [2365] = {.lex_state = 181, .external_lex_state = 19}, - [2366] = {.lex_state = 181, .external_lex_state = 19}, - [2367] = {.lex_state = 181, .external_lex_state = 19}, - [2368] = {.lex_state = 36, .external_lex_state = 10}, - [2369] = {.lex_state = 222, .external_lex_state = 6}, - [2370] = {.lex_state = 222, .external_lex_state = 6}, - [2371] = {.lex_state = 222, .external_lex_state = 6}, - [2372] = {.lex_state = 222, .external_lex_state = 6}, - [2373] = {.lex_state = 36, .external_lex_state = 10}, - [2374] = {.lex_state = 181, .external_lex_state = 19}, - [2375] = {.lex_state = 181, .external_lex_state = 19}, - [2376] = {.lex_state = 181, .external_lex_state = 19}, - [2377] = {.lex_state = 222, .external_lex_state = 6}, - [2378] = {.lex_state = 181, .external_lex_state = 19}, - [2379] = {.lex_state = 36, .external_lex_state = 10}, - [2380] = {.lex_state = 222, .external_lex_state = 6}, - [2381] = {.lex_state = 181, .external_lex_state = 19}, - [2382] = {.lex_state = 180, .external_lex_state = 11}, - [2383] = {.lex_state = 222, .external_lex_state = 6}, - [2384] = {.lex_state = 222, .external_lex_state = 6}, - [2385] = {.lex_state = 222, .external_lex_state = 6}, - [2386] = {.lex_state = 222, .external_lex_state = 6}, - [2387] = {.lex_state = 222, .external_lex_state = 9}, - [2388] = {.lex_state = 182}, - [2389] = {.lex_state = 181, .external_lex_state = 19}, - [2390] = {.lex_state = 182}, - [2391] = {.lex_state = 181, .external_lex_state = 19}, - [2392] = {.lex_state = 181, .external_lex_state = 19}, - [2393] = {.lex_state = 181, .external_lex_state = 19}, - [2394] = {.lex_state = 181, .external_lex_state = 19}, - [2395] = {.lex_state = 180, .external_lex_state = 11}, - [2396] = {.lex_state = 222, .external_lex_state = 6}, - [2397] = {.lex_state = 222, .external_lex_state = 6}, - [2398] = {.lex_state = 222, .external_lex_state = 6}, - [2399] = {.lex_state = 182}, - [2400] = {.lex_state = 182}, - [2401] = {.lex_state = 182}, - [2402] = {.lex_state = 222, .external_lex_state = 6}, - [2403] = {.lex_state = 222, .external_lex_state = 6}, - [2404] = {.lex_state = 181, .external_lex_state = 19}, - [2405] = {.lex_state = 181, .external_lex_state = 19}, - [2406] = {.lex_state = 181, .external_lex_state = 19}, - [2407] = {.lex_state = 181, .external_lex_state = 19}, - [2408] = {.lex_state = 181, .external_lex_state = 19}, - [2409] = {.lex_state = 182}, - [2410] = {.lex_state = 222, .external_lex_state = 6}, - [2411] = {.lex_state = 222, .external_lex_state = 6}, - [2412] = {.lex_state = 222, .external_lex_state = 6}, - [2413] = {.lex_state = 222, .external_lex_state = 6}, - [2414] = {.lex_state = 222, .external_lex_state = 6}, - [2415] = {.lex_state = 222, .external_lex_state = 6}, - [2416] = {.lex_state = 182}, - [2417] = {.lex_state = 181, .external_lex_state = 19}, - [2418] = {.lex_state = 182}, - [2419] = {.lex_state = 222, .external_lex_state = 6}, - [2420] = {.lex_state = 222, .external_lex_state = 6}, - [2421] = {.lex_state = 222, .external_lex_state = 6}, - [2422] = {.lex_state = 222, .external_lex_state = 6}, - [2423] = {.lex_state = 222, .external_lex_state = 6}, - [2424] = {.lex_state = 182}, - [2425] = {.lex_state = 222, .external_lex_state = 6}, - [2426] = {.lex_state = 222, .external_lex_state = 6}, - [2427] = {.lex_state = 182}, - [2428] = {.lex_state = 222, .external_lex_state = 6}, - [2429] = {.lex_state = 222, .external_lex_state = 6}, - [2430] = {.lex_state = 182}, - [2431] = {.lex_state = 182}, - [2432] = {.lex_state = 182}, - [2433] = {.lex_state = 182}, - [2434] = {.lex_state = 182}, - [2435] = {.lex_state = 222, .external_lex_state = 6}, - [2436] = {.lex_state = 182}, - [2437] = {.lex_state = 182}, - [2438] = {.lex_state = 222, .external_lex_state = 6}, - [2439] = {.lex_state = 222, .external_lex_state = 6}, - [2440] = {.lex_state = 182}, - [2441] = {.lex_state = 182}, - [2442] = {.lex_state = 182}, - [2443] = {.lex_state = 182}, - [2444] = {.lex_state = 182}, - [2445] = {.lex_state = 182}, - [2446] = {.lex_state = 182}, - [2447] = {.lex_state = 182}, - [2448] = {.lex_state = 182}, - [2449] = {.lex_state = 182}, - [2450] = {.lex_state = 182}, - [2451] = {.lex_state = 182}, - [2452] = {.lex_state = 181, .external_lex_state = 19}, - [2453] = {.lex_state = 182}, - [2454] = {.lex_state = 182}, - [2455] = {.lex_state = 182}, - [2456] = {.lex_state = 182}, - [2457] = {.lex_state = 182}, - [2458] = {.lex_state = 182}, - [2459] = {.lex_state = 182}, - [2460] = {.lex_state = 181, .external_lex_state = 19}, - [2461] = {.lex_state = 181, .external_lex_state = 19}, - [2462] = {.lex_state = 181, .external_lex_state = 19}, - [2463] = {.lex_state = 36, .external_lex_state = 10}, - [2464] = {.lex_state = 36, .external_lex_state = 10}, - [2465] = {.lex_state = 181, .external_lex_state = 19}, - [2466] = {.lex_state = 36, .external_lex_state = 10}, - [2467] = {.lex_state = 181, .external_lex_state = 19}, - [2468] = {.lex_state = 222, .external_lex_state = 9}, - [2469] = {.lex_state = 36, .external_lex_state = 10}, - [2470] = {.lex_state = 36, .external_lex_state = 10}, - [2471] = {.lex_state = 182}, - [2472] = {.lex_state = 36, .external_lex_state = 10}, - [2473] = {.lex_state = 182}, - [2474] = {.lex_state = 182}, - [2475] = {.lex_state = 178, .external_lex_state = 18}, - [2476] = {.lex_state = 222, .external_lex_state = 6}, - [2477] = {.lex_state = 222, .external_lex_state = 6}, - [2478] = {.lex_state = 222, .external_lex_state = 6}, - [2479] = {.lex_state = 222, .external_lex_state = 6}, - [2480] = {.lex_state = 222, .external_lex_state = 6}, - [2481] = {.lex_state = 222, .external_lex_state = 6}, - [2482] = {.lex_state = 222, .external_lex_state = 6}, - [2483] = {.lex_state = 176}, - [2484] = {.lex_state = 222, .external_lex_state = 6}, - [2485] = {.lex_state = 222, .external_lex_state = 6}, - [2486] = {.lex_state = 222, .external_lex_state = 6}, - [2487] = {.lex_state = 222, .external_lex_state = 6}, - [2488] = {.lex_state = 222, .external_lex_state = 6}, - [2489] = {.lex_state = 222, .external_lex_state = 6}, - [2490] = {.lex_state = 178, .external_lex_state = 18}, - [2491] = {.lex_state = 222, .external_lex_state = 6}, - [2492] = {.lex_state = 222, .external_lex_state = 6}, - [2493] = {.lex_state = 222, .external_lex_state = 6}, - [2494] = {.lex_state = 222, .external_lex_state = 6}, - [2495] = {.lex_state = 222, .external_lex_state = 6}, - [2496] = {.lex_state = 178, .external_lex_state = 18}, - [2497] = {.lex_state = 222, .external_lex_state = 6}, - [2498] = {.lex_state = 222, .external_lex_state = 6}, - [2499] = {.lex_state = 222, .external_lex_state = 6}, - [2500] = {.lex_state = 222, .external_lex_state = 6}, - [2501] = {.lex_state = 178, .external_lex_state = 18}, - [2502] = {.lex_state = 178, .external_lex_state = 18}, - [2503] = {.lex_state = 222, .external_lex_state = 6}, - [2504] = {.lex_state = 178, .external_lex_state = 18}, - [2505] = {.lex_state = 222, .external_lex_state = 6}, - [2506] = {.lex_state = 222, .external_lex_state = 6}, - [2507] = {.lex_state = 179}, - [2508] = {.lex_state = 222, .external_lex_state = 6}, - [2509] = {.lex_state = 178, .external_lex_state = 20}, - [2510] = {.lex_state = 178, .external_lex_state = 18}, - [2511] = {.lex_state = 222, .external_lex_state = 6}, - [2512] = {.lex_state = 222, .external_lex_state = 6}, - [2513] = {.lex_state = 178, .external_lex_state = 14}, - [2514] = {.lex_state = 178, .external_lex_state = 18}, - [2515] = {.lex_state = 222, .external_lex_state = 6}, - [2516] = {.lex_state = 178, .external_lex_state = 18}, - [2517] = {.lex_state = 178, .external_lex_state = 20}, - [2518] = {.lex_state = 178, .external_lex_state = 20}, - [2519] = {.lex_state = 178, .external_lex_state = 14}, - [2520] = {.lex_state = 222, .external_lex_state = 6}, - [2521] = {.lex_state = 178, .external_lex_state = 18}, - [2522] = {.lex_state = 185, .external_lex_state = 14}, - [2523] = {.lex_state = 222, .external_lex_state = 6}, - [2524] = {.lex_state = 176}, - [2525] = {.lex_state = 178, .external_lex_state = 18}, - [2526] = {.lex_state = 222, .external_lex_state = 6}, - [2527] = {.lex_state = 178, .external_lex_state = 18}, - [2528] = {.lex_state = 222, .external_lex_state = 6}, - [2529] = {.lex_state = 176}, - [2530] = {.lex_state = 176}, - [2531] = {.lex_state = 176}, - [2532] = {.lex_state = 222, .external_lex_state = 6}, - [2533] = {.lex_state = 222, .external_lex_state = 6}, - [2534] = {.lex_state = 178, .external_lex_state = 18}, - [2535] = {.lex_state = 222, .external_lex_state = 6}, - [2536] = {.lex_state = 178, .external_lex_state = 18}, - [2537] = {.lex_state = 178, .external_lex_state = 18}, - [2538] = {.lex_state = 178, .external_lex_state = 18}, - [2539] = {.lex_state = 178, .external_lex_state = 18}, - [2540] = {.lex_state = 178, .external_lex_state = 18}, - [2541] = {.lex_state = 178, .external_lex_state = 18}, - [2542] = {.lex_state = 178, .external_lex_state = 18}, - [2543] = {.lex_state = 178, .external_lex_state = 18}, - [2544] = {.lex_state = 178, .external_lex_state = 18}, - [2545] = {.lex_state = 178, .external_lex_state = 18}, - [2546] = {.lex_state = 178, .external_lex_state = 18}, - [2547] = {.lex_state = 178, .external_lex_state = 18}, - [2548] = {.lex_state = 178, .external_lex_state = 18}, - [2549] = {.lex_state = 178, .external_lex_state = 18}, - [2550] = {.lex_state = 178, .external_lex_state = 18}, - [2551] = {.lex_state = 178, .external_lex_state = 18}, - [2552] = {.lex_state = 178, .external_lex_state = 18}, - [2553] = {.lex_state = 178, .external_lex_state = 18}, - [2554] = {.lex_state = 222, .external_lex_state = 6}, - [2555] = {.lex_state = 176}, - [2556] = {.lex_state = 176}, - [2557] = {.lex_state = 222, .external_lex_state = 6}, - [2558] = {.lex_state = 178, .external_lex_state = 18}, - [2559] = {.lex_state = 222, .external_lex_state = 6}, - [2560] = {.lex_state = 178, .external_lex_state = 18}, - [2561] = {.lex_state = 222, .external_lex_state = 6}, - [2562] = {.lex_state = 178, .external_lex_state = 18}, - [2563] = {.lex_state = 178, .external_lex_state = 18}, - [2564] = {.lex_state = 185, .external_lex_state = 14}, - [2565] = {.lex_state = 222, .external_lex_state = 6}, - [2566] = {.lex_state = 222, .external_lex_state = 6}, - [2567] = {.lex_state = 176}, - [2568] = {.lex_state = 222, .external_lex_state = 6}, - [2569] = {.lex_state = 178, .external_lex_state = 20}, - [2570] = {.lex_state = 178, .external_lex_state = 20}, - [2571] = {.lex_state = 182}, - [2572] = {.lex_state = 182}, - [2573] = {.lex_state = 178, .external_lex_state = 20}, - [2574] = {.lex_state = 178, .external_lex_state = 20}, - [2575] = {.lex_state = 178, .external_lex_state = 20}, - [2576] = {.lex_state = 178, .external_lex_state = 20}, - [2577] = {.lex_state = 182}, - [2578] = {.lex_state = 178, .external_lex_state = 20}, - [2579] = {.lex_state = 178, .external_lex_state = 20}, - [2580] = {.lex_state = 182}, - [2581] = {.lex_state = 182}, - [2582] = {.lex_state = 178, .external_lex_state = 20}, - [2583] = {.lex_state = 178, .external_lex_state = 20}, - [2584] = {.lex_state = 178, .external_lex_state = 20}, - [2585] = {.lex_state = 178, .external_lex_state = 20}, - [2586] = {.lex_state = 178, .external_lex_state = 20}, - [2587] = {.lex_state = 178, .external_lex_state = 20}, - [2588] = {.lex_state = 178, .external_lex_state = 20}, - [2589] = {.lex_state = 178, .external_lex_state = 20}, - [2590] = {.lex_state = 178, .external_lex_state = 20}, - [2591] = {.lex_state = 178, .external_lex_state = 20}, - [2592] = {.lex_state = 178, .external_lex_state = 20}, - [2593] = {.lex_state = 178, .external_lex_state = 20}, - [2594] = {.lex_state = 178, .external_lex_state = 20}, - [2595] = {.lex_state = 178, .external_lex_state = 20}, - [2596] = {.lex_state = 178, .external_lex_state = 20}, - [2597] = {.lex_state = 178, .external_lex_state = 20}, - [2598] = {.lex_state = 178, .external_lex_state = 20}, - [2599] = {.lex_state = 182}, - [2600] = {.lex_state = 178, .external_lex_state = 20}, - [2601] = {.lex_state = 182}, - [2602] = {.lex_state = 182}, - [2603] = {.lex_state = 182}, - [2604] = {.lex_state = 182}, - [2605] = {.lex_state = 182}, - [2606] = {.lex_state = 182}, - [2607] = {.lex_state = 182}, - [2608] = {.lex_state = 182}, - [2609] = {.lex_state = 182}, - [2610] = {.lex_state = 182}, - [2611] = {.lex_state = 182}, - [2612] = {.lex_state = 182}, - [2613] = {.lex_state = 182}, - [2614] = {.lex_state = 182}, - [2615] = {.lex_state = 182}, - [2616] = {.lex_state = 182}, - [2617] = {.lex_state = 182}, - [2618] = {.lex_state = 182}, - [2619] = {.lex_state = 182}, - [2620] = {.lex_state = 182}, - [2621] = {.lex_state = 182}, - [2622] = {.lex_state = 182}, - [2623] = {.lex_state = 182}, - [2624] = {.lex_state = 182}, - [2625] = {.lex_state = 182}, - [2626] = {.lex_state = 182}, - [2627] = {.lex_state = 176}, - [2628] = {.lex_state = 178, .external_lex_state = 20}, - [2629] = {.lex_state = 182}, - [2630] = {.lex_state = 178, .external_lex_state = 20}, - [2631] = {.lex_state = 178, .external_lex_state = 20}, - [2632] = {.lex_state = 182}, - [2633] = {.lex_state = 182}, - [2634] = {.lex_state = 178, .external_lex_state = 20}, - [2635] = {.lex_state = 182}, - [2636] = {.lex_state = 182}, - [2637] = {.lex_state = 182}, - [2638] = {.lex_state = 182}, - [2639] = {.lex_state = 182}, - [2640] = {.lex_state = 182}, - [2641] = {.lex_state = 182}, - [2642] = {.lex_state = 182}, - [2643] = {.lex_state = 178, .external_lex_state = 20}, - [2644] = {.lex_state = 182}, - [2645] = {.lex_state = 178, .external_lex_state = 20}, - [2646] = {.lex_state = 182}, - [2647] = {.lex_state = 182}, - [2648] = {.lex_state = 182}, - [2649] = {.lex_state = 182}, - [2650] = {.lex_state = 182}, - [2651] = {.lex_state = 182}, - [2652] = {.lex_state = 182}, - [2653] = {.lex_state = 182}, - [2654] = {.lex_state = 182}, - [2655] = {.lex_state = 182}, - [2656] = {.lex_state = 182}, - [2657] = {.lex_state = 182}, - [2658] = {.lex_state = 182}, - [2659] = {.lex_state = 182}, - [2660] = {.lex_state = 182}, - [2661] = {.lex_state = 182}, - [2662] = {.lex_state = 182}, - [2663] = {.lex_state = 182}, - [2664] = {.lex_state = 178, .external_lex_state = 20}, - [2665] = {.lex_state = 176}, - [2666] = {.lex_state = 178}, - [2667] = {.lex_state = 178}, - [2668] = {.lex_state = 233, .external_lex_state = 17}, - [2669] = {.lex_state = 233, .external_lex_state = 17}, - [2670] = {.lex_state = 178}, - [2671] = {.lex_state = 176}, - [2672] = {.lex_state = 176}, - [2673] = {.lex_state = 176}, - [2674] = {.lex_state = 176}, - [2675] = {.lex_state = 176}, - [2676] = {.lex_state = 176}, - [2677] = {.lex_state = 178, .external_lex_state = 14}, - [2678] = {.lex_state = 178, .external_lex_state = 14}, - [2679] = {.lex_state = 176}, - [2680] = {.lex_state = 176}, - [2681] = {.lex_state = 176}, - [2682] = {.lex_state = 176}, - [2683] = {.lex_state = 176}, - [2684] = {.lex_state = 178}, - [2685] = {.lex_state = 178}, - [2686] = {.lex_state = 178, .external_lex_state = 14}, - [2687] = {.lex_state = 178, .external_lex_state = 14}, - [2688] = {.lex_state = 178}, - [2689] = {.lex_state = 27, .external_lex_state = 10}, - [2690] = {.lex_state = 176}, - [2691] = {.lex_state = 178, .external_lex_state = 14}, - [2692] = {.lex_state = 176}, - [2693] = {.lex_state = 176}, - [2694] = {.lex_state = 176}, - [2695] = {.lex_state = 233, .external_lex_state = 17}, - [2696] = {.lex_state = 178, .external_lex_state = 14}, - [2697] = {.lex_state = 178, .external_lex_state = 14}, - [2698] = {.lex_state = 178, .external_lex_state = 14}, - [2699] = {.lex_state = 176}, - [2700] = {.lex_state = 178}, - [2701] = {.lex_state = 178, .external_lex_state = 14}, - [2702] = {.lex_state = 178, .external_lex_state = 14}, - [2703] = {.lex_state = 178}, - [2704] = {.lex_state = 176}, - [2705] = {.lex_state = 176}, - [2706] = {.lex_state = 178}, - [2707] = {.lex_state = 176}, - [2708] = {.lex_state = 178}, - [2709] = {.lex_state = 176}, - [2710] = {.lex_state = 176}, - [2711] = {.lex_state = 176}, - [2712] = {.lex_state = 176}, - [2713] = {.lex_state = 178}, - [2714] = {.lex_state = 233, .external_lex_state = 17}, - [2715] = {.lex_state = 233, .external_lex_state = 10}, - [2716] = {.lex_state = 233, .external_lex_state = 17}, - [2717] = {.lex_state = 233, .external_lex_state = 17}, - [2718] = {.lex_state = 233, .external_lex_state = 17}, - [2719] = {.lex_state = 233, .external_lex_state = 17}, - [2720] = {.lex_state = 233, .external_lex_state = 17}, - [2721] = {.lex_state = 233, .external_lex_state = 17}, - [2722] = {.lex_state = 233, .external_lex_state = 17}, - [2723] = {.lex_state = 233, .external_lex_state = 17}, - [2724] = {.lex_state = 233, .external_lex_state = 17}, - [2725] = {.lex_state = 233, .external_lex_state = 17}, - [2726] = {.lex_state = 233, .external_lex_state = 17}, - [2727] = {.lex_state = 233, .external_lex_state = 17}, - [2728] = {.lex_state = 233, .external_lex_state = 17}, - [2729] = {.lex_state = 233, .external_lex_state = 17}, - [2730] = {.lex_state = 233, .external_lex_state = 17}, - [2731] = {.lex_state = 233, .external_lex_state = 17}, - [2732] = {.lex_state = 233, .external_lex_state = 17}, - [2733] = {.lex_state = 233, .external_lex_state = 17}, - [2734] = {.lex_state = 233, .external_lex_state = 17}, - [2735] = {.lex_state = 233, .external_lex_state = 17}, - [2736] = {.lex_state = 233, .external_lex_state = 10}, - [2737] = {.lex_state = 233, .external_lex_state = 17}, - [2738] = {.lex_state = 233, .external_lex_state = 17}, - [2739] = {.lex_state = 233, .external_lex_state = 17}, - [2740] = {.lex_state = 233, .external_lex_state = 17}, - [2741] = {.lex_state = 233, .external_lex_state = 17}, - [2742] = {.lex_state = 233, .external_lex_state = 17}, - [2743] = {.lex_state = 233, .external_lex_state = 17}, - [2744] = {.lex_state = 233, .external_lex_state = 17}, - [2745] = {.lex_state = 233, .external_lex_state = 17}, - [2746] = {.lex_state = 233, .external_lex_state = 17}, - [2747] = {.lex_state = 233, .external_lex_state = 17}, - [2748] = {.lex_state = 233, .external_lex_state = 17}, - [2749] = {.lex_state = 233, .external_lex_state = 17}, - [2750] = {.lex_state = 170}, - [2751] = {.lex_state = 182, .external_lex_state = 18}, - [2752] = {.lex_state = 170, .external_lex_state = 20}, - [2753] = {.lex_state = 182, .external_lex_state = 18}, - [2754] = {.lex_state = 182, .external_lex_state = 18}, - [2755] = {.lex_state = 182, .external_lex_state = 18}, - [2756] = {.lex_state = 182, .external_lex_state = 18}, - [2757] = {.lex_state = 182, .external_lex_state = 18}, - [2758] = {.lex_state = 182, .external_lex_state = 18}, - [2759] = {.lex_state = 182, .external_lex_state = 18}, - [2760] = {.lex_state = 182, .external_lex_state = 18}, - [2761] = {.lex_state = 182}, - [2762] = {.lex_state = 182, .external_lex_state = 18}, - [2763] = {.lex_state = 182, .external_lex_state = 18}, - [2764] = {.lex_state = 182, .external_lex_state = 18}, - [2765] = {.lex_state = 182, .external_lex_state = 18}, - [2766] = {.lex_state = 182, .external_lex_state = 18}, - [2767] = {.lex_state = 182, .external_lex_state = 18}, - [2768] = {.lex_state = 182, .external_lex_state = 18}, - [2769] = {.lex_state = 182, .external_lex_state = 18}, - [2770] = {.lex_state = 182, .external_lex_state = 18}, - [2771] = {.lex_state = 182, .external_lex_state = 18}, - [2772] = {.lex_state = 182, .external_lex_state = 18}, - [2773] = {.lex_state = 182, .external_lex_state = 18}, - [2774] = {.lex_state = 182, .external_lex_state = 18}, - [2775] = {.lex_state = 182, .external_lex_state = 18}, - [2776] = {.lex_state = 182, .external_lex_state = 18}, - [2777] = {.lex_state = 182, .external_lex_state = 18}, - [2778] = {.lex_state = 182, .external_lex_state = 18}, - [2779] = {.lex_state = 182, .external_lex_state = 18}, - [2780] = {.lex_state = 182, .external_lex_state = 18}, - [2781] = {.lex_state = 182, .external_lex_state = 18}, - [2782] = {.lex_state = 182, .external_lex_state = 18}, - [2783] = {.lex_state = 182, .external_lex_state = 18}, - [2784] = {.lex_state = 182}, - [2785] = {.lex_state = 182, .external_lex_state = 18}, - [2786] = {.lex_state = 170}, - [2787] = {.lex_state = 182, .external_lex_state = 18}, - [2788] = {.lex_state = 182, .external_lex_state = 18}, - [2789] = {.lex_state = 170, .external_lex_state = 11}, - [2790] = {.lex_state = 182, .external_lex_state = 18}, - [2791] = {.lex_state = 182, .external_lex_state = 18}, - [2792] = {.lex_state = 182, .external_lex_state = 18}, - [2793] = {.lex_state = 170}, - [2794] = {.lex_state = 170}, - [2795] = {.lex_state = 173, .external_lex_state = 21}, - [2796] = {.lex_state = 173, .external_lex_state = 21}, - [2797] = {.lex_state = 173, .external_lex_state = 21}, - [2798] = {.lex_state = 170}, - [2799] = {.lex_state = 173, .external_lex_state = 21}, - [2800] = {.lex_state = 173, .external_lex_state = 21}, - [2801] = {.lex_state = 170}, - [2802] = {.lex_state = 170}, - [2803] = {.lex_state = 173, .external_lex_state = 21}, - [2804] = {.lex_state = 173, .external_lex_state = 21}, - [2805] = {.lex_state = 170}, - [2806] = {.lex_state = 170}, - [2807] = {.lex_state = 173, .external_lex_state = 21}, - [2808] = {.lex_state = 183}, - [2809] = {.lex_state = 173, .external_lex_state = 21}, - [2810] = {.lex_state = 170}, - [2811] = {.lex_state = 173, .external_lex_state = 21}, - [2812] = {.lex_state = 170}, - [2813] = {.lex_state = 183}, - [2814] = {.lex_state = 170}, - [2815] = {.lex_state = 173, .external_lex_state = 21}, - [2816] = {.lex_state = 170}, - [2817] = {.lex_state = 170}, - [2818] = {.lex_state = 173, .external_lex_state = 21}, - [2819] = {.lex_state = 170}, - [2820] = {.lex_state = 173, .external_lex_state = 21}, - [2821] = {.lex_state = 170}, - [2822] = {.lex_state = 170}, - [2823] = {.lex_state = 173, .external_lex_state = 21}, - [2824] = {.lex_state = 173, .external_lex_state = 21}, - [2825] = {.lex_state = 173, .external_lex_state = 21}, - [2826] = {.lex_state = 173, .external_lex_state = 21}, - [2827] = {.lex_state = 183}, - [2828] = {.lex_state = 173, .external_lex_state = 21}, - [2829] = {.lex_state = 170}, - [2830] = {.lex_state = 173, .external_lex_state = 21}, - [2831] = {.lex_state = 183}, - [2832] = {.lex_state = 173, .external_lex_state = 21}, - [2833] = {.lex_state = 170}, - [2834] = {.lex_state = 170}, - [2835] = {.lex_state = 170}, - [2836] = {.lex_state = 173, .external_lex_state = 21}, - [2837] = {.lex_state = 170}, - [2838] = {.lex_state = 173, .external_lex_state = 21}, - [2839] = {.lex_state = 173, .external_lex_state = 21}, - [2840] = {.lex_state = 183}, - [2841] = {.lex_state = 173, .external_lex_state = 21}, - [2842] = {.lex_state = 170}, - [2843] = {.lex_state = 170}, - [2844] = {.lex_state = 170}, - [2845] = {.lex_state = 173, .external_lex_state = 21}, - [2846] = {.lex_state = 170}, - [2847] = {.lex_state = 170}, - [2848] = {.lex_state = 173, .external_lex_state = 21}, - [2849] = {.lex_state = 173, .external_lex_state = 21}, - [2850] = {.lex_state = 183}, - [2851] = {.lex_state = 183}, - [2852] = {.lex_state = 170}, - [2853] = {.lex_state = 173, .external_lex_state = 21}, - [2854] = {.lex_state = 173, .external_lex_state = 21}, - [2855] = {.lex_state = 170}, - [2856] = {.lex_state = 173, .external_lex_state = 21}, - [2857] = {.lex_state = 183}, - [2858] = {.lex_state = 170}, - [2859] = {.lex_state = 173, .external_lex_state = 21}, - [2860] = {.lex_state = 170}, - [2861] = {.lex_state = 171}, - [2862] = {.lex_state = 171}, - [2863] = {.lex_state = 171}, - [2864] = {.lex_state = 171}, - [2865] = {.lex_state = 171}, - [2866] = {.lex_state = 171}, - [2867] = {.lex_state = 171}, - [2868] = {.lex_state = 171}, - [2869] = {.lex_state = 171}, - [2870] = {.lex_state = 182}, - [2871] = {.lex_state = 171}, - [2872] = {.lex_state = 182}, - [2873] = {.lex_state = 182}, - [2874] = {.lex_state = 182}, - [2875] = {.lex_state = 171}, - [2876] = {.lex_state = 182}, - [2877] = {.lex_state = 182}, - [2878] = {.lex_state = 171}, - [2879] = {.lex_state = 171}, - [2880] = {.lex_state = 171}, - [2881] = {.lex_state = 171}, - [2882] = {.lex_state = 171}, - [2883] = {.lex_state = 171}, - [2884] = {.lex_state = 171}, - [2885] = {.lex_state = 171}, - [2886] = {.lex_state = 171}, - [2887] = {.lex_state = 171}, - [2888] = {.lex_state = 171}, - [2889] = {.lex_state = 171}, - [2890] = {.lex_state = 171}, - [2891] = {.lex_state = 182}, - [2892] = {.lex_state = 171}, - [2893] = {.lex_state = 182}, - [2894] = {.lex_state = 182}, - [2895] = {.lex_state = 182}, - [2896] = {.lex_state = 171}, - [2897] = {.lex_state = 171}, - [2898] = {.lex_state = 171}, - [2899] = {.lex_state = 171}, - [2900] = {.lex_state = 171}, - [2901] = {.lex_state = 171}, - [2902] = {.lex_state = 171}, - [2903] = {.lex_state = 171}, - [2904] = {.lex_state = 171}, - [2905] = {.lex_state = 171}, - [2906] = {.lex_state = 171}, - [2907] = {.lex_state = 171}, - [2908] = {.lex_state = 171}, - [2909] = {.lex_state = 182}, - [2910] = {.lex_state = 182}, - [2911] = {.lex_state = 182}, - [2912] = {.lex_state = 171}, - [2913] = {.lex_state = 171}, - [2914] = {.lex_state = 171}, - [2915] = {.lex_state = 182}, - [2916] = {.lex_state = 171}, - [2917] = {.lex_state = 171}, - [2918] = {.lex_state = 171}, - [2919] = {.lex_state = 182}, - [2920] = {.lex_state = 182}, - [2921] = {.lex_state = 171}, - [2922] = {.lex_state = 182}, - [2923] = {.lex_state = 171}, - [2924] = {.lex_state = 182}, - [2925] = {.lex_state = 171}, - [2926] = {.lex_state = 182}, - [2927] = {.lex_state = 182}, - [2928] = {.lex_state = 171}, - [2929] = {.lex_state = 171}, - [2930] = {.lex_state = 182}, - [2931] = {.lex_state = 171}, - [2932] = {.lex_state = 171}, - [2933] = {.lex_state = 171}, - [2934] = {.lex_state = 171}, - [2935] = {.lex_state = 171}, - [2936] = {.lex_state = 171}, - [2937] = {.lex_state = 182}, - [2938] = {.lex_state = 171}, - [2939] = {.lex_state = 171}, - [2940] = {.lex_state = 171}, - [2941] = {.lex_state = 189, .external_lex_state = 21}, - [2942] = {.lex_state = 189, .external_lex_state = 21}, - [2943] = {.lex_state = 172}, - [2944] = {.lex_state = 189, .external_lex_state = 21}, - [2945] = {.lex_state = 189, .external_lex_state = 21}, - [2946] = {.lex_state = 189, .external_lex_state = 21}, - [2947] = {.lex_state = 189, .external_lex_state = 21}, - [2948] = {.lex_state = 189, .external_lex_state = 21}, - [2949] = {.lex_state = 189, .external_lex_state = 21}, - [2950] = {.lex_state = 189, .external_lex_state = 21}, - [2951] = {.lex_state = 189, .external_lex_state = 21}, - [2952] = {.lex_state = 189, .external_lex_state = 21}, - [2953] = {.lex_state = 189, .external_lex_state = 21}, - [2954] = {.lex_state = 189, .external_lex_state = 21}, - [2955] = {.lex_state = 189, .external_lex_state = 21}, - [2956] = {.lex_state = 189, .external_lex_state = 21}, - [2957] = {.lex_state = 189, .external_lex_state = 21}, - [2958] = {.lex_state = 189, .external_lex_state = 21}, - [2959] = {.lex_state = 189, .external_lex_state = 21}, - [2960] = {.lex_state = 189, .external_lex_state = 21}, - [2961] = {.lex_state = 189, .external_lex_state = 21}, - [2962] = {.lex_state = 189, .external_lex_state = 21}, - [2963] = {.lex_state = 189, .external_lex_state = 21}, - [2964] = {.lex_state = 189, .external_lex_state = 21}, - [2965] = {.lex_state = 189, .external_lex_state = 21}, - [2966] = {.lex_state = 189, .external_lex_state = 21}, - [2967] = {.lex_state = 189, .external_lex_state = 21}, - [2968] = {.lex_state = 189, .external_lex_state = 21}, - [2969] = {.lex_state = 189, .external_lex_state = 21}, - [2970] = {.lex_state = 189, .external_lex_state = 21}, - [2971] = {.lex_state = 189, .external_lex_state = 21}, - [2972] = {.lex_state = 189, .external_lex_state = 21}, - [2973] = {.lex_state = 188}, - [2974] = {.lex_state = 188}, - [2975] = {.lex_state = 188}, - [2976] = {.lex_state = 188}, - [2977] = {.lex_state = 188}, - [2978] = {.lex_state = 188}, - [2979] = {.lex_state = 188}, - [2980] = {.lex_state = 188}, - [2981] = {.lex_state = 188}, - [2982] = {.lex_state = 188}, - [2983] = {.lex_state = 188}, - [2984] = {.lex_state = 188}, - [2985] = {.lex_state = 188}, - [2986] = {.lex_state = 188}, - [2987] = {.lex_state = 188}, - [2988] = {.lex_state = 188}, - [2989] = {.lex_state = 188}, - [2990] = {.lex_state = 188}, - [2991] = {.lex_state = 188}, - [2992] = {.lex_state = 188}, - [2993] = {.lex_state = 188}, - [2994] = {.lex_state = 188}, - [2995] = {.lex_state = 188}, - [2996] = {.lex_state = 188}, - [2997] = {.lex_state = 188}, - [2998] = {.lex_state = 188}, - [2999] = {.lex_state = 176, .external_lex_state = 22}, - [3000] = {.lex_state = 188}, - [3001] = {.lex_state = 188}, - [3002] = {.lex_state = 188}, - [3003] = {.lex_state = 188}, - [3004] = {.lex_state = 176, .external_lex_state = 22}, - [3005] = {.lex_state = 188}, - [3006] = {.lex_state = 188}, - [3007] = {.lex_state = 188}, - [3008] = {.lex_state = 188}, - [3009] = {.lex_state = 188}, - [3010] = {.lex_state = 176, .external_lex_state = 22}, - [3011] = {.lex_state = 188}, - [3012] = {.lex_state = 176, .external_lex_state = 22}, - [3013] = {.lex_state = 188}, - [3014] = {.lex_state = 188}, - [3015] = {.lex_state = 188}, - [3016] = {.lex_state = 188}, - [3017] = {.lex_state = 188}, - [3018] = {.lex_state = 188}, - [3019] = {.lex_state = 188}, - [3020] = {.lex_state = 176, .external_lex_state = 22}, - [3021] = {.lex_state = 188}, - [3022] = {.lex_state = 188}, - [3023] = {.lex_state = 188}, - [3024] = {.lex_state = 188}, - [3025] = {.lex_state = 170}, - [3026] = {.lex_state = 188}, - [3027] = {.lex_state = 188}, - [3028] = {.lex_state = 176, .external_lex_state = 22}, - [3029] = {.lex_state = 188}, - [3030] = {.lex_state = 188}, - [3031] = {.lex_state = 176, .external_lex_state = 22}, - [3032] = {.lex_state = 188}, - [3033] = {.lex_state = 188}, - [3034] = {.lex_state = 188}, - [3035] = {.lex_state = 188}, - [3036] = {.lex_state = 188}, - [3037] = {.lex_state = 188}, - [3038] = {.lex_state = 188}, - [3039] = {.lex_state = 188}, - [3040] = {.lex_state = 188, .external_lex_state = 18}, - [3041] = {.lex_state = 188, .external_lex_state = 18}, - [3042] = {.lex_state = 188, .external_lex_state = 18}, - [3043] = {.lex_state = 189}, - [3044] = {.lex_state = 188, .external_lex_state = 18}, - [3045] = {.lex_state = 188, .external_lex_state = 18}, - [3046] = {.lex_state = 188, .external_lex_state = 18}, - [3047] = {.lex_state = 188, .external_lex_state = 18}, - [3048] = {.lex_state = 188, .external_lex_state = 18}, - [3049] = {.lex_state = 236}, - [3050] = {.lex_state = 188, .external_lex_state = 18}, - [3051] = {.lex_state = 189}, - [3052] = {.lex_state = 189}, - [3053] = {.lex_state = 236}, - [3054] = {.lex_state = 236}, - [3055] = {.lex_state = 188, .external_lex_state = 18}, - [3056] = {.lex_state = 188, .external_lex_state = 18}, - [3057] = {.lex_state = 188, .external_lex_state = 18}, - [3058] = {.lex_state = 188, .external_lex_state = 18}, - [3059] = {.lex_state = 236}, - [3060] = {.lex_state = 236}, - [3061] = {.lex_state = 236}, - [3062] = {.lex_state = 188, .external_lex_state = 18}, - [3063] = {.lex_state = 188, .external_lex_state = 18}, - [3064] = {.lex_state = 236}, - [3065] = {.lex_state = 188, .external_lex_state = 18}, - [3066] = {.lex_state = 188, .external_lex_state = 18}, - [3067] = {.lex_state = 236}, - [3068] = {.lex_state = 30, .external_lex_state = 17}, - [3069] = {.lex_state = 188, .external_lex_state = 18}, - [3070] = {.lex_state = 236}, - [3071] = {.lex_state = 188, .external_lex_state = 18}, - [3072] = {.lex_state = 189}, - [3073] = {.lex_state = 188, .external_lex_state = 18}, - [3074] = {.lex_state = 188, .external_lex_state = 18}, - [3075] = {.lex_state = 188, .external_lex_state = 18}, - [3076] = {.lex_state = 188, .external_lex_state = 18}, - [3077] = {.lex_state = 188, .external_lex_state = 18}, - [3078] = {.lex_state = 189}, - [3079] = {.lex_state = 188, .external_lex_state = 18}, - [3080] = {.lex_state = 188, .external_lex_state = 18}, - [3081] = {.lex_state = 188, .external_lex_state = 18}, - [3082] = {.lex_state = 188, .external_lex_state = 18}, - [3083] = {.lex_state = 176, .external_lex_state = 22}, - [3084] = {.lex_state = 30, .external_lex_state = 17}, - [3085] = {.lex_state = 29, .external_lex_state = 10}, - [3086] = {.lex_state = 29, .external_lex_state = 10}, - [3087] = {.lex_state = 30, .external_lex_state = 10}, - [3088] = {.lex_state = 29, .external_lex_state = 10}, - [3089] = {.lex_state = 188}, - [3090] = {.lex_state = 188}, - [3091] = {.lex_state = 29, .external_lex_state = 10}, - [3092] = {.lex_state = 29, .external_lex_state = 10}, - [3093] = {.lex_state = 176, .external_lex_state = 22}, - [3094] = {.lex_state = 176, .external_lex_state = 22}, - [3095] = {.lex_state = 176, .external_lex_state = 22}, - [3096] = {.lex_state = 176, .external_lex_state = 22}, - [3097] = {.lex_state = 176, .external_lex_state = 22}, - [3098] = {.lex_state = 176, .external_lex_state = 22}, - [3099] = {.lex_state = 176, .external_lex_state = 22}, - [3100] = {.lex_state = 176, .external_lex_state = 22}, - [3101] = {.lex_state = 176, .external_lex_state = 22}, - [3102] = {.lex_state = 176, .external_lex_state = 22}, - [3103] = {.lex_state = 30, .external_lex_state = 17}, - [3104] = {.lex_state = 176, .external_lex_state = 22}, - [3105] = {.lex_state = 176, .external_lex_state = 22}, - [3106] = {.lex_state = 176, .external_lex_state = 22}, - [3107] = {.lex_state = 176, .external_lex_state = 22}, - [3108] = {.lex_state = 176, .external_lex_state = 22}, - [3109] = {.lex_state = 176, .external_lex_state = 22}, - [3110] = {.lex_state = 176, .external_lex_state = 22}, - [3111] = {.lex_state = 176, .external_lex_state = 22}, - [3112] = {.lex_state = 176, .external_lex_state = 22}, - [3113] = {.lex_state = 176, .external_lex_state = 22}, - [3114] = {.lex_state = 176, .external_lex_state = 22}, - [3115] = {.lex_state = 176, .external_lex_state = 22}, - [3116] = {.lex_state = 176, .external_lex_state = 22}, - [3117] = {.lex_state = 176, .external_lex_state = 22}, - [3118] = {.lex_state = 30, .external_lex_state = 10}, - [3119] = {.lex_state = 30, .external_lex_state = 17}, - [3120] = {.lex_state = 30, .external_lex_state = 17}, - [3121] = {.lex_state = 30, .external_lex_state = 10}, - [3122] = {.lex_state = 30, .external_lex_state = 17}, - [3123] = {.lex_state = 30, .external_lex_state = 10}, - [3124] = {.lex_state = 176, .external_lex_state = 22}, - [3125] = {.lex_state = 30, .external_lex_state = 17}, - [3126] = {.lex_state = 30, .external_lex_state = 17}, - [3127] = {.lex_state = 30, .external_lex_state = 17}, - [3128] = {.lex_state = 30, .external_lex_state = 17}, - [3129] = {.lex_state = 186}, - [3130] = {.lex_state = 186}, - [3131] = {.lex_state = 30, .external_lex_state = 17}, - [3132] = {.lex_state = 186}, - [3133] = {.lex_state = 186}, - [3134] = {.lex_state = 233, .external_lex_state = 10}, - [3135] = {.lex_state = 30, .external_lex_state = 17}, - [3136] = {.lex_state = 30, .external_lex_state = 17}, - [3137] = {.lex_state = 30, .external_lex_state = 17}, - [3138] = {.lex_state = 233, .external_lex_state = 10}, - [3139] = {.lex_state = 233, .external_lex_state = 10}, - [3140] = {.lex_state = 30, .external_lex_state = 17}, - [3141] = {.lex_state = 30, .external_lex_state = 17}, - [3142] = {.lex_state = 30, .external_lex_state = 17}, - [3143] = {.lex_state = 29, .external_lex_state = 10}, - [3144] = {.lex_state = 30, .external_lex_state = 17}, - [3145] = {.lex_state = 30, .external_lex_state = 17}, - [3146] = {.lex_state = 30, .external_lex_state = 17}, - [3147] = {.lex_state = 30, .external_lex_state = 17}, - [3148] = {.lex_state = 30, .external_lex_state = 17}, - [3149] = {.lex_state = 30, .external_lex_state = 17}, - [3150] = {.lex_state = 29, .external_lex_state = 10}, - [3151] = {.lex_state = 30, .external_lex_state = 17}, - [3152] = {.lex_state = 30, .external_lex_state = 17}, - [3153] = {.lex_state = 30, .external_lex_state = 17}, - [3154] = {.lex_state = 30, .external_lex_state = 17}, - [3155] = {.lex_state = 30, .external_lex_state = 17}, - [3156] = {.lex_state = 30, .external_lex_state = 17}, - [3157] = {.lex_state = 30, .external_lex_state = 17}, - [3158] = {.lex_state = 30, .external_lex_state = 17}, - [3159] = {.lex_state = 30, .external_lex_state = 17}, - [3160] = {.lex_state = 186}, - [3161] = {.lex_state = 30, .external_lex_state = 17}, - [3162] = {.lex_state = 30, .external_lex_state = 17}, - [3163] = {.lex_state = 30, .external_lex_state = 17}, - [3164] = {.lex_state = 30, .external_lex_state = 17}, - [3165] = {.lex_state = 30, .external_lex_state = 17}, - [3166] = {.lex_state = 30, .external_lex_state = 17}, - [3167] = {.lex_state = 186}, - [3168] = {.lex_state = 30, .external_lex_state = 17}, - [3169] = {.lex_state = 233, .external_lex_state = 10}, - [3170] = {.lex_state = 233, .external_lex_state = 10}, - [3171] = {.lex_state = 187, .external_lex_state = 18}, - [3172] = {.lex_state = 30, .external_lex_state = 10}, - [3173] = {.lex_state = 30, .external_lex_state = 10}, - [3174] = {.lex_state = 186}, - [3175] = {.lex_state = 190}, - [3176] = {.lex_state = 190}, - [3177] = {.lex_state = 187}, - [3178] = {.lex_state = 190}, - [3179] = {.lex_state = 233, .external_lex_state = 10}, - [3180] = {.lex_state = 233, .external_lex_state = 10}, - [3181] = {.lex_state = 190}, - [3182] = {.lex_state = 236, .external_lex_state = 18}, - [3183] = {.lex_state = 30, .external_lex_state = 10}, - [3184] = {.lex_state = 190}, - [3185] = {.lex_state = 190}, - [3186] = {.lex_state = 190}, - [3187] = {.lex_state = 190}, - [3188] = {.lex_state = 190}, - [3189] = {.lex_state = 190}, - [3190] = {.lex_state = 190}, - [3191] = {.lex_state = 30, .external_lex_state = 10}, - [3192] = {.lex_state = 190}, - [3193] = {.lex_state = 30, .external_lex_state = 10}, - [3194] = {.lex_state = 190}, - [3195] = {.lex_state = 190}, - [3196] = {.lex_state = 190}, - [3197] = {.lex_state = 233, .external_lex_state = 10}, - [3198] = {.lex_state = 190}, - [3199] = {.lex_state = 190}, - [3200] = {.lex_state = 190}, - [3201] = {.lex_state = 190}, - [3202] = {.lex_state = 233, .external_lex_state = 10}, - [3203] = {.lex_state = 236}, - [3204] = {.lex_state = 236, .external_lex_state = 18}, - [3205] = {.lex_state = 233, .external_lex_state = 10}, - [3206] = {.lex_state = 30, .external_lex_state = 10}, - [3207] = {.lex_state = 190}, - [3208] = {.lex_state = 190}, - [3209] = {.lex_state = 233, .external_lex_state = 10}, - [3210] = {.lex_state = 190}, - [3211] = {.lex_state = 190}, - [3212] = {.lex_state = 30, .external_lex_state = 10}, - [3213] = {.lex_state = 233, .external_lex_state = 10}, - [3214] = {.lex_state = 187}, - [3215] = {.lex_state = 30, .external_lex_state = 10}, - [3216] = {.lex_state = 30, .external_lex_state = 10}, - [3217] = {.lex_state = 190}, - [3218] = {.lex_state = 190}, - [3219] = {.lex_state = 233, .external_lex_state = 10}, - [3220] = {.lex_state = 233, .external_lex_state = 10}, - [3221] = {.lex_state = 233, .external_lex_state = 10}, - [3222] = {.lex_state = 190}, - [3223] = {.lex_state = 190}, - [3224] = {.lex_state = 236, .external_lex_state = 18}, - [3225] = {.lex_state = 190}, - [3226] = {.lex_state = 190}, - [3227] = {.lex_state = 184, .external_lex_state = 19}, - [3228] = {.lex_state = 176}, - [3229] = {.lex_state = 190}, - [3230] = {.lex_state = 190}, - [3231] = {.lex_state = 178, .external_lex_state = 20}, - [3232] = {.lex_state = 190}, - [3233] = {.lex_state = 233, .external_lex_state = 10}, - [3234] = {.lex_state = 236, .external_lex_state = 18}, - [3235] = {.lex_state = 190}, - [3236] = {.lex_state = 190}, - [3237] = {.lex_state = 190}, - [3238] = {.lex_state = 190}, - [3239] = {.lex_state = 190}, - [3240] = {.lex_state = 190}, - [3241] = {.lex_state = 190}, - [3242] = {.lex_state = 190}, - [3243] = {.lex_state = 233, .external_lex_state = 10}, - [3244] = {.lex_state = 178, .external_lex_state = 20}, - [3245] = {.lex_state = 233, .external_lex_state = 10}, - [3246] = {.lex_state = 190}, - [3247] = {.lex_state = 190}, - [3248] = {.lex_state = 190}, - [3249] = {.lex_state = 176}, - [3250] = {.lex_state = 187}, - [3251] = {.lex_state = 177, .external_lex_state = 18}, - [3252] = {.lex_state = 176}, - [3253] = {.lex_state = 190}, - [3254] = {.lex_state = 190}, - [3255] = {.lex_state = 190}, - [3256] = {.lex_state = 190}, - [3257] = {.lex_state = 233, .external_lex_state = 10}, - [3258] = {.lex_state = 176}, - [3259] = {.lex_state = 178, .external_lex_state = 20}, - [3260] = {.lex_state = 190}, - [3261] = {.lex_state = 233, .external_lex_state = 10}, - [3262] = {.lex_state = 177}, - [3263] = {.lex_state = 184, .external_lex_state = 11}, - [3264] = {.lex_state = 169, .external_lex_state = 19}, - [3265] = {.lex_state = 184, .external_lex_state = 11}, - [3266] = {.lex_state = 184, .external_lex_state = 11}, - [3267] = {.lex_state = 169, .external_lex_state = 19}, - [3268] = {.lex_state = 184, .external_lex_state = 11}, - [3269] = {.lex_state = 176, .external_lex_state = 18}, - [3270] = {.lex_state = 176, .external_lex_state = 18}, - [3271] = {.lex_state = 177}, - [3272] = {.lex_state = 177}, - [3273] = {.lex_state = 169, .external_lex_state = 19}, - [3274] = {.lex_state = 176, .external_lex_state = 18}, - [3275] = {.lex_state = 169, .external_lex_state = 19}, - [3276] = {.lex_state = 184, .external_lex_state = 11}, - [3277] = {.lex_state = 177}, - [3278] = {.lex_state = 177}, - [3279] = {.lex_state = 169, .external_lex_state = 19}, - [3280] = {.lex_state = 184, .external_lex_state = 11}, - [3281] = {.lex_state = 184, .external_lex_state = 11}, - [3282] = {.lex_state = 169, .external_lex_state = 19}, - [3283] = {.lex_state = 169, .external_lex_state = 19}, - [3284] = {.lex_state = 184, .external_lex_state = 11}, - [3285] = {.lex_state = 184, .external_lex_state = 11}, - [3286] = {.lex_state = 236}, - [3287] = {.lex_state = 169, .external_lex_state = 19}, - [3288] = {.lex_state = 169, .external_lex_state = 19}, - [3289] = {.lex_state = 184, .external_lex_state = 11}, - [3290] = {.lex_state = 176, .external_lex_state = 18}, - [3291] = {.lex_state = 177}, - [3292] = {.lex_state = 184, .external_lex_state = 11}, - [3293] = {.lex_state = 176, .external_lex_state = 18}, - [3294] = {.lex_state = 176, .external_lex_state = 18}, - [3295] = {.lex_state = 169, .external_lex_state = 19}, - [3296] = {.lex_state = 184, .external_lex_state = 11}, - [3297] = {.lex_state = 177}, - [3298] = {.lex_state = 177}, - [3299] = {.lex_state = 177}, - [3300] = {.lex_state = 189, .external_lex_state = 18}, - [3301] = {.lex_state = 169, .external_lex_state = 19}, - [3302] = {.lex_state = 184, .external_lex_state = 11}, - [3303] = {.lex_state = 177}, - [3304] = {.lex_state = 176, .external_lex_state = 18}, - [3305] = {.lex_state = 177}, - [3306] = {.lex_state = 176, .external_lex_state = 18}, - [3307] = {.lex_state = 169, .external_lex_state = 19}, - [3308] = {.lex_state = 169, .external_lex_state = 19}, - [3309] = {.lex_state = 184, .external_lex_state = 11}, - [3310] = {.lex_state = 169, .external_lex_state = 19}, - [3311] = {.lex_state = 176, .external_lex_state = 18}, - [3312] = {.lex_state = 177}, - [3313] = {.lex_state = 184, .external_lex_state = 11}, - [3314] = {.lex_state = 190}, - [3315] = {.lex_state = 169, .external_lex_state = 19}, - [3316] = {.lex_state = 169, .external_lex_state = 19}, - [3317] = {.lex_state = 184, .external_lex_state = 11}, - [3318] = {.lex_state = 169, .external_lex_state = 19}, - [3319] = {.lex_state = 184, .external_lex_state = 11}, - [3320] = {.lex_state = 169, .external_lex_state = 19}, - [3321] = {.lex_state = 184, .external_lex_state = 11}, - [3322] = {.lex_state = 169, .external_lex_state = 19}, - [3323] = {.lex_state = 184, .external_lex_state = 11}, - [3324] = {.lex_state = 169, .external_lex_state = 19}, - [3325] = {.lex_state = 176, .external_lex_state = 18}, - [3326] = {.lex_state = 169, .external_lex_state = 19}, - [3327] = {.lex_state = 184, .external_lex_state = 11}, - [3328] = {.lex_state = 177}, - [3329] = {.lex_state = 184, .external_lex_state = 11}, - [3330] = {.lex_state = 169, .external_lex_state = 19}, - [3331] = {.lex_state = 178, .external_lex_state = 20}, - [3332] = {.lex_state = 176, .external_lex_state = 18}, - [3333] = {.lex_state = 177}, - [3334] = {.lex_state = 169, .external_lex_state = 19}, - [3335] = {.lex_state = 169, .external_lex_state = 19}, - [3336] = {.lex_state = 169, .external_lex_state = 19}, - [3337] = {.lex_state = 184, .external_lex_state = 11}, - [3338] = {.lex_state = 176, .external_lex_state = 18}, - [3339] = {.lex_state = 177}, - [3340] = {.lex_state = 184, .external_lex_state = 11}, - [3341] = {.lex_state = 184, .external_lex_state = 11}, - [3342] = {.lex_state = 169, .external_lex_state = 19}, - [3343] = {.lex_state = 184, .external_lex_state = 11}, - [3344] = {.lex_state = 169, .external_lex_state = 19}, - [3345] = {.lex_state = 184, .external_lex_state = 11}, - [3346] = {.lex_state = 177}, - [3347] = {.lex_state = 176, .external_lex_state = 18}, - [3348] = {.lex_state = 169, .external_lex_state = 19}, - [3349] = {.lex_state = 184, .external_lex_state = 11}, - [3350] = {.lex_state = 169, .external_lex_state = 19}, - [3351] = {.lex_state = 176, .external_lex_state = 18}, - [3352] = {.lex_state = 184, .external_lex_state = 11}, - [3353] = {.lex_state = 169, .external_lex_state = 19}, - [3354] = {.lex_state = 184, .external_lex_state = 11}, - [3355] = {.lex_state = 169, .external_lex_state = 19}, - [3356] = {.lex_state = 184, .external_lex_state = 11}, - [3357] = {.lex_state = 169, .external_lex_state = 19}, - [3358] = {.lex_state = 184, .external_lex_state = 11}, - [3359] = {.lex_state = 169, .external_lex_state = 19}, - [3360] = {.lex_state = 184, .external_lex_state = 11}, - [3361] = {.lex_state = 169, .external_lex_state = 19}, - [3362] = {.lex_state = 236}, - [3363] = {.lex_state = 169, .external_lex_state = 19}, - [3364] = {.lex_state = 184, .external_lex_state = 11}, - [3365] = {.lex_state = 184, .external_lex_state = 11}, - [3366] = {.lex_state = 169, .external_lex_state = 19}, - [3367] = {.lex_state = 184, .external_lex_state = 11}, - [3368] = {.lex_state = 177}, - [3369] = {.lex_state = 169, .external_lex_state = 19}, - [3370] = {.lex_state = 184, .external_lex_state = 11}, - [3371] = {.lex_state = 176, .external_lex_state = 18}, - [3372] = {.lex_state = 177}, - [3373] = {.lex_state = 169, .external_lex_state = 19}, - [3374] = {.lex_state = 169, .external_lex_state = 19}, - [3375] = {.lex_state = 184, .external_lex_state = 11}, - [3376] = {.lex_state = 236}, - [3377] = {.lex_state = 169, .external_lex_state = 19}, - [3378] = {.lex_state = 184, .external_lex_state = 11}, - [3379] = {.lex_state = 189}, - [3380] = {.lex_state = 190}, - [3381] = {.lex_state = 176, .external_lex_state = 18}, - [3382] = {.lex_state = 169, .external_lex_state = 19}, - [3383] = {.lex_state = 184, .external_lex_state = 11}, - [3384] = {.lex_state = 177}, - [3385] = {.lex_state = 176, .external_lex_state = 18}, - [3386] = {.lex_state = 177}, - [3387] = {.lex_state = 169, .external_lex_state = 19}, - [3388] = {.lex_state = 176, .external_lex_state = 18}, - [3389] = {.lex_state = 178, .external_lex_state = 20}, - [3390] = {.lex_state = 236}, - [3391] = {.lex_state = 169, .external_lex_state = 19}, - [3392] = {.lex_state = 184, .external_lex_state = 11}, - [3393] = {.lex_state = 189}, - [3394] = {.lex_state = 190}, - [3395] = {.lex_state = 184, .external_lex_state = 11}, - [3396] = {.lex_state = 177}, - [3397] = {.lex_state = 236}, - [3398] = {.lex_state = 169, .external_lex_state = 19}, - [3399] = {.lex_state = 236}, - [3400] = {.lex_state = 169, .external_lex_state = 19}, - [3401] = {.lex_state = 184, .external_lex_state = 11}, - [3402] = {.lex_state = 169, .external_lex_state = 19}, - [3403] = {.lex_state = 184, .external_lex_state = 11}, - [3404] = {.lex_state = 184, .external_lex_state = 11}, - [3405] = {.lex_state = 236}, - [3406] = {.lex_state = 184, .external_lex_state = 11}, - [3407] = {.lex_state = 189}, - [3408] = {.lex_state = 176, .external_lex_state = 18}, - [3409] = {.lex_state = 169, .external_lex_state = 19}, - [3410] = {.lex_state = 184, .external_lex_state = 11}, - [3411] = {.lex_state = 184, .external_lex_state = 11}, - [3412] = {.lex_state = 189}, - [3413] = {.lex_state = 236}, - [3414] = {.lex_state = 236}, - [3415] = {.lex_state = 169, .external_lex_state = 19}, - [3416] = {.lex_state = 189}, - [3417] = {.lex_state = 169, .external_lex_state = 19}, - [3418] = {.lex_state = 184, .external_lex_state = 11}, - [3419] = {.lex_state = 236}, - [3420] = {.lex_state = 169, .external_lex_state = 19}, - [3421] = {.lex_state = 189}, - [3422] = {.lex_state = 236}, - [3423] = {.lex_state = 189}, - [3424] = {.lex_state = 184, .external_lex_state = 11}, - [3425] = {.lex_state = 189}, - [3426] = {.lex_state = 176, .external_lex_state = 18}, - [3427] = {.lex_state = 177}, - [3428] = {.lex_state = 176, .external_lex_state = 18}, - [3429] = {.lex_state = 236}, - [3430] = {.lex_state = 176, .external_lex_state = 18}, - [3431] = {.lex_state = 169, .external_lex_state = 19}, - [3432] = {.lex_state = 184, .external_lex_state = 11}, - [3433] = {.lex_state = 177}, - [3434] = {.lex_state = 169, .external_lex_state = 19}, - [3435] = {.lex_state = 177}, - [3436] = {.lex_state = 184, .external_lex_state = 11}, - [3437] = {.lex_state = 176, .external_lex_state = 18}, - [3438] = {.lex_state = 169, .external_lex_state = 19}, - [3439] = {.lex_state = 176, .external_lex_state = 18}, - [3440] = {.lex_state = 177}, - [3441] = {.lex_state = 184, .external_lex_state = 11}, - [3442] = {.lex_state = 177}, - [3443] = {.lex_state = 178, .external_lex_state = 20}, - [3444] = {.lex_state = 176, .external_lex_state = 18}, - [3445] = {.lex_state = 176, .external_lex_state = 18}, - [3446] = {.lex_state = 177}, - [3447] = {.lex_state = 169, .external_lex_state = 19}, - [3448] = {.lex_state = 169, .external_lex_state = 19}, - [3449] = {.lex_state = 184, .external_lex_state = 11}, - [3450] = {.lex_state = 184, .external_lex_state = 11}, - [3451] = {.lex_state = 184, .external_lex_state = 11}, - [3452] = {.lex_state = 176, .external_lex_state = 18}, - [3453] = {.lex_state = 177}, - [3454] = {.lex_state = 177}, - [3455] = {.lex_state = 169, .external_lex_state = 19}, - [3456] = {.lex_state = 184, .external_lex_state = 11}, - [3457] = {.lex_state = 169, .external_lex_state = 19}, - [3458] = {.lex_state = 184, .external_lex_state = 11}, - [3459] = {.lex_state = 176, .external_lex_state = 18}, - [3460] = {.lex_state = 169, .external_lex_state = 19}, - [3461] = {.lex_state = 169, .external_lex_state = 19}, - [3462] = {.lex_state = 184, .external_lex_state = 11}, - [3463] = {.lex_state = 177}, - [3464] = {.lex_state = 184, .external_lex_state = 11}, - [3465] = {.lex_state = 176, .external_lex_state = 18}, - [3466] = {.lex_state = 177}, - [3467] = {.lex_state = 169, .external_lex_state = 19}, - [3468] = {.lex_state = 184, .external_lex_state = 11}, - [3469] = {.lex_state = 169, .external_lex_state = 19}, - [3470] = {.lex_state = 189, .external_lex_state = 18}, - [3471] = {.lex_state = 169, .external_lex_state = 19}, - [3472] = {.lex_state = 189}, - [3473] = {.lex_state = 177}, - [3474] = {.lex_state = 169, .external_lex_state = 19}, - [3475] = {.lex_state = 184, .external_lex_state = 11}, - [3476] = {.lex_state = 169, .external_lex_state = 19}, - [3477] = {.lex_state = 184, .external_lex_state = 11}, - [3478] = {.lex_state = 184, .external_lex_state = 11}, - [3479] = {.lex_state = 236}, - [3480] = {.lex_state = 176, .external_lex_state = 18}, - [3481] = {.lex_state = 189}, - [3482] = {.lex_state = 186}, - [3483] = {.lex_state = 169, .external_lex_state = 19}, - [3484] = {.lex_state = 169, .external_lex_state = 19}, - [3485] = {.lex_state = 169, .external_lex_state = 19}, - [3486] = {.lex_state = 186}, - [3487] = {.lex_state = 169, .external_lex_state = 19}, - [3488] = {.lex_state = 169, .external_lex_state = 19}, - [3489] = {.lex_state = 169, .external_lex_state = 19}, - [3490] = {.lex_state = 186}, - [3491] = {.lex_state = 169, .external_lex_state = 19}, - [3492] = {.lex_state = 189}, - [3493] = {.lex_state = 169, .external_lex_state = 19}, - [3494] = {.lex_state = 169, .external_lex_state = 19}, - [3495] = {.lex_state = 169, .external_lex_state = 19}, - [3496] = {.lex_state = 169, .external_lex_state = 19}, - [3497] = {.lex_state = 169, .external_lex_state = 19}, - [3498] = {.lex_state = 169, .external_lex_state = 19}, - [3499] = {.lex_state = 169, .external_lex_state = 19}, - [3500] = {.lex_state = 189}, - [3501] = {.lex_state = 169, .external_lex_state = 19}, - [3502] = {.lex_state = 189}, - [3503] = {.lex_state = 189}, - [3504] = {.lex_state = 169, .external_lex_state = 19}, - [3505] = {.lex_state = 169, .external_lex_state = 19}, - [3506] = {.lex_state = 169, .external_lex_state = 19}, - [3507] = {.lex_state = 169, .external_lex_state = 19}, - [3508] = {.lex_state = 169, .external_lex_state = 19}, - [3509] = {.lex_state = 169, .external_lex_state = 19}, - [3510] = {.lex_state = 169, .external_lex_state = 19}, - [3511] = {.lex_state = 169, .external_lex_state = 19}, - [3512] = {.lex_state = 177}, - [3513] = {.lex_state = 169, .external_lex_state = 19}, - [3514] = {.lex_state = 169, .external_lex_state = 19}, - [3515] = {.lex_state = 169, .external_lex_state = 19}, - [3516] = {.lex_state = 189}, - [3517] = {.lex_state = 169, .external_lex_state = 19}, - [3518] = {.lex_state = 186}, - [3519] = {.lex_state = 169, .external_lex_state = 19}, - [3520] = {.lex_state = 189}, - [3521] = {.lex_state = 169, .external_lex_state = 19}, - [3522] = {.lex_state = 189}, - [3523] = {.lex_state = 189}, - [3524] = {.lex_state = 169, .external_lex_state = 19}, - [3525] = {.lex_state = 189}, - [3526] = {.lex_state = 189}, - [3527] = {.lex_state = 189}, - [3528] = {.lex_state = 189}, - [3529] = {.lex_state = 189}, - [3530] = {.lex_state = 189}, - [3531] = {.lex_state = 189}, - [3532] = {.lex_state = 189}, - [3533] = {.lex_state = 189}, - [3534] = {.lex_state = 189}, - [3535] = {.lex_state = 189}, - [3536] = {.lex_state = 189}, - [3537] = {.lex_state = 178, .external_lex_state = 20}, - [3538] = {.lex_state = 189}, - [3539] = {.lex_state = 189}, - [3540] = {.lex_state = 189}, - [3541] = {.lex_state = 189}, - [3542] = {.lex_state = 189}, - [3543] = {.lex_state = 189}, - [3544] = {.lex_state = 189}, - [3545] = {.lex_state = 186}, - [3546] = {.lex_state = 186}, - [3547] = {.lex_state = 189}, - [3548] = {.lex_state = 189}, - [3549] = {.lex_state = 189}, - [3550] = {.lex_state = 189}, - [3551] = {.lex_state = 189}, - [3552] = {.lex_state = 186}, - [3553] = {.lex_state = 189}, - [3554] = {.lex_state = 189}, - [3555] = {.lex_state = 189}, - [3556] = {.lex_state = 189}, - [3557] = {.lex_state = 189}, - [3558] = {.lex_state = 189}, - [3559] = {.lex_state = 189}, - [3560] = {.lex_state = 189}, - [3561] = {.lex_state = 189}, - [3562] = {.lex_state = 189}, - [3563] = {.lex_state = 178, .external_lex_state = 20}, - [3564] = {.lex_state = 189}, - [3565] = {.lex_state = 189}, - [3566] = {.lex_state = 186}, - [3567] = {.lex_state = 186}, - [3568] = {.lex_state = 189}, - [3569] = {.lex_state = 189}, - [3570] = {.lex_state = 189}, - [3571] = {.lex_state = 189}, - [3572] = {.lex_state = 189}, - [3573] = {.lex_state = 189}, - [3574] = {.lex_state = 189}, - [3575] = {.lex_state = 189}, - [3576] = {.lex_state = 189}, - [3577] = {.lex_state = 189}, - [3578] = {.lex_state = 189}, - [3579] = {.lex_state = 189}, - [3580] = {.lex_state = 189}, - [3581] = {.lex_state = 189}, - [3582] = {.lex_state = 189}, - [3583] = {.lex_state = 189}, - [3584] = {.lex_state = 189}, - [3585] = {.lex_state = 189}, - [3586] = {.lex_state = 189}, - [3587] = {.lex_state = 189}, - [3588] = {.lex_state = 189}, - [3589] = {.lex_state = 189}, - [3590] = {.lex_state = 189}, - [3591] = {.lex_state = 189}, - [3592] = {.lex_state = 186}, - [3593] = {.lex_state = 189}, - [3594] = {.lex_state = 189}, - [3595] = {.lex_state = 177}, - [3596] = {.lex_state = 186}, - [3597] = {.lex_state = 169, .external_lex_state = 19}, - [3598] = {.lex_state = 186}, - [3599] = {.lex_state = 169, .external_lex_state = 19}, - [3600] = {.lex_state = 186}, - [3601] = {.lex_state = 236}, - [3602] = {.lex_state = 177}, - [3603] = {.lex_state = 186}, - [3604] = {.lex_state = 189}, - [3605] = {.lex_state = 186}, - [3606] = {.lex_state = 169, .external_lex_state = 19}, - [3607] = {.lex_state = 186}, - [3608] = {.lex_state = 189}, - [3609] = {.lex_state = 236}, - [3610] = {.lex_state = 236}, - [3611] = {.lex_state = 176}, - [3612] = {.lex_state = 169, .external_lex_state = 11}, - [3613] = {.lex_state = 169, .external_lex_state = 11}, - [3614] = {.lex_state = 176}, - [3615] = {.lex_state = 169, .external_lex_state = 11}, - [3616] = {.lex_state = 178, .external_lex_state = 14}, - [3617] = {.lex_state = 176}, - [3618] = {.lex_state = 236}, - [3619] = {.lex_state = 176}, - [3620] = {.lex_state = 236}, - [3621] = {.lex_state = 176}, - [3622] = {.lex_state = 236}, - [3623] = {.lex_state = 236}, - [3624] = {.lex_state = 169, .external_lex_state = 11}, - [3625] = {.lex_state = 236}, - [3626] = {.lex_state = 236}, - [3627] = {.lex_state = 236}, - [3628] = {.lex_state = 236}, - [3629] = {.lex_state = 236}, - [3630] = {.lex_state = 236}, - [3631] = {.lex_state = 176}, - [3632] = {.lex_state = 236}, - [3633] = {.lex_state = 236}, - [3634] = {.lex_state = 169, .external_lex_state = 11}, - [3635] = {.lex_state = 236}, - [3636] = {.lex_state = 236}, - [3637] = {.lex_state = 169, .external_lex_state = 11}, - [3638] = {.lex_state = 236}, - [3639] = {.lex_state = 236}, - [3640] = {.lex_state = 169, .external_lex_state = 11}, - [3641] = {.lex_state = 186}, - [3642] = {.lex_state = 176}, - [3643] = {.lex_state = 236}, - [3644] = {.lex_state = 186}, - [3645] = {.lex_state = 236}, - [3646] = {.lex_state = 236}, - [3647] = {.lex_state = 236}, - [3648] = {.lex_state = 236}, - [3649] = {.lex_state = 236}, - [3650] = {.lex_state = 236}, - [3651] = {.lex_state = 176}, - [3652] = {.lex_state = 236}, - [3653] = {.lex_state = 236}, - [3654] = {.lex_state = 236}, - [3655] = {.lex_state = 236}, - [3656] = {.lex_state = 176}, - [3657] = {.lex_state = 186}, - [3658] = {.lex_state = 186}, - [3659] = {.lex_state = 169, .external_lex_state = 11}, - [3660] = {.lex_state = 236}, - [3661] = {.lex_state = 236}, - [3662] = {.lex_state = 169, .external_lex_state = 11}, - [3663] = {.lex_state = 186}, - [3664] = {.lex_state = 236}, - [3665] = {.lex_state = 169, .external_lex_state = 11}, - [3666] = {.lex_state = 236}, - [3667] = {.lex_state = 236}, - [3668] = {.lex_state = 176}, - [3669] = {.lex_state = 236}, - [3670] = {.lex_state = 169, .external_lex_state = 11}, - [3671] = {.lex_state = 169, .external_lex_state = 11}, - [3672] = {.lex_state = 236}, - [3673] = {.lex_state = 169, .external_lex_state = 11}, - [3674] = {.lex_state = 176}, - [3675] = {.lex_state = 236}, - [3676] = {.lex_state = 236}, - [3677] = {.lex_state = 236}, - [3678] = {.lex_state = 169, .external_lex_state = 11}, - [3679] = {.lex_state = 236}, - [3680] = {.lex_state = 169, .external_lex_state = 11}, - [3681] = {.lex_state = 176}, - [3682] = {.lex_state = 236}, - [3683] = {.lex_state = 236}, - [3684] = {.lex_state = 176}, - [3685] = {.lex_state = 169, .external_lex_state = 11}, - [3686] = {.lex_state = 236}, - [3687] = {.lex_state = 169, .external_lex_state = 11}, - [3688] = {.lex_state = 236}, - [3689] = {.lex_state = 176}, - [3690] = {.lex_state = 176}, - [3691] = {.lex_state = 176}, - [3692] = {.lex_state = 236}, - [3693] = {.lex_state = 176}, - [3694] = {.lex_state = 236}, - [3695] = {.lex_state = 169, .external_lex_state = 11}, - [3696] = {.lex_state = 236}, - [3697] = {.lex_state = 236}, - [3698] = {.lex_state = 236}, - [3699] = {.lex_state = 169, .external_lex_state = 11}, - [3700] = {.lex_state = 236}, - [3701] = {.lex_state = 236}, - [3702] = {.lex_state = 176}, - [3703] = {.lex_state = 176}, - [3704] = {.lex_state = 169, .external_lex_state = 11}, - [3705] = {.lex_state = 169, .external_lex_state = 11}, - [3706] = {.lex_state = 236}, - [3707] = {.lex_state = 176}, - [3708] = {.lex_state = 236}, - [3709] = {.lex_state = 236, .external_lex_state = 23}, - [3710] = {.lex_state = 186}, - [3711] = {.lex_state = 236}, - [3712] = {.lex_state = 176}, - [3713] = {.lex_state = 236}, - [3714] = {.lex_state = 169, .external_lex_state = 11}, - [3715] = {.lex_state = 169, .external_lex_state = 11}, - [3716] = {.lex_state = 236}, - [3717] = {.lex_state = 236}, - [3718] = {.lex_state = 169, .external_lex_state = 11}, - [3719] = {.lex_state = 169, .external_lex_state = 11}, - [3720] = {.lex_state = 236}, - [3721] = {.lex_state = 169, .external_lex_state = 11}, - [3722] = {.lex_state = 236}, - [3723] = {.lex_state = 169, .external_lex_state = 11}, - [3724] = {.lex_state = 169, .external_lex_state = 11}, - [3725] = {.lex_state = 236}, - [3726] = {.lex_state = 236}, - [3727] = {.lex_state = 169, .external_lex_state = 11}, - [3728] = {.lex_state = 176}, - [3729] = {.lex_state = 236}, - [3730] = {.lex_state = 236}, - [3731] = {.lex_state = 236}, - [3732] = {.lex_state = 186}, - [3733] = {.lex_state = 186}, - [3734] = {.lex_state = 169, .external_lex_state = 11}, - [3735] = {.lex_state = 236}, - [3736] = {.lex_state = 169, .external_lex_state = 11}, - [3737] = {.lex_state = 236}, - [3738] = {.lex_state = 169, .external_lex_state = 11}, - [3739] = {.lex_state = 186}, - [3740] = {.lex_state = 176}, - [3741] = {.lex_state = 236}, - [3742] = {.lex_state = 236}, - [3743] = {.lex_state = 169, .external_lex_state = 11}, - [3744] = {.lex_state = 236}, - [3745] = {.lex_state = 176}, - [3746] = {.lex_state = 236}, - [3747] = {.lex_state = 236}, - [3748] = {.lex_state = 169, .external_lex_state = 11}, - [3749] = {.lex_state = 176}, - [3750] = {.lex_state = 169, .external_lex_state = 11}, - [3751] = {.lex_state = 176}, - [3752] = {.lex_state = 169, .external_lex_state = 11}, - [3753] = {.lex_state = 236}, - [3754] = {.lex_state = 236}, - [3755] = {.lex_state = 169, .external_lex_state = 11}, - [3756] = {.lex_state = 236, .external_lex_state = 23}, - [3757] = {.lex_state = 169, .external_lex_state = 11}, - [3758] = {.lex_state = 178, .external_lex_state = 14}, - [3759] = {.lex_state = 169, .external_lex_state = 11}, - [3760] = {.lex_state = 236}, - [3761] = {.lex_state = 169, .external_lex_state = 11}, - [3762] = {.lex_state = 236}, - [3763] = {.lex_state = 236}, - [3764] = {.lex_state = 186}, - [3765] = {.lex_state = 176}, - [3766] = {.lex_state = 236}, - [3767] = {.lex_state = 236}, - [3768] = {.lex_state = 236}, - [3769] = {.lex_state = 236}, - [3770] = {.lex_state = 236}, - [3771] = {.lex_state = 169, .external_lex_state = 11}, - [3772] = {.lex_state = 236}, - [3773] = {.lex_state = 169, .external_lex_state = 11}, - [3774] = {.lex_state = 236}, - [3775] = {.lex_state = 236}, - [3776] = {.lex_state = 169, .external_lex_state = 11}, - [3777] = {.lex_state = 176}, - [3778] = {.lex_state = 186}, - [3779] = {.lex_state = 236}, - [3780] = {.lex_state = 169, .external_lex_state = 11}, - [3781] = {.lex_state = 169, .external_lex_state = 11}, - [3782] = {.lex_state = 236}, - [3783] = {.lex_state = 176}, - [3784] = {.lex_state = 169, .external_lex_state = 11}, - [3785] = {.lex_state = 236}, - [3786] = {.lex_state = 236}, - [3787] = {.lex_state = 169, .external_lex_state = 11}, - [3788] = {.lex_state = 176}, - [3789] = {.lex_state = 236}, - [3790] = {.lex_state = 169, .external_lex_state = 11}, - [3791] = {.lex_state = 169, .external_lex_state = 11}, - [3792] = {.lex_state = 236}, - [3793] = {.lex_state = 176}, - [3794] = {.lex_state = 176}, - [3795] = {.lex_state = 169, .external_lex_state = 11}, - [3796] = {.lex_state = 169, .external_lex_state = 11}, - [3797] = {.lex_state = 169, .external_lex_state = 11}, - [3798] = {.lex_state = 176}, - [3799] = {.lex_state = 169, .external_lex_state = 11}, - [3800] = {.lex_state = 236, .external_lex_state = 23}, - [3801] = {.lex_state = 236}, - [3802] = {.lex_state = 236}, - [3803] = {.lex_state = 176}, - [3804] = {.lex_state = 176}, - [3805] = {.lex_state = 236}, - [3806] = {.lex_state = 169, .external_lex_state = 11}, - [3807] = {.lex_state = 176}, - [3808] = {.lex_state = 169, .external_lex_state = 11}, - [3809] = {.lex_state = 236}, - [3810] = {.lex_state = 236}, - [3811] = {.lex_state = 176}, - [3812] = {.lex_state = 169, .external_lex_state = 11}, - [3813] = {.lex_state = 176}, - [3814] = {.lex_state = 169, .external_lex_state = 11}, - [3815] = {.lex_state = 169, .external_lex_state = 11}, - [3816] = {.lex_state = 169, .external_lex_state = 11}, - [3817] = {.lex_state = 236}, - [3818] = {.lex_state = 176}, - [3819] = {.lex_state = 186}, - [3820] = {.lex_state = 186}, - [3821] = {.lex_state = 236}, - [3822] = {.lex_state = 169, .external_lex_state = 11}, - [3823] = {.lex_state = 169, .external_lex_state = 11}, - [3824] = {.lex_state = 236}, - [3825] = {.lex_state = 236}, - [3826] = {.lex_state = 176}, - [3827] = {.lex_state = 169, .external_lex_state = 11}, - [3828] = {.lex_state = 176}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_word] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_select] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_done] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_then] = ACTIONS(1), - [anon_sym_fi] = ACTIONS(1), - [anon_sym_elif] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_case] = ACTIONS(1), - [anon_sym_esac] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_SEMI_AMP] = ACTIONS(1), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1), - [anon_sym_function] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_PIPE_AMP] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1), - [anon_sym_declare] = ACTIONS(1), - [anon_sym_typeset] = ACTIONS(1), - [anon_sym_export] = ACTIONS(1), - [anon_sym_readonly] = ACTIONS(1), - [anon_sym_local] = ACTIONS(1), - [anon_sym_unset] = ACTIONS(1), - [anon_sym_unsetenv] = ACTIONS(1), - [anon_sym_EQ_TILDE] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_AMP_GT] = ACTIONS(1), - [anon_sym_AMP_GT_GT] = ACTIONS(1), - [anon_sym_LT_AMP] = ACTIONS(1), - [anon_sym_GT_AMP] = ACTIONS(1), - [anon_sym_GT_PIPE] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_LT_LT_DASH] = ACTIONS(1), - [anon_sym_LT_LT_LT] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [sym_special_character] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [sym_raw_string] = ACTIONS(1), - [sym_ansii_c_string] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_COLON_QMARK] = ACTIONS(1), - [anon_sym_COLON_DASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1), - [anon_sym_BQUOTE] = ACTIONS(1), - [anon_sym_LT_LPAREN] = ACTIONS(1), - [anon_sym_GT_LPAREN] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [sym_test_operator] = ACTIONS(1), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT_GT] = ACTIONS(1), - [sym_semgrep_named_ellipsis] = ACTIONS(1), - [sym_semgrep_metavariable] = ACTIONS(1), - [sym_semgrep_metavar_eq] = ACTIONS(1), - [sym_semgrep_metavar_pluseq] = ACTIONS(1), - [sym_heredoc_start] = 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_file_descriptor] = ACTIONS(1), - [sym_empty_value] = ACTIONS(1), - [sym_concat] = ACTIONS(1), - [sym_variable_name] = ACTIONS(1), - [sym_regex] = ACTIONS(1), - }, - [1] = { - [sym_program] = STATE(3694), - [sym_statements] = STATE(3635), - [sym_redirected_statement] = STATE(1940), - [sym_for_statement] = STATE(1940), - [sym_c_style_for_statement] = STATE(1940), - [sym_while_statement] = STATE(1940), - [sym_if_statement] = STATE(1940), - [sym_case_statement] = STATE(1940), - [sym_function_definition] = STATE(1940), - [sym_compound_statement] = STATE(1940), - [sym_subshell] = STATE(1940), - [sym_pipeline] = STATE(1940), - [sym_list] = STATE(1940), - [sym_negated_command] = STATE(1940), - [sym_test_command] = STATE(1940), - [sym_declaration_command] = STATE(1940), - [sym_unset_command] = STATE(1940), - [sym_command] = STATE(1940), - [sym_command_name] = STATE(227), - [sym_variable_assignment] = STATE(353), - [sym_subscript] = STATE(3516), - [sym_file_redirect] = STATE(661), - [sym_concatenation] = STATE(1000), - [sym_string] = STATE(829), - [sym_simple_expansion] = STATE(829), - [sym_string_expansion] = STATE(829), - [sym_expansion] = STATE(829), - [sym_command_substitution] = STATE(829), - [sym_process_substitution] = STATE(829), - [sym_semgrep_deep_expression] = STATE(829), - [aux_sym_statements_repeat1] = STATE(133), - [aux_sym_for_statement_repeat1] = STATE(954), - [aux_sym_command_repeat1] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansii_c_string] = ACTIONS(47), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), - [anon_sym_BQUOTE] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_semgrep_named_ellipsis] = ACTIONS(61), - [sym_semgrep_metavar_eq] = ACTIONS(63), - [sym_semgrep_metavar_pluseq] = ACTIONS(63), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(67), - }, - [2] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3133), - [sym_else_clause] = STATE(3819), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3133), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(81), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [3] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3129), - [sym_else_clause] = STATE(3657), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3129), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(129), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [4] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3130), - [sym_else_clause] = STATE(3644), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(3), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3130), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(131), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [5] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3167), - [sym_else_clause] = STATE(3820), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3167), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(133), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [6] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3160), - [sym_else_clause] = STATE(3764), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(5), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3160), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(135), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [7] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_elif_clause] = STATE(3132), - [sym_else_clause] = STATE(3733), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(2), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_if_statement_repeat1] = STATE(3132), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(137), - [anon_sym_elif] = ACTIONS(83), - [anon_sym_else] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [8] = { - [sym_statements] = STATE(3228), - [sym_redirected_statement] = STATE(1867), - [sym_for_statement] = STATE(1867), - [sym_c_style_for_statement] = STATE(1867), - [sym_while_statement] = STATE(1867), - [sym_if_statement] = STATE(1867), - [sym_case_statement] = STATE(1867), - [sym_function_definition] = STATE(1867), - [sym_compound_statement] = STATE(1867), - [sym_subshell] = STATE(1867), - [sym_pipeline] = STATE(1867), - [sym_list] = STATE(1867), - [sym_negated_command] = STATE(1867), - [sym_test_command] = STATE(1867), - [sym_declaration_command] = STATE(1867), - [sym_unset_command] = STATE(1867), - [sym_command] = STATE(1867), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(264), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_statements_repeat1] = STATE(132), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(141), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_esac] = ACTIONS(155), - [anon_sym_SEMI_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(157), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [9] = { - [sym_statements] = STATE(3249), - [sym_redirected_statement] = STATE(1867), - [sym_for_statement] = STATE(1867), - [sym_c_style_for_statement] = STATE(1867), - [sym_while_statement] = STATE(1867), - [sym_if_statement] = STATE(1867), - [sym_case_statement] = STATE(1867), - [sym_function_definition] = STATE(1867), - [sym_compound_statement] = STATE(1867), - [sym_subshell] = STATE(1867), - [sym_pipeline] = STATE(1867), - [sym_list] = STATE(1867), - [sym_negated_command] = STATE(1867), - [sym_test_command] = STATE(1867), - [sym_declaration_command] = STATE(1867), - [sym_unset_command] = STATE(1867), - [sym_command] = STATE(1867), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(264), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_statements_repeat1] = STATE(132), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(199), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_esac] = ACTIONS(201), - [anon_sym_SEMI_AMP] = ACTIONS(203), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(205), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [10] = { - [sym_statements] = STATE(3252), - [sym_redirected_statement] = STATE(1867), - [sym_for_statement] = STATE(1867), - [sym_c_style_for_statement] = STATE(1867), - [sym_while_statement] = STATE(1867), - [sym_if_statement] = STATE(1867), - [sym_case_statement] = STATE(1867), - [sym_function_definition] = STATE(1867), - [sym_compound_statement] = STATE(1867), - [sym_subshell] = STATE(1867), - [sym_pipeline] = STATE(1867), - [sym_list] = STATE(1867), - [sym_negated_command] = STATE(1867), - [sym_test_command] = STATE(1867), - [sym_declaration_command] = STATE(1867), - [sym_unset_command] = STATE(1867), - [sym_command] = STATE(1867), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(264), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_statements_repeat1] = STATE(132), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(207), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_esac] = ACTIONS(201), - [anon_sym_SEMI_AMP] = ACTIONS(209), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(211), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [11] = { - [sym_statements] = STATE(3258), - [sym_redirected_statement] = STATE(1867), - [sym_for_statement] = STATE(1867), - [sym_c_style_for_statement] = STATE(1867), - [sym_while_statement] = STATE(1867), - [sym_if_statement] = STATE(1867), - [sym_case_statement] = STATE(1867), - [sym_function_definition] = STATE(1867), - [sym_compound_statement] = STATE(1867), - [sym_subshell] = STATE(1867), - [sym_pipeline] = STATE(1867), - [sym_list] = STATE(1867), - [sym_negated_command] = STATE(1867), - [sym_test_command] = STATE(1867), - [sym_declaration_command] = STATE(1867), - [sym_unset_command] = STATE(1867), - [sym_command] = STATE(1867), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(264), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_statements_repeat1] = STATE(132), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_SEMI_SEMI] = ACTIONS(213), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_esac] = ACTIONS(201), - [anon_sym_SEMI_AMP] = ACTIONS(215), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(217), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [12] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(219), - [anon_sym_for] = ACTIONS(222), - [anon_sym_select] = ACTIONS(225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(228), - [anon_sym_while] = ACTIONS(231), - [anon_sym_done] = ACTIONS(234), - [anon_sym_if] = ACTIONS(236), - [anon_sym_fi] = ACTIONS(234), - [anon_sym_elif] = ACTIONS(234), - [anon_sym_else] = ACTIONS(234), - [anon_sym_case] = ACTIONS(239), - [anon_sym_function] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(257), - [anon_sym_declare] = ACTIONS(260), - [anon_sym_typeset] = ACTIONS(260), - [anon_sym_export] = ACTIONS(260), - [anon_sym_readonly] = ACTIONS(260), - [anon_sym_local] = ACTIONS(260), - [anon_sym_unset] = ACTIONS(263), - [anon_sym_unsetenv] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_AMP_GT] = ACTIONS(266), - [anon_sym_AMP_GT_GT] = ACTIONS(269), - [anon_sym_LT_AMP] = ACTIONS(269), - [anon_sym_GT_AMP] = ACTIONS(269), - [anon_sym_GT_PIPE] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(272), - [sym_special_character] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(278), - [sym_raw_string] = ACTIONS(281), - [sym_ansii_c_string] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(290), - [anon_sym_LT_LPAREN] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(293), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(296), - [sym_semgrep_named_ellipsis] = ACTIONS(299), - [sym_semgrep_metavar_eq] = ACTIONS(302), - [sym_semgrep_metavar_pluseq] = ACTIONS(302), - [sym_file_descriptor] = ACTIONS(305), - [sym_variable_name] = ACTIONS(308), - }, - [13] = { - [sym_statements] = STATE(3399), - [sym_redirected_statement] = STATE(1891), - [sym_for_statement] = STATE(1891), - [sym_c_style_for_statement] = STATE(1891), - [sym_while_statement] = STATE(1891), - [sym_if_statement] = STATE(1891), - [sym_case_statement] = STATE(1891), - [sym_function_definition] = STATE(1891), - [sym_compound_statement] = STATE(1891), - [sym_subshell] = STATE(1891), - [sym_pipeline] = STATE(1891), - [sym_list] = STATE(1891), - [sym_negated_command] = STATE(1891), - [sym_test_command] = STATE(1891), - [sym_declaration_command] = STATE(1891), - [sym_unset_command] = STATE(1891), - [sym_command] = STATE(1891), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(305), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_statements_repeat1] = STATE(135), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(313), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_SEMI_AMP] = ACTIONS(203), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(205), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [14] = { - [sym_statements] = STATE(3286), - [sym_redirected_statement] = STATE(1891), - [sym_for_statement] = STATE(1891), - [sym_c_style_for_statement] = STATE(1891), - [sym_while_statement] = STATE(1891), - [sym_if_statement] = STATE(1891), - [sym_case_statement] = STATE(1891), - [sym_function_definition] = STATE(1891), - [sym_compound_statement] = STATE(1891), - [sym_subshell] = STATE(1891), - [sym_pipeline] = STATE(1891), - [sym_list] = STATE(1891), - [sym_negated_command] = STATE(1891), - [sym_test_command] = STATE(1891), - [sym_declaration_command] = STATE(1891), - [sym_unset_command] = STATE(1891), - [sym_command] = STATE(1891), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(305), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_statements_repeat1] = STATE(135), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_SEMI_AMP] = ACTIONS(157), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(157), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [15] = { - [sym_statements] = STATE(3429), - [sym_redirected_statement] = STATE(1891), - [sym_for_statement] = STATE(1891), - [sym_c_style_for_statement] = STATE(1891), - [sym_while_statement] = STATE(1891), - [sym_if_statement] = STATE(1891), - [sym_case_statement] = STATE(1891), - [sym_function_definition] = STATE(1891), - [sym_compound_statement] = STATE(1891), - [sym_subshell] = STATE(1891), - [sym_pipeline] = STATE(1891), - [sym_list] = STATE(1891), - [sym_negated_command] = STATE(1891), - [sym_test_command] = STATE(1891), - [sym_declaration_command] = STATE(1891), - [sym_unset_command] = STATE(1891), - [sym_command] = STATE(1891), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(305), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_statements_repeat1] = STATE(135), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(347), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_SEMI_AMP] = ACTIONS(215), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(217), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [16] = { - [sym_statements] = STATE(3413), - [sym_redirected_statement] = STATE(1891), - [sym_for_statement] = STATE(1891), - [sym_c_style_for_statement] = STATE(1891), - [sym_while_statement] = STATE(1891), - [sym_if_statement] = STATE(1891), - [sym_case_statement] = STATE(1891), - [sym_function_definition] = STATE(1891), - [sym_compound_statement] = STATE(1891), - [sym_subshell] = STATE(1891), - [sym_pipeline] = STATE(1891), - [sym_list] = STATE(1891), - [sym_negated_command] = STATE(1891), - [sym_test_command] = STATE(1891), - [sym_declaration_command] = STATE(1891), - [sym_unset_command] = STATE(1891), - [sym_command] = STATE(1891), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(305), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_statements_repeat1] = STATE(135), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(349), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_SEMI_AMP] = ACTIONS(209), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(211), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [17] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(18), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(351), - [anon_sym_elif] = ACTIONS(351), - [anon_sym_else] = ACTIONS(351), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [18] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(353), - [anon_sym_elif] = ACTIONS(353), - [anon_sym_else] = ACTIONS(353), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [19] = { - [sym_statements] = STATE(3625), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(355), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [20] = { - [sym_statements] = STATE(3609), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(357), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [21] = { - [sym_statements] = STATE(3810), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_RPAREN] = ACTIONS(359), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [22] = { - [sym_statements] = STATE(3770), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [23] = { - [sym_statements] = STATE(3675), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1904), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [24] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(367), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [25] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(26), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [26] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(26), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(219), - [anon_sym_for] = ACTIONS(222), - [anon_sym_select] = ACTIONS(225), - [anon_sym_LPAREN_LPAREN] = ACTIONS(228), - [anon_sym_while] = ACTIONS(231), - [anon_sym_if] = ACTIONS(236), - [anon_sym_case] = ACTIONS(239), - [anon_sym_function] = ACTIONS(242), - [anon_sym_LPAREN] = ACTIONS(245), - [anon_sym_LBRACE] = ACTIONS(248), - [anon_sym_RBRACE] = ACTIONS(371), - [anon_sym_BANG] = ACTIONS(251), - [anon_sym_LBRACK] = ACTIONS(254), - [anon_sym_LBRACK_LBRACK] = ACTIONS(257), - [anon_sym_declare] = ACTIONS(260), - [anon_sym_typeset] = ACTIONS(260), - [anon_sym_export] = ACTIONS(260), - [anon_sym_readonly] = ACTIONS(260), - [anon_sym_local] = ACTIONS(260), - [anon_sym_unset] = ACTIONS(263), - [anon_sym_unsetenv] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(266), - [anon_sym_GT] = ACTIONS(266), - [anon_sym_GT_GT] = ACTIONS(269), - [anon_sym_AMP_GT] = ACTIONS(266), - [anon_sym_AMP_GT_GT] = ACTIONS(269), - [anon_sym_LT_AMP] = ACTIONS(269), - [anon_sym_GT_AMP] = ACTIONS(269), - [anon_sym_GT_PIPE] = ACTIONS(269), - [anon_sym_DOLLAR] = ACTIONS(272), - [sym_special_character] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(278), - [sym_raw_string] = ACTIONS(281), - [sym_ansii_c_string] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), - [anon_sym_BQUOTE] = ACTIONS(290), - [anon_sym_LT_LPAREN] = ACTIONS(293), - [anon_sym_GT_LPAREN] = ACTIONS(293), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(296), - [sym_semgrep_named_ellipsis] = ACTIONS(299), - [sym_semgrep_metavar_eq] = ACTIONS(302), - [sym_semgrep_metavar_pluseq] = ACTIONS(302), - [sym_file_descriptor] = ACTIONS(305), - [sym_variable_name] = ACTIONS(308), - }, - [27] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(28), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [28] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(26), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(375), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [29] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(32), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(377), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [30] = { - [sym_statements] = STATE(3809), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [31] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(38), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(379), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [32] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(381), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [33] = { - [sym_statements] = STATE(3717), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [34] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(35), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [35] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(26), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [36] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(39), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(387), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [37] = { - [sym_redirected_statement] = STATE(2010), - [sym_for_statement] = STATE(2010), - [sym_c_style_for_statement] = STATE(2010), - [sym_while_statement] = STATE(2010), - [sym_if_statement] = STATE(2010), - [sym_case_statement] = STATE(2010), - [sym_function_definition] = STATE(2010), - [sym_compound_statement] = STATE(2010), - [sym_subshell] = STATE(2010), - [sym_pipeline] = STATE(2010), - [sym_list] = STATE(2010), - [sym_negated_command] = STATE(2010), - [sym_test_command] = STATE(2010), - [sym_declaration_command] = STATE(2010), - [sym_unset_command] = STATE(2010), - [sym_command] = STATE(2010), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(436), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(25), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [38] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(391), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [39] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_done] = ACTIONS(393), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [40] = { - [sym_redirected_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_c_style_for_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_function_definition] = STATE(2044), - [sym_compound_statement] = STATE(2044), - [sym_subshell] = STATE(2044), - [sym_pipeline] = STATE(2044), - [sym_list] = STATE(2044), - [sym_negated_command] = STATE(2044), - [sym_test_command] = STATE(2044), - [sym_declaration_command] = STATE(2044), - [sym_unset_command] = STATE(2044), - [sym_command] = STATE(2044), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(409), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(24), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_fi] = ACTIONS(395), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [41] = { - [sym_statements] = STATE(3609), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [42] = { - [sym_statements] = STATE(3692), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1879), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [43] = { - [sym_statements] = STATE(3697), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [44] = { - [sym_statements] = STATE(3698), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [45] = { - [sym_statements] = STATE(3810), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [46] = { - [sym_statements] = STATE(3802), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1914), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [47] = { - [sym_statements] = STATE(3649), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [48] = { - [sym_statements] = STATE(3688), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [49] = { - [sym_statements] = STATE(3729), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1913), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [50] = { - [sym_statements] = STATE(3626), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [51] = { - [sym_statements] = STATE(3713), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [52] = { - [sym_statements] = STATE(3779), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1888), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [53] = { - [sym_statements] = STATE(3731), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [54] = { - [sym_statements] = STATE(3667), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [55] = { - [sym_statements] = STATE(3767), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1908), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [56] = { - [sym_statements] = STATE(3620), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [57] = { - [sym_statements] = STATE(3623), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [58] = { - [sym_statements] = STATE(3700), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1882), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [59] = { - [sym_statements] = STATE(3627), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [60] = { - [sym_statements] = STATE(3701), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [61] = { - [sym_statements] = STATE(3772), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1918), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), + case 506: + if (lookahead == '(') ADVANCE(909); + END_STATE(); + case 507: + if (lookahead == '(') ADVANCE(903); + if (lookahead == '`') ADVANCE(907); + END_STATE(); + case 508: + if (lookahead == '(') ADVANCE(903); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 509: + if (lookahead == ')') ADVANCE(677); + END_STATE(); + case 510: + if (lookahead == '+') ADVANCE(523); + if (lookahead == '=') ADVANCE(929); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(510); + END_STATE(); + case 511: + if (lookahead == '+') ADVANCE(687); + END_STATE(); + case 512: + if (lookahead == '+') ADVANCE(687); + if (lookahead == '=') ADVANCE(691); + END_STATE(); + case 513: + if (lookahead == '-') ADVANCE(689); + if (lookahead == '0') ADVANCE(855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(856); + END_STATE(); + case 514: + if (lookahead == '.') ADVANCE(537); + END_STATE(); + case 515: + if (lookahead == '.') ADVANCE(924); + END_STATE(); + case 516: + if (lookahead == '.') ADVANCE(821); + END_STATE(); + case 517: + if (lookahead == '.') ADVANCE(514); + END_STATE(); + case 518: + if (lookahead == '.') ADVANCE(527); + END_STATE(); + case 519: + if (lookahead == '.') ADVANCE(515); + END_STATE(); + case 520: + if (lookahead == '.') ADVANCE(518); + END_STATE(); + case 521: + if (lookahead == '0') ADVANCE(855); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(856); + END_STATE(); + case 522: + if (lookahead == '<') ADVANCE(803); + END_STATE(); + case 523: + if (lookahead == '=') ADVANCE(930); + END_STATE(); + case 524: + if (lookahead == '=') ADVANCE(724); + END_STATE(); + case 525: + if (lookahead == '=') ADVANCE(691); + END_STATE(); + case 526: + if (lookahead == '>') ADVANCE(795); + END_STATE(); + case 527: + if (lookahead == '>') ADVANCE(925); + END_STATE(); + case 528: + if (lookahead == ']') ADVANCE(792); + END_STATE(); + case 529: + if (lookahead == '`') ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(529); + END_STATE(); + case 530: + if (lookahead == 'a') ADVANCE(531); + END_STATE(); + case 531: + if (lookahead == 'c') ADVANCE(775); + END_STATE(); + case 532: + if (lookahead == 'n') ADVANCE(673); + END_STATE(); + case 533: + if (lookahead == 's') ADVANCE(530); + END_STATE(); + case 534: + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 535: + if (lookahead == '|') ADVANCE(709); + END_STATE(); + case 536: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); + END_STATE(); + case 537: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(926); + END_STATE(); + case 538: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(510); + END_STATE(); + case 539: + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 540: + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(923); + END_STATE(); + case 541: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(544); + END_STATE(); + case 542: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + ')', 774, + '*', 756, + '-', 751, + ';', 585, + '<', 731, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(575); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(542); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 543: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '&', 657, + ')', 774, + '*', 756, + '-', 751, + ';', 585, + '<', 732, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(574); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(543); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 544: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 590, + '!', 784, + '"', 839, + '#', 863, + '$', 836, + '&', 657, + ')', 774, + '*', 756, + '-', 751, + ';', 585, + '<', 731, + '>', 737, + '?', 804, + '@', 861, + ); + if (lookahead == '\\') SKIP(573); + if (lookahead == '_') ADVANCE(866); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(544); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 545: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 590, + '#', 912, + '$', 538, + '&', 657, + ')', 774, + ';', 585, + '<', 731, + '>', 737, + ); + if (lookahead == '\\') SKIP(576); + if (lookahead == '`') ADVANCE(906); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(545); + END_STATE(); + case 546: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 590, + '#', 912, + '$', 538, + '&', 657, + ')', 774, + ';', 585, + '<', 731, + '>', 737, + ); + if (lookahead == '\\') SKIP(577); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(546); + END_STATE(); + case 547: + if (eof) ADVANCE(582); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '&') ADVANCE(657); + if (lookahead == ')') ADVANCE(774); + if (lookahead == ';') ADVANCE(585); + if (lookahead == '<') ADVANCE(732); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(578); + if (lookahead == '`') ADVANCE(906); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(547); + END_STATE(); + case 548: + if (eof) ADVANCE(582); + if (lookahead == '\n') ADVANCE(590); + if (lookahead == '#') ADVANCE(912); + if (lookahead == '&') ADVANCE(657); + if (lookahead == ')') ADVANCE(774); + if (lookahead == ';') ADVANCE(585); + if (lookahead == '<') ADVANCE(732); + if (lookahead == '>') ADVANCE(737); + if (lookahead == '\\') SKIP(579); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '|') ADVANCE(716); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(837); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(548); + END_STATE(); + case 549: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(545); + END_STATE(); + case 550: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(547); + END_STATE(); + case 551: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(543); + END_STATE(); + case 552: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(546); + END_STATE(); + case 553: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(548); + END_STATE(); + case 554: + if (eof) ADVANCE(582); + if (lookahead == '\n') SKIP(542); + END_STATE(); + case 555: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 595, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '\\', 268, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(555); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); + END_STATE(); + case 556: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 596, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 269, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(556); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 557: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 600, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 273, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(557); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 558: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 604, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 278, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(558); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 559: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 610, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '?', 805, + '@', 862, + '\\', 284, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(559); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0) ADVANCE(923); + END_STATE(); + case 560: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 611, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 285, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(560); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 561: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 612, + '!', 787, + '"', 839, + '#', 863, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 288, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(561); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); + END_STATE(); + case 562: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 614, + '!', 787, + '"', 839, + '#', 863, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 290, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(562); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); + END_STATE(); + case 563: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 618, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 728, + '>', 736, + '\\', 294, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(563); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 564: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 624, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 729, + '>', 736, + '?', 805, + '@', 862, + '\\', 301, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(564); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); + END_STATE(); + case 565: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 626, + '!', 787, + '"', 839, + '#', 863, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 408, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(565); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); + END_STATE(); + case 566: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 628, + '!', 787, + '"', 839, + '#', 863, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '*', 759, + '-', 755, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '?', 805, + '@', 862, + '\\', 305, + '_', 864, + '`', 905, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(566); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(923); + END_STATE(); + case 567: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 633, + '"', 839, + '#', 912, + '$', 827, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 315, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(567); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 568: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 636, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + '(', 772, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '=', 917, + '>', 736, + '\\', 319, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(568); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); + END_STATE(); + case 569: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 638, + '"', 839, + '#', 912, + '$', 828, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 323, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(569); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 570: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 641, + '"', 839, + '#', 912, + '$', 829, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 658, + ';', 585, + '<', 728, + '>', 736, + '\\', 330, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(570); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 571: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 643, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 729, + '>', 736, + '\\', 335, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(571); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 572: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '\n', 647, + '"', 839, + '#', 912, + '$', 826, + '&', 657, + '\'', 500, + ')', 774, + '-', 915, + '0', 853, + ';', 585, + '<', 728, + '>', 736, + '\\', 344, + '`', 906, + '|', 716, + '[', 837, + ']', 837, + '{', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(572); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(923); + END_STATE(); + case 573: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(541); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(544); + END_STATE(); + case 574: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(551); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(543); + END_STATE(); + case 575: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(554); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(542); + END_STATE(); + case 576: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(549); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(545); + END_STATE(); + case 577: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(552); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(546); + END_STATE(); + case 578: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(550); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(547); + END_STATE(); + case 579: + if (eof) ADVANCE(582); + if (lookahead == '\r') SKIP(553); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(548); + END_STATE(); + case 580: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '!', 785, + '"', 839, + '#', 863, + '$', 827, + '%', 766, + '&', 656, + '\'', 500, + '(', 773, + ')', 774, + '*', 757, + '+', 814, + ',', 679, + '-', 812, + '/', 761, + ':', 809, + ';', 584, + '<', 726, + '=', 686, + '>', 735, + '?', 805, + '@', 862, + '[', 789, + '\\', 243, + ']', 790, + '^', 718, + '_', 865, + '`', 906, + 'e', 921, + 'i', 920, + '{', 781, + '|', 715, + '}', 868, + '~', 816, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(580); + if (lookahead != 0) ADVANCE(923); + END_STATE(); + case 581: + if (eof) ADVANCE(582); + ADVANCE_MAP( + '!', 787, + '"', 839, + '#', 912, + '$', 828, + '&', 526, + '\'', 500, + '(', 773, + ')', 774, + '-', 915, + '0', 853, + ';', 499, + '<', 727, + '>', 736, + '[', 789, + '\\', 246, + '`', 905, + '{', 781, + '|', 713, + ']', 837, + '}', 837, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(581); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if (lookahead != 0) ADVANCE(923); + END_STATE(); + case 582: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 583: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 584: + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(779); + if (lookahead == ';') ADVANCE(587); + END_STATE(); + case 585: + ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == ';') ADVANCE(586); + END_STATE(); + case 586: + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + END_STATE(); + case 587: + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '&') ADVANCE(780); + END_STATE(); + case 588: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(588); + if (lookahead == '+') ADVANCE(815); + if (lookahead == '-') ADVANCE(813); + if (lookahead == '\\') ADVANCE(251); + if (lookahead == '~') ADVANCE(816); + END_STATE(); + case 589: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(589); + if (lookahead == '\\') ADVANCE(259); + END_STATE(); + case 590: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(590); + END_STATE(); + case 591: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(591); + if (lookahead == '\\') ADVANCE(261); + END_STATE(); + case 592: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(592); + if (lookahead == '\\') ADVANCE(262); + END_STATE(); + case 593: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(593); + if (lookahead == '\\') ADVANCE(266); + END_STATE(); + case 594: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(594); + if (lookahead == '\\') ADVANCE(267); + END_STATE(); + case 595: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(595); + if (lookahead == '\\') ADVANCE(268); + END_STATE(); + case 596: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(596); + if (lookahead == '\\') ADVANCE(269); + END_STATE(); + case 597: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(597); + if (lookahead == '\\') ADVANCE(270); + END_STATE(); + case 598: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(598); + if (lookahead == '\\') ADVANCE(271); + END_STATE(); + case 599: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(599); + if (lookahead == '\\') ADVANCE(272); + END_STATE(); + case 600: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(600); + if (lookahead == '\\') ADVANCE(273); + END_STATE(); + case 601: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(601); + if (lookahead == '\\') ADVANCE(274); + END_STATE(); + case 602: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(602); + if (lookahead == '\\') ADVANCE(276); + END_STATE(); + case 603: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(603); + if (lookahead == '\\') ADVANCE(277); + END_STATE(); + case 604: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(604); + if (lookahead == '\\') ADVANCE(278); + END_STATE(); + case 605: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(605); + if (lookahead == '\\') ADVANCE(279); + END_STATE(); + case 606: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(606); + if (lookahead == '\\') ADVANCE(280); + END_STATE(); + case 607: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(607); + if (lookahead == '\\') ADVANCE(281); + END_STATE(); + case 608: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(608); + if (lookahead == '\\') ADVANCE(282); + END_STATE(); + case 609: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(609); + if (lookahead == '\\') ADVANCE(283); + END_STATE(); + case 610: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(610); + if (lookahead == '\\') ADVANCE(284); + END_STATE(); + case 611: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(611); + if (lookahead == '\\') ADVANCE(285); + END_STATE(); + case 612: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(612); + if (lookahead == '\\') ADVANCE(288); + END_STATE(); + case 613: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(613); + if (lookahead == '\\') ADVANCE(289); + END_STATE(); + case 614: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(614); + if (lookahead == '\\') ADVANCE(290); + END_STATE(); + case 615: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(615); + if (lookahead == '\\') ADVANCE(291); + END_STATE(); + case 616: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(616); + if (lookahead == '\\') ADVANCE(292); + END_STATE(); + case 617: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(617); + if (lookahead == '\\') ADVANCE(293); + END_STATE(); + case 618: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(618); + if (lookahead == '\\') ADVANCE(294); + END_STATE(); + case 619: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(619); + if (lookahead == '\\') ADVANCE(295); + END_STATE(); + case 620: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(620); + if (lookahead == '\\') ADVANCE(296); + END_STATE(); + case 621: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(621); + if (lookahead == '\\') ADVANCE(297); + END_STATE(); + case 622: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(622); + if (lookahead == '\\') ADVANCE(407); + END_STATE(); + case 623: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(623); + if (lookahead == '\\') ADVANCE(300); + END_STATE(); + case 624: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(624); + if (lookahead == '\\') ADVANCE(301); + END_STATE(); + case 625: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(625); + if (lookahead == '\\') ADVANCE(302); + END_STATE(); + case 626: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(626); + if (lookahead == '\\') ADVANCE(408); + END_STATE(); + case 627: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(627); + if (lookahead == '\\') ADVANCE(303); + END_STATE(); + case 628: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(628); + if (lookahead == '\\') ADVANCE(305); + END_STATE(); + case 629: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(629); + if (lookahead == '\\') ADVANCE(306); + END_STATE(); + case 630: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(630); + if (lookahead == '\\') ADVANCE(308); + END_STATE(); + case 631: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(631); + if (lookahead == '\\') ADVANCE(310); + END_STATE(); + case 632: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(632); + if (lookahead == '\\') ADVANCE(313); + END_STATE(); + case 633: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(633); + if (lookahead == '\\') ADVANCE(315); + END_STATE(); + case 634: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(634); + if (lookahead == '\\') ADVANCE(317); + END_STATE(); + case 635: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(635); + if (lookahead == '\\') ADVANCE(318); + END_STATE(); + case 636: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(636); + if (lookahead == '\\') ADVANCE(319); + END_STATE(); + case 637: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(637); + if (lookahead == '\\') ADVANCE(322); + END_STATE(); + case 638: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(638); + if (lookahead == '\\') ADVANCE(323); + END_STATE(); + case 639: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(639); + if (lookahead == '\\') ADVANCE(325); + END_STATE(); + case 640: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(640); + if (lookahead == '\\') ADVANCE(328); + END_STATE(); + case 641: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(641); + if (lookahead == '\\') ADVANCE(330); + END_STATE(); + case 642: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(642); + if (lookahead == '\\') ADVANCE(331); + END_STATE(); + case 643: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(643); + if (lookahead == '\\') ADVANCE(335); + END_STATE(); + case 644: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(644); + if (lookahead == '\\') ADVANCE(336); + END_STATE(); + case 645: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(645); + if (lookahead == '\\') ADVANCE(338); + END_STATE(); + case 646: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(646); + if (lookahead == '\\') ADVANCE(342); + END_STATE(); + case 647: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(647); + if (lookahead == '\\') ADVANCE(344); + END_STATE(); + case 648: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(648); + if (lookahead == '\\') ADVANCE(347); + END_STATE(); + case 649: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(649); + if (lookahead == '\\') ADVANCE(351); + END_STATE(); + case 650: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(650); + if (lookahead == '\\') ADVANCE(366); + END_STATE(); + case 651: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(651); + if (lookahead == '\\') ADVANCE(372); + END_STATE(); + case 652: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(652); + if (lookahead == '\\') ADVANCE(379); + END_STATE(); + case 653: + ACCEPT_TOKEN(aux_sym_statements_token1); + if (lookahead == '\n') ADVANCE(653); + if (lookahead == '\\') ADVANCE(387); + END_STATE(); + case 654: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 655: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(711); + if (lookahead == '=') ADVANCE(705); + END_STATE(); + case 656: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(711); + if (lookahead == '=') ADVANCE(705); + if (lookahead == '>') ADVANCE(795); + END_STATE(); + case 657: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(711); + if (lookahead == '>') ADVANCE(795); + END_STATE(); + case 658: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '#') ADVANCE(859); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'x') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(923); + END_STATE(); + case 659: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '#') ADVANCE(859); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(923); + END_STATE(); + case 660: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '#') ADVANCE(860); + if (lookahead == 'x') ADVANCE(671); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 661: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '#') ADVANCE(860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 662: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'a') ADVANCE(663); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 663: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'c') ADVANCE(776); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 664: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 's') ADVANCE(662); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 665: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(659); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 666: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 667: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == 'a') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 668: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == 'c') ADVANCE(778); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 669: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == 'n') ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 670: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (lookahead == 's') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 671: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(661); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 672: + ACCEPT_TOKEN(aux_sym_for_statement_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 673: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 674: + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 675: + ACCEPT_TOKEN(anon_sym_in); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 676: + ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); + END_STATE(); + case 677: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 678: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 679: + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(900); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 680: + ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(899); + END_STATE(); + case 681: + ACCEPT_TOKEN(aux_sym_c_expression_not_assignment_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(681); + END_STATE(); + case 682: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 683: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(723); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == '~') ADVANCE(794); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 684: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(722); + END_STATE(); + case 685: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(722); + if (lookahead == '~') ADVANCE(793); + END_STATE(); + case 686: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 687: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + END_STATE(); + case 688: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 689: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + END_STATE(); + case 690: + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 691: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 692: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 693: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 694: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 695: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 696: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 697: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 698: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 700: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 701: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 702: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 703: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 704: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 705: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 706: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 707: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 708: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_DASHo); + END_STATE(); + case 711: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + END_STATE(); + case 712: + ACCEPT_TOKEN(anon_sym_DASHa); + END_STATE(); + case 713: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 714: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(783); + END_STATE(); + case 715: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(783); + if (lookahead == '=') ADVANCE(708); + if (lookahead == '|') ADVANCE(709); + END_STATE(); + case 716: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(783); + if (lookahead == '|') ADVANCE(709); + END_STATE(); + case 717: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(708); + if (lookahead == '|') ADVANCE(709); + END_STATE(); + case 718: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(707); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == '^') ADVANCE(902); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 719: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(707); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 720: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(706); + END_STATE(); + case 721: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(901); + END_STATE(); + case 722: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 723: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 724: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 725: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 726: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); + if (lookahead == '<') ADVANCE(744); + if (lookahead == '=') ADVANCE(740); + END_STATE(); + case 727: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); + if (lookahead == '<') ADVANCE(522); + END_STATE(); + case 728: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); + if (lookahead == '<') ADVANCE(742); + END_STATE(); + case 729: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); + if (lookahead == '<') ADVANCE(743); + END_STATE(); + case 730: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '<') ADVANCE(522); + END_STATE(); + case 731: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '<') ADVANCE(742); + END_STATE(); + case 732: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(797); + if (lookahead == '<') ADVANCE(743); + END_STATE(); + case 733: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '(') ADVANCE(908); + if (lookahead == '.') ADVANCE(519); + if (lookahead == '<') ADVANCE(745); + if (lookahead == '=') ADVANCE(740); + END_STATE(); + case 734: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(745); + if (lookahead == '=') ADVANCE(740); + END_STATE(); + case 735: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(798); + if (lookahead == '(') ADVANCE(909); + if (lookahead == '=') ADVANCE(741); + if (lookahead == '>') ADVANCE(747); + if (lookahead == '|') ADVANCE(799); + END_STATE(); + case 736: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(798); + if (lookahead == '(') ADVANCE(909); + if (lookahead == '>') ADVANCE(746); + if (lookahead == '|') ADVANCE(799); + END_STATE(); + case 737: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(798); + if (lookahead == '>') ADVANCE(746); + if (lookahead == '|') ADVANCE(799); + END_STATE(); + case 738: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '(') ADVANCE(909); + if (lookahead == '=') ADVANCE(741); + if (lookahead == '>') ADVANCE(747); + END_STATE(); + case 739: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(741); + if (lookahead == '>') ADVANCE(747); + END_STATE(); + case 740: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 741: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 742: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(802); + END_STATE(); + case 743: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(802); + if (lookahead == '<') ADVANCE(803); + END_STATE(); + case 744: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(802); + if (lookahead == '<') ADVANCE(803); + if (lookahead == '=') ADVANCE(703); + END_STATE(); + case 745: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(703); + END_STATE(); + case 746: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 747: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(704); + END_STATE(); + case 748: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 749: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(688); + if (lookahead == '=') ADVANCE(692); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 750: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(687); + if (lookahead == '=') ADVANCE(691); + END_STATE(); + case 751: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 752: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(690); + if (lookahead == '0') ADVANCE(853); + if (lookahead == '=') ADVANCE(694); + if (lookahead == '\\') ADVANCE(540); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 753: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(689); + if (lookahead == '=') ADVANCE(693); + END_STATE(); + case 754: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(689); + if (lookahead == '=') ADVANCE(693); + if (lookahead == 'a') ADVANCE(712); + if (lookahead == 'o') ADVANCE(710); + END_STATE(); + case 755: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '0') ADVANCE(853); + if (lookahead == '\\') ADVANCE(540); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 756: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 757: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(770); + if (lookahead == '=') ADVANCE(696); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 758: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(771); + if (lookahead == '=') ADVANCE(695); + END_STATE(); + case 759: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 760: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 761: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(896); + if (lookahead == '%') ADVANCE(898); + if (lookahead == '/') ADVANCE(894); + if (lookahead == '=') ADVANCE(698); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(923); + END_STATE(); + case 762: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(895); + if (lookahead == '%') ADVANCE(897); + if (lookahead == '/') ADVANCE(893); + END_STATE(); + case 763: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(698); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 764: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '=') ADVANCE(697); + END_STATE(); + case 765: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 766: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(891); + if (lookahead == '=') ADVANCE(700); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 767: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(890); + END_STATE(); + case 768: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(700); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 769: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(699); + END_STATE(); + case 770: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(702); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 771: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(701); + END_STATE(); + case 772: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 773: + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(676); + END_STATE(); + case 774: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 775: + ACCEPT_TOKEN(anon_sym_esac); + END_STATE(); + case 776: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 777: + ACCEPT_TOKEN(anon_sym_esac); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 778: + ACCEPT_TOKEN(anon_sym_esac); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 779: + ACCEPT_TOKEN(anon_sym_SEMI_AMP); + END_STATE(); + case 780: + ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); + END_STATE(); + case 781: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 782: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 783: + ACCEPT_TOKEN(anon_sym_PIPE_AMP); + END_STATE(); + case 784: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 785: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(725); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 786: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(724); + END_STATE(); + case 787: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 788: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 789: + ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(791); + END_STATE(); + case 790: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 791: + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + END_STATE(); + case 792: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 793: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 794: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 795: + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(796); + END_STATE(); + case 796: + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + END_STATE(); + case 797: + ACCEPT_TOKEN(anon_sym_LT_AMP); + if (lookahead == '-') ADVANCE(800); + END_STATE(); + case 798: + ACCEPT_TOKEN(anon_sym_GT_AMP); + if (lookahead == '-') ADVANCE(801); + END_STATE(); + case 799: + ACCEPT_TOKEN(anon_sym_GT_PIPE); + END_STATE(); + case 800: + ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); + END_STATE(); + case 801: + ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); + END_STATE(); + case 802: + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + END_STATE(); + case 803: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 804: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 805: + ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 806: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 807: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(885); + if (lookahead == '-') ADVANCE(882); + if (lookahead == '=') ADVANCE(879); + if (lookahead == '?') ADVANCE(889); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 808: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(884); + if (lookahead == '-') ADVANCE(881); + if (lookahead == '=') ADVANCE(878); + if (lookahead == '?') ADVANCE(888); + END_STATE(); + case 809: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 810: + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + END_STATE(); + case 811: + ACCEPT_TOKEN(anon_sym_DASH_DASH2); + END_STATE(); + case 812: + ACCEPT_TOKEN(anon_sym_DASH2); + END_STATE(); + case 813: + ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(811); + END_STATE(); + case 814: + ACCEPT_TOKEN(anon_sym_PLUS2); + END_STATE(); + case 815: + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(810); + END_STATE(); + case 816: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 817: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + END_STATE(); + case 818: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); + END_STATE(); + case 819: + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 820: + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); + END_STATE(); + case 821: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + END_STATE(); + case 822: + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 823: + ACCEPT_TOKEN(anon_sym_RBRACE2); + END_STATE(); + case 824: + ACCEPT_TOKEN(aux_sym_concatenation_token1); + END_STATE(); + case 825: + ACCEPT_TOKEN(anon_sym_DOLLAR); + END_STATE(); + case 826: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(501); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + END_STATE(); + case 827: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(501); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(927); + END_STATE(); + case 828: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(501); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(510); + END_STATE(); + case 829: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(501); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 830: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(501); + if (lookahead == '(') ADVANCE(903); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + END_STATE(); + case 831: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + END_STATE(); + case 832: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(904); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '[') ADVANCE(818); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 833: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(903); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + END_STATE(); + case 834: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(903); + if (lookahead == '.') ADVANCE(517); + if (lookahead == '`') ADVANCE(907); + if (lookahead == '{') ADVANCE(867); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 835: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '(') ADVANCE(903); + if (lookahead == '`') ADVANCE(907); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 836: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(510); + END_STATE(); + case 837: + ACCEPT_TOKEN(sym_special_character); + END_STATE(); + case 838: + ACCEPT_TOKEN(sym_special_character); + if (lookahead == ']') ADVANCE(792); + END_STATE(); + case 839: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 840: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(846); + if (lookahead == '\\') ADVANCE(245); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(848); + END_STATE(); + case 841: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(844); + if (lookahead == '\\') ADVANCE(245); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(848); + END_STATE(); + case 842: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(845); + if (lookahead == '\\') ADVANCE(245); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(848); + END_STATE(); + case 843: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\n') ADVANCE(848); + if (lookahead == '\\') ADVANCE(910); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(847); + END_STATE(); + case 844: + ACCEPT_TOKEN(sym_string_content); + ADVANCE_MAP( + '!', 784, + '"', 839, + '#', 863, + '$', 825, + '*', 756, + '-', 751, + '?', 804, + '@', 861, + '\\', 248, + '_', 866, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(441); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(844); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + if (lookahead != 0 && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(848); + END_STATE(); + case 845: + ACCEPT_TOKEN(sym_string_content); + ADVANCE_MAP( + '!', 784, + '#', 863, + '$', 825, + '*', 756, + '-', 751, + '?', 804, + '@', 861, + '\\', 250, + '_', 866, + ); + if (lookahead == '\n' || + lookahead == '\r') SKIP(444); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(845); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + if (lookahead != 0 && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '_' || 'z' < lookahead)) ADVANCE(848); + END_STATE(); + case 846: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '"') ADVANCE(839); + if (lookahead == '#') ADVANCE(847); + if (lookahead == '$') ADVANCE(831); + if (lookahead == '\\') ADVANCE(244); + if (lookahead == '`') ADVANCE(905); + if (lookahead == '\n' || + lookahead == '\r') SKIP(488); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(846); + if (lookahead != 0) ADVANCE(848); + END_STATE(); + case 847: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\\') ADVANCE(910); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(847); + END_STATE(); + case 848: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\\') ADVANCE(245); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(848); + END_STATE(); + case 849: + ACCEPT_TOKEN(sym_string_content); + if (lookahead == '\\') ADVANCE(245); + if (lookahead != 0 && + lookahead != '\r' && + lookahead != '"' && + lookahead != '$' && + lookahead != '`') ADVANCE(848); + END_STATE(); + case 850: + ACCEPT_TOKEN(sym_raw_string); + END_STATE(); + case 851: + ACCEPT_TOKEN(sym_ansi_c_string); + END_STATE(); + case 852: + ACCEPT_TOKEN(sym_ansi_c_string); + if (lookahead == '\'') ADVANCE(851); + if (lookahead == '\\') ADVANCE(502); + if (lookahead != 0) ADVANCE(501); + END_STATE(); + case 853: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(859); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'x') ADVANCE(922); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(923); + END_STATE(); + case 854: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(859); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(923); + END_STATE(); + case 855: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(860); + if (lookahead == 'x') ADVANCE(536); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); + END_STATE(); + case 856: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(860); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(856); + END_STATE(); + case 857: + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(857); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 858: + ACCEPT_TOKEN(aux_sym_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); + END_STATE(); + case 859: + ACCEPT_TOKEN(aux_sym_number_token2); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(857); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 860: + ACCEPT_TOKEN(aux_sym_number_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(858); + END_STATE(); + case 861: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 862: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 863: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); + case 864: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(666); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 865: + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 866: + ACCEPT_TOKEN(anon_sym__); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(672); + END_STATE(); + case 867: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + END_STATE(); + case 868: + ACCEPT_TOKEN(anon_sym_RBRACE3); + END_STATE(); + case 869: + ACCEPT_TOKEN(anon_sym_BANG2); + END_STATE(); + case 870: + ACCEPT_TOKEN(anon_sym_BANG2); + if (lookahead == '=') ADVANCE(725); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 871: + ACCEPT_TOKEN(anon_sym_AT2); + END_STATE(); + case 872: + ACCEPT_TOKEN(anon_sym_AT2); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 873: + ACCEPT_TOKEN(anon_sym_STAR2); + END_STATE(); + case 874: + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(770); + if (lookahead == '=') ADVANCE(696); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 875: + ACCEPT_TOKEN(anon_sym_POUND2); + END_STATE(); + case 876: + ACCEPT_TOKEN(anon_sym_EQ2); + END_STATE(); + case 877: + ACCEPT_TOKEN(anon_sym_EQ2); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 878: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 879: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 880: + ACCEPT_TOKEN(anon_sym_DASH3); + END_STATE(); + case 881: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + END_STATE(); + case 882: + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 883: + ACCEPT_TOKEN(anon_sym_PLUS3); + END_STATE(); + case 884: + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + END_STATE(); + case 885: + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 886: + ACCEPT_TOKEN(anon_sym_QMARK2); + END_STATE(); + case 887: + ACCEPT_TOKEN(anon_sym_QMARK2); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 888: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); + case 889: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 890: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + END_STATE(); + case 891: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 892: + ACCEPT_TOKEN(aux_sym_expansion_regex_token1); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(892); + END_STATE(); + case 893: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 894: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 895: + ACCEPT_TOKEN(anon_sym_SLASH_POUND); + END_STATE(); + case 896: + ACCEPT_TOKEN(anon_sym_SLASH_POUND); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 897: + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + END_STATE(); + case 898: + ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 899: + ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + END_STATE(); + case 900: + ACCEPT_TOKEN(anon_sym_COMMA_COMMA); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 901: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + END_STATE(); + case 902: + ACCEPT_TOKEN(anon_sym_CARET_CARET); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 903: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + END_STATE(); + case 904: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '(') ADVANCE(817); + END_STATE(); + case 905: + ACCEPT_TOKEN(anon_sym_BQUOTE); + END_STATE(); + case 906: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '`') ADVANCE(824); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(529); + END_STATE(); + case 907: + ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); + END_STATE(); + case 908: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + END_STATE(); + case 909: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + END_STATE(); + case 910: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(848); + if (lookahead == '\r') ADVANCE(843); + if (lookahead != 0) ADVANCE(847); + END_STATE(); + case 911: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\t' || + (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(912); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(913); + END_STATE(); + case 912: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(912); + END_STATE(); + case 913: + ACCEPT_TOKEN(sym_comment_word); + if (lookahead == '\\') ADVANCE(911); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(913); + END_STATE(); + case 914: + ACCEPT_TOKEN(sym_word); + if (lookahead == '.') ADVANCE(822); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 915: + ACCEPT_TOKEN(sym_word); + if (lookahead == '0') ADVANCE(853); + if (lookahead == '\\') ADVANCE(540); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 916: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') ADVANCE(725); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 917: + ACCEPT_TOKEN(sym_word); + if (lookahead == '=') ADVANCE(723); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == '~') ADVANCE(794); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 918: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'a') ADVANCE(919); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 919: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'c') ADVANCE(777); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 920: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 'n') ADVANCE(674); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 921: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if (lookahead == 's') ADVANCE(918); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 922: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(854); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 923: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') ADVANCE(540); + if ((!eof && set_contains(sym_comment_word_character_set_1, 12, lookahead))) ADVANCE(923); + END_STATE(); + case 924: + ACCEPT_TOKEN(anon_sym_LT_DOT_DOT_DOT); + END_STATE(); + case 925: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_GT); + END_STATE(); + case 926: + ACCEPT_TOKEN(sym_semgrep_named_ellipsis); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(926); + END_STATE(); + case 927: + ACCEPT_TOKEN(sym_semgrep_metavariable); + if (lookahead == '+') ADVANCE(523); + if (lookahead == '=') ADVANCE(929); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(927); + END_STATE(); + case 928: + ACCEPT_TOKEN(sym_semgrep_metavariable); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_') ADVANCE(928); + END_STATE(); + case 929: + ACCEPT_TOKEN(sym_semgrep_metavar_eq); + END_STATE(); + case 930: + ACCEPT_TOKEN(sym_semgrep_metavar_pluseq); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + 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(22); + END_STATE(); + case 1: + ACCEPT_TOKEN(anon_sym_A); + END_STATE(); + case 2: + ACCEPT_TOKEN(anon_sym_E); + END_STATE(); + case 3: + ACCEPT_TOKEN(anon_sym_K); + END_STATE(); + case 4: + ACCEPT_TOKEN(anon_sym_L); + END_STATE(); + case 5: + ACCEPT_TOKEN(anon_sym_P); + END_STATE(); + case 6: + ACCEPT_TOKEN(anon_sym_Q); + END_STATE(); + case 7: + ACCEPT_TOKEN(anon_sym_U); + END_STATE(); + case 8: + if (lookahead == '\r') SKIP(23); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(22); + END_STATE(); + case 9: + ACCEPT_TOKEN(anon_sym_a); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(24); + END_STATE(); + case 11: + if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'o') ADVANCE(26); + END_STATE(); + case 12: + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'x') ADVANCE(28); + END_STATE(); + case 13: + if (lookahead == 'i') ADVANCE(29); + if (lookahead == 'o') ADVANCE(30); + if (lookahead == 'u') ADVANCE(31); + END_STATE(); + case 14: + if (lookahead == 'f') ADVANCE(32); + END_STATE(); + case 15: + ACCEPT_TOKEN(anon_sym_k); + END_STATE(); + case 16: + if (lookahead == 'o') ADVANCE(33); + END_STATE(); + case 17: + if (lookahead == 'e') ADVANCE(34); + END_STATE(); + case 18: + if (lookahead == 'e') ADVANCE(35); + END_STATE(); + case 19: + if (lookahead == 'h') ADVANCE(36); + if (lookahead == 'y') ADVANCE(37); + END_STATE(); + case 20: + ACCEPT_TOKEN(anon_sym_u); + if (lookahead == 'n') ADVANCE(38); + END_STATE(); + case 21: + if (lookahead == 'h') ADVANCE(39); + END_STATE(); + case 22: + if (lookahead == '\\') SKIP(8); + 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 == 'l') ADVANCE(16); + if (lookahead == 'r') ADVANCE(17); + if (lookahead == 's') ADVANCE(18); + if (lookahead == 't') ADVANCE(19); + if (lookahead == 'u') ADVANCE(40); + if (lookahead == 'w') ADVANCE(21); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(22); + END_STATE(); + case 23: + if (lookahead == '\n') SKIP(22); + END_STATE(); + case 24: + if (lookahead == 's') ADVANCE(41); + END_STATE(); + case 25: + if (lookahead == 'c') ADVANCE(42); + END_STATE(); + case 26: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'n') ADVANCE(43); + END_STATE(); + case 27: + if (lookahead == 'i') ADVANCE(44); + if (lookahead == 's') ADVANCE(45); + END_STATE(); + case 28: + if (lookahead == 'p') ADVANCE(46); + END_STATE(); + case 29: + ACCEPT_TOKEN(anon_sym_fi); + END_STATE(); + case 30: + if (lookahead == 'r') ADVANCE(47); + END_STATE(); + case 31: + if (lookahead == 'n') ADVANCE(48); + END_STATE(); + case 32: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 33: + if (lookahead == 'c') ADVANCE(49); + END_STATE(); + case 34: + if (lookahead == 'a') ADVANCE(50); + END_STATE(); + case 35: + if (lookahead == 'l') ADVANCE(51); + END_STATE(); + case 36: + if (lookahead == 'e') ADVANCE(52); + END_STATE(); + case 37: + if (lookahead == 'p') ADVANCE(53); + END_STATE(); + case 38: + if (lookahead == 's') ADVANCE(54); + if (lookahead == 't') ADVANCE(55); + END_STATE(); + case 39: + if (lookahead == 'i') ADVANCE(56); + END_STATE(); + case 40: + if (lookahead == 'n') ADVANCE(38); + END_STATE(); + case 41: + if (lookahead == 'e') ADVANCE(57); + END_STATE(); + case 42: + if (lookahead == 'l') ADVANCE(58); + END_STATE(); + case 43: + if (lookahead == 'e') ADVANCE(59); + END_STATE(); + case 44: + if (lookahead == 'f') ADVANCE(60); + END_STATE(); + case 45: + if (lookahead == 'e') ADVANCE(61); + END_STATE(); + case 46: + if (lookahead == 'o') ADVANCE(62); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 48: + if (lookahead == 'c') ADVANCE(63); + END_STATE(); + case 49: + if (lookahead == 'a') ADVANCE(64); + END_STATE(); + case 50: + if (lookahead == 'd') ADVANCE(65); + END_STATE(); + case 51: + if (lookahead == 'e') ADVANCE(66); + END_STATE(); + case 52: + if (lookahead == 'n') ADVANCE(67); + END_STATE(); + case 53: + if (lookahead == 'e') ADVANCE(68); + END_STATE(); + case 54: + if (lookahead == 'e') ADVANCE(69); + END_STATE(); + case 55: + if (lookahead == 'i') ADVANCE(70); + END_STATE(); + case 56: + if (lookahead == 'l') ADVANCE(71); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 58: + if (lookahead == 'a') ADVANCE(72); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_done); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 62: + if (lookahead == 'r') ADVANCE(73); + END_STATE(); + case 63: + if (lookahead == 't') ADVANCE(74); + END_STATE(); + case 64: + if (lookahead == 'l') ADVANCE(75); + END_STATE(); + case 65: + if (lookahead == 'o') ADVANCE(76); + END_STATE(); + case 66: + if (lookahead == 'c') ADVANCE(77); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_then); + END_STATE(); + case 68: + if (lookahead == 's') ADVANCE(78); + END_STATE(); + case 69: + if (lookahead == 't') ADVANCE(79); + END_STATE(); + case 70: + if (lookahead == 'l') ADVANCE(80); + END_STATE(); + case 71: + if (lookahead == 'e') ADVANCE(81); + END_STATE(); + case 72: + if (lookahead == 'r') ADVANCE(82); + END_STATE(); + case 73: + if (lookahead == 't') ADVANCE(83); + END_STATE(); + case 74: + if (lookahead == 'i') ADVANCE(84); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_local); + END_STATE(); + case 76: + if (lookahead == 'n') ADVANCE(85); + END_STATE(); + case 77: + if (lookahead == 't') ADVANCE(86); + END_STATE(); + case 78: + if (lookahead == 'e') ADVANCE(87); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(88); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_until); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 82: + if (lookahead == 'e') ADVANCE(89); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_export); + END_STATE(); + case 84: + if (lookahead == 'o') ADVANCE(90); + END_STATE(); + case 85: + if (lookahead == 'l') ADVANCE(91); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_select); + END_STATE(); + case 87: + if (lookahead == 't') ADVANCE(92); + END_STATE(); + case 88: + if (lookahead == 'n') ADVANCE(93); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_declare); + END_STATE(); + case 90: + if (lookahead == 'n') ADVANCE(94); + END_STATE(); + case 91: + if (lookahead == 'y') ADVANCE(95); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_typeset); + END_STATE(); + case 93: + if (lookahead == 'v') ADVANCE(96); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_unsetenv); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 581, .external_lex_state = 2}, + [2] = {.lex_state = 429, .external_lex_state = 2}, + [3] = {.lex_state = 429, .external_lex_state = 2}, + [4] = {.lex_state = 429, .external_lex_state = 2}, + [5] = {.lex_state = 430, .external_lex_state = 3}, + [6] = {.lex_state = 430, .external_lex_state = 3}, + [7] = {.lex_state = 430, .external_lex_state = 3}, + [8] = {.lex_state = 430, .external_lex_state = 3}, + [9] = {.lex_state = 430, .external_lex_state = 3}, + [10] = {.lex_state = 430, .external_lex_state = 3}, + [11] = {.lex_state = 430, .external_lex_state = 3}, + [12] = {.lex_state = 430, .external_lex_state = 3}, + [13] = {.lex_state = 581, .external_lex_state = 2}, + [14] = {.lex_state = 581, .external_lex_state = 2}, + [15] = {.lex_state = 6, .external_lex_state = 4}, + [16] = {.lex_state = 581, .external_lex_state = 2}, + [17] = {.lex_state = 581, .external_lex_state = 2}, + [18] = {.lex_state = 581, .external_lex_state = 2}, + [19] = {.lex_state = 581, .external_lex_state = 2}, + [20] = {.lex_state = 581, .external_lex_state = 2}, + [21] = {.lex_state = 581, .external_lex_state = 2}, + [22] = {.lex_state = 581, .external_lex_state = 2}, + [23] = {.lex_state = 431, .external_lex_state = 5}, + [24] = {.lex_state = 431, .external_lex_state = 5}, + [25] = {.lex_state = 431, .external_lex_state = 5}, + [26] = {.lex_state = 431, .external_lex_state = 5}, + [27] = {.lex_state = 431, .external_lex_state = 5}, + [28] = {.lex_state = 431, .external_lex_state = 5}, + [29] = {.lex_state = 431, .external_lex_state = 5}, + [30] = {.lex_state = 431, .external_lex_state = 5}, + [31] = {.lex_state = 581, .external_lex_state = 2}, + [32] = {.lex_state = 581, .external_lex_state = 2}, + [33] = {.lex_state = 581, .external_lex_state = 2}, + [34] = {.lex_state = 581, .external_lex_state = 2}, + [35] = {.lex_state = 581, .external_lex_state = 2}, + [36] = {.lex_state = 581, .external_lex_state = 2}, + [37] = {.lex_state = 581, .external_lex_state = 2}, + [38] = {.lex_state = 581, .external_lex_state = 2}, + [39] = {.lex_state = 581, .external_lex_state = 2}, + [40] = {.lex_state = 581, .external_lex_state = 2}, + [41] = {.lex_state = 411, .external_lex_state = 6}, + [42] = {.lex_state = 581, .external_lex_state = 2}, + [43] = {.lex_state = 581, .external_lex_state = 2}, + [44] = {.lex_state = 581, .external_lex_state = 2}, + [45] = {.lex_state = 581, .external_lex_state = 2}, + [46] = {.lex_state = 581, .external_lex_state = 2}, + [47] = {.lex_state = 581, .external_lex_state = 2}, + [48] = {.lex_state = 581, .external_lex_state = 2}, + [49] = {.lex_state = 581, .external_lex_state = 2}, + [50] = {.lex_state = 581, .external_lex_state = 2}, + [51] = {.lex_state = 432, .external_lex_state = 2}, + [52] = {.lex_state = 581, .external_lex_state = 2}, + [53] = {.lex_state = 581, .external_lex_state = 2}, + [54] = {.lex_state = 581, .external_lex_state = 2}, + [55] = {.lex_state = 581, .external_lex_state = 2}, + [56] = {.lex_state = 581, .external_lex_state = 2}, + [57] = {.lex_state = 581, .external_lex_state = 2}, + [58] = {.lex_state = 581, .external_lex_state = 2}, + [59] = {.lex_state = 581, .external_lex_state = 2}, + [60] = {.lex_state = 432, .external_lex_state = 2}, + [61] = {.lex_state = 581, .external_lex_state = 2}, + [62] = {.lex_state = 432, .external_lex_state = 2}, + [63] = {.lex_state = 432, .external_lex_state = 2}, + [64] = {.lex_state = 581, .external_lex_state = 2}, + [65] = {.lex_state = 432, .external_lex_state = 2}, + [66] = {.lex_state = 432, .external_lex_state = 2}, + [67] = {.lex_state = 581, .external_lex_state = 2}, + [68] = {.lex_state = 581, .external_lex_state = 2}, + [69] = {.lex_state = 432, .external_lex_state = 2}, + [70] = {.lex_state = 432, .external_lex_state = 2}, + [71] = {.lex_state = 581, .external_lex_state = 2}, + [72] = {.lex_state = 581, .external_lex_state = 2}, + [73] = {.lex_state = 432, .external_lex_state = 2}, + [74] = {.lex_state = 432, .external_lex_state = 2}, + [75] = {.lex_state = 581, .external_lex_state = 2}, + [76] = {.lex_state = 581, .external_lex_state = 2}, + [77] = {.lex_state = 432, .external_lex_state = 2}, + [78] = {.lex_state = 432, .external_lex_state = 2}, + [79] = {.lex_state = 581, .external_lex_state = 2}, + [80] = {.lex_state = 581, .external_lex_state = 2}, + [81] = {.lex_state = 432, .external_lex_state = 2}, + [82] = {.lex_state = 432, .external_lex_state = 2}, + [83] = {.lex_state = 581, .external_lex_state = 2}, + [84] = {.lex_state = 581, .external_lex_state = 2}, + [85] = {.lex_state = 432, .external_lex_state = 2}, + [86] = {.lex_state = 432, .external_lex_state = 2}, + [87] = {.lex_state = 581, .external_lex_state = 2}, + [88] = {.lex_state = 581, .external_lex_state = 2}, + [89] = {.lex_state = 432, .external_lex_state = 2}, + [90] = {.lex_state = 432, .external_lex_state = 2}, + [91] = {.lex_state = 581, .external_lex_state = 2}, + [92] = {.lex_state = 581, .external_lex_state = 2}, + [93] = {.lex_state = 432, .external_lex_state = 2}, + [94] = {.lex_state = 581, .external_lex_state = 2}, + [95] = {.lex_state = 581, .external_lex_state = 2}, + [96] = {.lex_state = 581, .external_lex_state = 2}, + [97] = {.lex_state = 581, .external_lex_state = 2}, + [98] = {.lex_state = 581, .external_lex_state = 2}, + [99] = {.lex_state = 581, .external_lex_state = 2}, + [100] = {.lex_state = 581, .external_lex_state = 2}, + [101] = {.lex_state = 581, .external_lex_state = 2}, + [102] = {.lex_state = 581, .external_lex_state = 2}, + [103] = {.lex_state = 581, .external_lex_state = 2}, + [104] = {.lex_state = 581, .external_lex_state = 2}, + [105] = {.lex_state = 581, .external_lex_state = 2}, + [106] = {.lex_state = 581, .external_lex_state = 2}, + [107] = {.lex_state = 581, .external_lex_state = 2}, + [108] = {.lex_state = 581, .external_lex_state = 2}, + [109] = {.lex_state = 581, .external_lex_state = 2}, + [110] = {.lex_state = 581, .external_lex_state = 2}, + [111] = {.lex_state = 581, .external_lex_state = 2}, + [112] = {.lex_state = 581, .external_lex_state = 2}, + [113] = {.lex_state = 581, .external_lex_state = 2}, + [114] = {.lex_state = 581, .external_lex_state = 2}, + [115] = {.lex_state = 581, .external_lex_state = 2}, + [116] = {.lex_state = 581, .external_lex_state = 2}, + [117] = {.lex_state = 581, .external_lex_state = 2}, + [118] = {.lex_state = 581, .external_lex_state = 2}, + [119] = {.lex_state = 581, .external_lex_state = 2}, + [120] = {.lex_state = 581, .external_lex_state = 2}, + [121] = {.lex_state = 581, .external_lex_state = 2}, + [122] = {.lex_state = 581, .external_lex_state = 2}, + [123] = {.lex_state = 581, .external_lex_state = 2}, + [124] = {.lex_state = 581, .external_lex_state = 2}, + [125] = {.lex_state = 581, .external_lex_state = 2}, + [126] = {.lex_state = 581, .external_lex_state = 2}, + [127] = {.lex_state = 581, .external_lex_state = 2}, + [128] = {.lex_state = 581, .external_lex_state = 2}, + [129] = {.lex_state = 581, .external_lex_state = 2}, + [130] = {.lex_state = 581, .external_lex_state = 2}, + [131] = {.lex_state = 581, .external_lex_state = 2}, + [132] = {.lex_state = 581, .external_lex_state = 2}, + [133] = {.lex_state = 581, .external_lex_state = 2}, + [134] = {.lex_state = 581, .external_lex_state = 2}, + [135] = {.lex_state = 581, .external_lex_state = 2}, + [136] = {.lex_state = 581, .external_lex_state = 2}, + [137] = {.lex_state = 581, .external_lex_state = 2}, + [138] = {.lex_state = 581, .external_lex_state = 2}, + [139] = {.lex_state = 581, .external_lex_state = 2}, + [140] = {.lex_state = 581, .external_lex_state = 2}, + [141] = {.lex_state = 581, .external_lex_state = 2}, + [142] = {.lex_state = 581, .external_lex_state = 2}, + [143] = {.lex_state = 581, .external_lex_state = 2}, + [144] = {.lex_state = 581, .external_lex_state = 2}, + [145] = {.lex_state = 581, .external_lex_state = 2}, + [146] = {.lex_state = 581, .external_lex_state = 2}, + [147] = {.lex_state = 581, .external_lex_state = 2}, + [148] = {.lex_state = 581, .external_lex_state = 2}, + [149] = {.lex_state = 581, .external_lex_state = 2}, + [150] = {.lex_state = 581, .external_lex_state = 2}, + [151] = {.lex_state = 581, .external_lex_state = 2}, + [152] = {.lex_state = 581, .external_lex_state = 2}, + [153] = {.lex_state = 581, .external_lex_state = 2}, + [154] = {.lex_state = 581, .external_lex_state = 2}, + [155] = {.lex_state = 581, .external_lex_state = 2}, + [156] = {.lex_state = 581, .external_lex_state = 2}, + [157] = {.lex_state = 581, .external_lex_state = 2}, + [158] = {.lex_state = 581, .external_lex_state = 2}, + [159] = {.lex_state = 581, .external_lex_state = 2}, + [160] = {.lex_state = 581, .external_lex_state = 2}, + [161] = {.lex_state = 581, .external_lex_state = 2}, + [162] = {.lex_state = 581, .external_lex_state = 2}, + [163] = {.lex_state = 581, .external_lex_state = 2}, + [164] = {.lex_state = 581, .external_lex_state = 2}, + [165] = {.lex_state = 581, .external_lex_state = 2}, + [166] = {.lex_state = 581, .external_lex_state = 2}, + [167] = {.lex_state = 581, .external_lex_state = 2}, + [168] = {.lex_state = 581, .external_lex_state = 2}, + [169] = {.lex_state = 581, .external_lex_state = 2}, + [170] = {.lex_state = 581, .external_lex_state = 2}, + [171] = {.lex_state = 581, .external_lex_state = 2}, + [172] = {.lex_state = 581, .external_lex_state = 2}, + [173] = {.lex_state = 581, .external_lex_state = 2}, + [174] = {.lex_state = 581, .external_lex_state = 2}, + [175] = {.lex_state = 581, .external_lex_state = 2}, + [176] = {.lex_state = 581, .external_lex_state = 2}, + [177] = {.lex_state = 581, .external_lex_state = 2}, + [178] = {.lex_state = 581, .external_lex_state = 2}, + [179] = {.lex_state = 581, .external_lex_state = 2}, + [180] = {.lex_state = 581, .external_lex_state = 2}, + [181] = {.lex_state = 581, .external_lex_state = 2}, + [182] = {.lex_state = 581, .external_lex_state = 2}, + [183] = {.lex_state = 581, .external_lex_state = 2}, + [184] = {.lex_state = 581, .external_lex_state = 2}, + [185] = {.lex_state = 581, .external_lex_state = 2}, + [186] = {.lex_state = 581, .external_lex_state = 2}, + [187] = {.lex_state = 581, .external_lex_state = 2}, + [188] = {.lex_state = 581, .external_lex_state = 2}, + [189] = {.lex_state = 581, .external_lex_state = 2}, + [190] = {.lex_state = 581, .external_lex_state = 2}, + [191] = {.lex_state = 581, .external_lex_state = 2}, + [192] = {.lex_state = 581, .external_lex_state = 2}, + [193] = {.lex_state = 581, .external_lex_state = 2}, + [194] = {.lex_state = 581, .external_lex_state = 2}, + [195] = {.lex_state = 581, .external_lex_state = 2}, + [196] = {.lex_state = 581, .external_lex_state = 2}, + [197] = {.lex_state = 581, .external_lex_state = 2}, + [198] = {.lex_state = 581, .external_lex_state = 2}, + [199] = {.lex_state = 581, .external_lex_state = 2}, + [200] = {.lex_state = 581, .external_lex_state = 2}, + [201] = {.lex_state = 581, .external_lex_state = 2}, + [202] = {.lex_state = 581, .external_lex_state = 2}, + [203] = {.lex_state = 581, .external_lex_state = 2}, + [204] = {.lex_state = 581, .external_lex_state = 2}, + [205] = {.lex_state = 581, .external_lex_state = 2}, + [206] = {.lex_state = 581, .external_lex_state = 2}, + [207] = {.lex_state = 581, .external_lex_state = 2}, + [208] = {.lex_state = 581, .external_lex_state = 2}, + [209] = {.lex_state = 581, .external_lex_state = 2}, + [210] = {.lex_state = 581, .external_lex_state = 2}, + [211] = {.lex_state = 581, .external_lex_state = 2}, + [212] = {.lex_state = 581, .external_lex_state = 2}, + [213] = {.lex_state = 581, .external_lex_state = 2}, + [214] = {.lex_state = 581, .external_lex_state = 2}, + [215] = {.lex_state = 581, .external_lex_state = 2}, + [216] = {.lex_state = 581, .external_lex_state = 2}, + [217] = {.lex_state = 581, .external_lex_state = 2}, + [218] = {.lex_state = 581, .external_lex_state = 2}, + [219] = {.lex_state = 581, .external_lex_state = 2}, + [220] = {.lex_state = 581, .external_lex_state = 2}, + [221] = {.lex_state = 581, .external_lex_state = 2}, + [222] = {.lex_state = 581, .external_lex_state = 2}, + [223] = {.lex_state = 581, .external_lex_state = 2}, + [224] = {.lex_state = 581, .external_lex_state = 2}, + [225] = {.lex_state = 581, .external_lex_state = 2}, + [226] = {.lex_state = 581, .external_lex_state = 2}, + [227] = {.lex_state = 581, .external_lex_state = 2}, + [228] = {.lex_state = 581, .external_lex_state = 2}, + [229] = {.lex_state = 581, .external_lex_state = 2}, + [230] = {.lex_state = 581, .external_lex_state = 2}, + [231] = {.lex_state = 581, .external_lex_state = 2}, + [232] = {.lex_state = 581, .external_lex_state = 2}, + [233] = {.lex_state = 581, .external_lex_state = 2}, + [234] = {.lex_state = 581, .external_lex_state = 2}, + [235] = {.lex_state = 581, .external_lex_state = 2}, + [236] = {.lex_state = 581, .external_lex_state = 2}, + [237] = {.lex_state = 581, .external_lex_state = 2}, + [238] = {.lex_state = 581, .external_lex_state = 2}, + [239] = {.lex_state = 581, .external_lex_state = 2}, + [240] = {.lex_state = 581, .external_lex_state = 2}, + [241] = {.lex_state = 581, .external_lex_state = 2}, + [242] = {.lex_state = 581, .external_lex_state = 2}, + [243] = {.lex_state = 581, .external_lex_state = 2}, + [244] = {.lex_state = 581, .external_lex_state = 2}, + [245] = {.lex_state = 581, .external_lex_state = 2}, + [246] = {.lex_state = 581, .external_lex_state = 2}, + [247] = {.lex_state = 581, .external_lex_state = 2}, + [248] = {.lex_state = 581, .external_lex_state = 2}, + [249] = {.lex_state = 581, .external_lex_state = 2}, + [250] = {.lex_state = 581, .external_lex_state = 2}, + [251] = {.lex_state = 581, .external_lex_state = 2}, + [252] = {.lex_state = 581, .external_lex_state = 2}, + [253] = {.lex_state = 581, .external_lex_state = 2}, + [254] = {.lex_state = 581, .external_lex_state = 2}, + [255] = {.lex_state = 581, .external_lex_state = 2}, + [256] = {.lex_state = 581, .external_lex_state = 2}, + [257] = {.lex_state = 581, .external_lex_state = 2}, + [258] = {.lex_state = 581, .external_lex_state = 2}, + [259] = {.lex_state = 581, .external_lex_state = 2}, + [260] = {.lex_state = 581, .external_lex_state = 2}, + [261] = {.lex_state = 581, .external_lex_state = 2}, + [262] = {.lex_state = 581, .external_lex_state = 2}, + [263] = {.lex_state = 581, .external_lex_state = 2}, + [264] = {.lex_state = 581, .external_lex_state = 2}, + [265] = {.lex_state = 581, .external_lex_state = 2}, + [266] = {.lex_state = 581, .external_lex_state = 2}, + [267] = {.lex_state = 581, .external_lex_state = 2}, + [268] = {.lex_state = 581, .external_lex_state = 2}, + [269] = {.lex_state = 581, .external_lex_state = 2}, + [270] = {.lex_state = 581, .external_lex_state = 2}, + [271] = {.lex_state = 581, .external_lex_state = 2}, + [272] = {.lex_state = 581, .external_lex_state = 2}, + [273] = {.lex_state = 581, .external_lex_state = 2}, + [274] = {.lex_state = 581, .external_lex_state = 2}, + [275] = {.lex_state = 581, .external_lex_state = 2}, + [276] = {.lex_state = 581, .external_lex_state = 2}, + [277] = {.lex_state = 581, .external_lex_state = 2}, + [278] = {.lex_state = 581, .external_lex_state = 2}, + [279] = {.lex_state = 581, .external_lex_state = 2}, + [280] = {.lex_state = 581, .external_lex_state = 2}, + [281] = {.lex_state = 581, .external_lex_state = 2}, + [282] = {.lex_state = 581, .external_lex_state = 2}, + [283] = {.lex_state = 581, .external_lex_state = 2}, + [284] = {.lex_state = 581, .external_lex_state = 2}, + [285] = {.lex_state = 581, .external_lex_state = 2}, + [286] = {.lex_state = 581, .external_lex_state = 2}, + [287] = {.lex_state = 581, .external_lex_state = 2}, + [288] = {.lex_state = 581, .external_lex_state = 2}, + [289] = {.lex_state = 581, .external_lex_state = 2}, + [290] = {.lex_state = 581, .external_lex_state = 2}, + [291] = {.lex_state = 581, .external_lex_state = 2}, + [292] = {.lex_state = 581, .external_lex_state = 2}, + [293] = {.lex_state = 581, .external_lex_state = 2}, + [294] = {.lex_state = 581, .external_lex_state = 2}, + [295] = {.lex_state = 581, .external_lex_state = 2}, + [296] = {.lex_state = 581, .external_lex_state = 2}, + [297] = {.lex_state = 581, .external_lex_state = 2}, + [298] = {.lex_state = 581, .external_lex_state = 2}, + [299] = {.lex_state = 581, .external_lex_state = 2}, + [300] = {.lex_state = 581, .external_lex_state = 2}, + [301] = {.lex_state = 581, .external_lex_state = 2}, + [302] = {.lex_state = 581, .external_lex_state = 2}, + [303] = {.lex_state = 581, .external_lex_state = 2}, + [304] = {.lex_state = 581, .external_lex_state = 2}, + [305] = {.lex_state = 581, .external_lex_state = 2}, + [306] = {.lex_state = 581, .external_lex_state = 2}, + [307] = {.lex_state = 581, .external_lex_state = 2}, + [308] = {.lex_state = 581, .external_lex_state = 2}, + [309] = {.lex_state = 581, .external_lex_state = 2}, + [310] = {.lex_state = 581, .external_lex_state = 2}, + [311] = {.lex_state = 581, .external_lex_state = 2}, + [312] = {.lex_state = 581, .external_lex_state = 2}, + [313] = {.lex_state = 581, .external_lex_state = 2}, + [314] = {.lex_state = 581, .external_lex_state = 2}, + [315] = {.lex_state = 581, .external_lex_state = 2}, + [316] = {.lex_state = 581, .external_lex_state = 2}, + [317] = {.lex_state = 581, .external_lex_state = 2}, + [318] = {.lex_state = 581, .external_lex_state = 2}, + [319] = {.lex_state = 581, .external_lex_state = 2}, + [320] = {.lex_state = 581, .external_lex_state = 2}, + [321] = {.lex_state = 581, .external_lex_state = 2}, + [322] = {.lex_state = 581, .external_lex_state = 2}, + [323] = {.lex_state = 581, .external_lex_state = 2}, + [324] = {.lex_state = 581, .external_lex_state = 2}, + [325] = {.lex_state = 581, .external_lex_state = 2}, + [326] = {.lex_state = 581, .external_lex_state = 2}, + [327] = {.lex_state = 581, .external_lex_state = 2}, + [328] = {.lex_state = 581, .external_lex_state = 2}, + [329] = {.lex_state = 581, .external_lex_state = 2}, + [330] = {.lex_state = 581, .external_lex_state = 2}, + [331] = {.lex_state = 581, .external_lex_state = 2}, + [332] = {.lex_state = 581, .external_lex_state = 2}, + [333] = {.lex_state = 581, .external_lex_state = 2}, + [334] = {.lex_state = 581, .external_lex_state = 2}, + [335] = {.lex_state = 581, .external_lex_state = 2}, + [336] = {.lex_state = 581, .external_lex_state = 2}, + [337] = {.lex_state = 581, .external_lex_state = 2}, + [338] = {.lex_state = 581, .external_lex_state = 2}, + [339] = {.lex_state = 581, .external_lex_state = 2}, + [340] = {.lex_state = 581, .external_lex_state = 2}, + [341] = {.lex_state = 581, .external_lex_state = 2}, + [342] = {.lex_state = 581, .external_lex_state = 2}, + [343] = {.lex_state = 581, .external_lex_state = 2}, + [344] = {.lex_state = 581, .external_lex_state = 2}, + [345] = {.lex_state = 581, .external_lex_state = 2}, + [346] = {.lex_state = 581, .external_lex_state = 2}, + [347] = {.lex_state = 581, .external_lex_state = 2}, + [348] = {.lex_state = 581, .external_lex_state = 2}, + [349] = {.lex_state = 581, .external_lex_state = 2}, + [350] = {.lex_state = 581, .external_lex_state = 2}, + [351] = {.lex_state = 581, .external_lex_state = 2}, + [352] = {.lex_state = 581, .external_lex_state = 2}, + [353] = {.lex_state = 581, .external_lex_state = 2}, + [354] = {.lex_state = 581, .external_lex_state = 2}, + [355] = {.lex_state = 581, .external_lex_state = 2}, + [356] = {.lex_state = 581, .external_lex_state = 2}, + [357] = {.lex_state = 581, .external_lex_state = 2}, + [358] = {.lex_state = 581, .external_lex_state = 2}, + [359] = {.lex_state = 581, .external_lex_state = 2}, + [360] = {.lex_state = 581, .external_lex_state = 2}, + [361] = {.lex_state = 581, .external_lex_state = 2}, + [362] = {.lex_state = 581, .external_lex_state = 2}, + [363] = {.lex_state = 581, .external_lex_state = 2}, + [364] = {.lex_state = 581, .external_lex_state = 2}, + [365] = {.lex_state = 581, .external_lex_state = 2}, + [366] = {.lex_state = 581, .external_lex_state = 2}, + [367] = {.lex_state = 581, .external_lex_state = 2}, + [368] = {.lex_state = 581, .external_lex_state = 2}, + [369] = {.lex_state = 581, .external_lex_state = 2}, + [370] = {.lex_state = 581, .external_lex_state = 2}, + [371] = {.lex_state = 581, .external_lex_state = 2}, + [372] = {.lex_state = 581, .external_lex_state = 2}, + [373] = {.lex_state = 581, .external_lex_state = 2}, + [374] = {.lex_state = 581, .external_lex_state = 2}, + [375] = {.lex_state = 581, .external_lex_state = 2}, + [376] = {.lex_state = 581, .external_lex_state = 2}, + [377] = {.lex_state = 581, .external_lex_state = 2}, + [378] = {.lex_state = 581, .external_lex_state = 2}, + [379] = {.lex_state = 581, .external_lex_state = 2}, + [380] = {.lex_state = 581, .external_lex_state = 2}, + [381] = {.lex_state = 581, .external_lex_state = 2}, + [382] = {.lex_state = 581, .external_lex_state = 2}, + [383] = {.lex_state = 581, .external_lex_state = 2}, + [384] = {.lex_state = 581, .external_lex_state = 2}, + [385] = {.lex_state = 581, .external_lex_state = 2}, + [386] = {.lex_state = 581, .external_lex_state = 2}, + [387] = {.lex_state = 581, .external_lex_state = 2}, + [388] = {.lex_state = 581, .external_lex_state = 2}, + [389] = {.lex_state = 581, .external_lex_state = 2}, + [390] = {.lex_state = 581, .external_lex_state = 2}, + [391] = {.lex_state = 581, .external_lex_state = 2}, + [392] = {.lex_state = 581, .external_lex_state = 2}, + [393] = {.lex_state = 581, .external_lex_state = 2}, + [394] = {.lex_state = 581, .external_lex_state = 2}, + [395] = {.lex_state = 581, .external_lex_state = 2}, + [396] = {.lex_state = 581, .external_lex_state = 2}, + [397] = {.lex_state = 581, .external_lex_state = 2}, + [398] = {.lex_state = 581, .external_lex_state = 2}, + [399] = {.lex_state = 581, .external_lex_state = 2}, + [400] = {.lex_state = 414, .external_lex_state = 7}, + [401] = {.lex_state = 415, .external_lex_state = 8}, + [402] = {.lex_state = 415, .external_lex_state = 8}, + [403] = {.lex_state = 415, .external_lex_state = 8}, + [404] = {.lex_state = 415, .external_lex_state = 8}, + [405] = {.lex_state = 412, .external_lex_state = 7}, + [406] = {.lex_state = 415, .external_lex_state = 8}, + [407] = {.lex_state = 415, .external_lex_state = 8}, + [408] = {.lex_state = 415, .external_lex_state = 8}, + [409] = {.lex_state = 413, .external_lex_state = 7}, + [410] = {.lex_state = 415, .external_lex_state = 8}, + [411] = {.lex_state = 13, .external_lex_state = 9}, + [412] = {.lex_state = 410, .external_lex_state = 10}, + [413] = {.lex_state = 178, .external_lex_state = 4}, + [414] = {.lex_state = 178, .external_lex_state = 4}, + [415] = {.lex_state = 178, .external_lex_state = 4}, + [416] = {.lex_state = 178, .external_lex_state = 4}, + [417] = {.lex_state = 178, .external_lex_state = 4}, + [418] = {.lex_state = 178, .external_lex_state = 4}, + [419] = {.lex_state = 178, .external_lex_state = 4}, + [420] = {.lex_state = 178, .external_lex_state = 4}, + [421] = {.lex_state = 178, .external_lex_state = 4}, + [422] = {.lex_state = 178, .external_lex_state = 4}, + [423] = {.lex_state = 178, .external_lex_state = 4}, + [424] = {.lex_state = 178, .external_lex_state = 4}, + [425] = {.lex_state = 178, .external_lex_state = 4}, + [426] = {.lex_state = 178, .external_lex_state = 4}, + [427] = {.lex_state = 178, .external_lex_state = 4}, + [428] = {.lex_state = 178, .external_lex_state = 4}, + [429] = {.lex_state = 178, .external_lex_state = 4}, + [430] = {.lex_state = 178, .external_lex_state = 4}, + [431] = {.lex_state = 178, .external_lex_state = 4}, + [432] = {.lex_state = 178, .external_lex_state = 4}, + [433] = {.lex_state = 178, .external_lex_state = 4}, + [434] = {.lex_state = 178, .external_lex_state = 4}, + [435] = {.lex_state = 178, .external_lex_state = 4}, + [436] = {.lex_state = 178, .external_lex_state = 4}, + [437] = {.lex_state = 178, .external_lex_state = 4}, + [438] = {.lex_state = 181, .external_lex_state = 9}, + [439] = {.lex_state = 181, .external_lex_state = 9}, + [440] = {.lex_state = 181, .external_lex_state = 9}, + [441] = {.lex_state = 434, .external_lex_state = 6}, + [442] = {.lex_state = 434, .external_lex_state = 6}, + [443] = {.lex_state = 434, .external_lex_state = 6}, + [444] = {.lex_state = 434, .external_lex_state = 6}, + [445] = {.lex_state = 434, .external_lex_state = 6}, + [446] = {.lex_state = 434, .external_lex_state = 6}, + [447] = {.lex_state = 434, .external_lex_state = 6}, + [448] = {.lex_state = 434, .external_lex_state = 6}, + [449] = {.lex_state = 434, .external_lex_state = 6}, + [450] = {.lex_state = 434, .external_lex_state = 6}, + [451] = {.lex_state = 434, .external_lex_state = 6}, + [452] = {.lex_state = 433, .external_lex_state = 2}, + [453] = {.lex_state = 434, .external_lex_state = 6}, + [454] = {.lex_state = 434, .external_lex_state = 6}, + [455] = {.lex_state = 434, .external_lex_state = 6}, + [456] = {.lex_state = 434, .external_lex_state = 6}, + [457] = {.lex_state = 434, .external_lex_state = 6}, + [458] = {.lex_state = 433, .external_lex_state = 2}, + [459] = {.lex_state = 434, .external_lex_state = 6}, + [460] = {.lex_state = 434, .external_lex_state = 6}, + [461] = {.lex_state = 434, .external_lex_state = 6}, + [462] = {.lex_state = 434, .external_lex_state = 6}, + [463] = {.lex_state = 434, .external_lex_state = 6}, + [464] = {.lex_state = 434, .external_lex_state = 6}, + [465] = {.lex_state = 434, .external_lex_state = 6}, + [466] = {.lex_state = 434, .external_lex_state = 6}, + [467] = {.lex_state = 434, .external_lex_state = 6}, + [468] = {.lex_state = 435, .external_lex_state = 10}, + [469] = {.lex_state = 435, .external_lex_state = 10}, + [470] = {.lex_state = 435, .external_lex_state = 10}, + [471] = {.lex_state = 182, .external_lex_state = 11}, + [472] = {.lex_state = 182, .external_lex_state = 11}, + [473] = {.lex_state = 183, .external_lex_state = 12}, + [474] = {.lex_state = 182, .external_lex_state = 11}, + [475] = {.lex_state = 183, .external_lex_state = 12}, + [476] = {.lex_state = 555, .external_lex_state = 9}, + [477] = {.lex_state = 556, .external_lex_state = 13}, + [478] = {.lex_state = 186, .external_lex_state = 9}, + [479] = {.lex_state = 187, .external_lex_state = 13}, + [480] = {.lex_state = 187, .external_lex_state = 13}, + [481] = {.lex_state = 555, .external_lex_state = 9}, + [482] = {.lex_state = 186, .external_lex_state = 9}, + [483] = {.lex_state = 187, .external_lex_state = 13}, + [484] = {.lex_state = 556, .external_lex_state = 13}, + [485] = {.lex_state = 556, .external_lex_state = 13}, + [486] = {.lex_state = 183, .external_lex_state = 14}, + [487] = {.lex_state = 183, .external_lex_state = 14}, + [488] = {.lex_state = 183, .external_lex_state = 14}, + [489] = {.lex_state = 186, .external_lex_state = 15}, + [490] = {.lex_state = 555, .external_lex_state = 15}, + [491] = {.lex_state = 186, .external_lex_state = 15}, + [492] = {.lex_state = 555, .external_lex_state = 15}, + [493] = {.lex_state = 186, .external_lex_state = 15}, + [494] = {.lex_state = 555, .external_lex_state = 15}, + [495] = {.lex_state = 188, .external_lex_state = 11}, + [496] = {.lex_state = 188, .external_lex_state = 11}, + [497] = {.lex_state = 188, .external_lex_state = 11}, + [498] = {.lex_state = 556, .external_lex_state = 13}, + [499] = {.lex_state = 555, .external_lex_state = 9}, + [500] = {.lex_state = 556, .external_lex_state = 13}, + [501] = {.lex_state = 555, .external_lex_state = 9}, + [502] = {.lex_state = 581, .external_lex_state = 2}, + [503] = {.lex_state = 188, .external_lex_state = 11}, + [504] = {.lex_state = 581, .external_lex_state = 2}, + [505] = {.lex_state = 557, .external_lex_state = 13}, + [506] = {.lex_state = 188, .external_lex_state = 11}, + [507] = {.lex_state = 190, .external_lex_state = 13}, + [508] = {.lex_state = 557, .external_lex_state = 13}, + [509] = {.lex_state = 190, .external_lex_state = 13}, + [510] = {.lex_state = 581, .external_lex_state = 2}, + [511] = {.lex_state = 190, .external_lex_state = 13}, + [512] = {.lex_state = 557, .external_lex_state = 13}, + [513] = {.lex_state = 476, .external_lex_state = 2}, + [514] = {.lex_state = 191, .external_lex_state = 16}, + [515] = {.lex_state = 476, .external_lex_state = 2}, + [516] = {.lex_state = 557, .external_lex_state = 13}, + [517] = {.lex_state = 431, .external_lex_state = 5}, + [518] = {.lex_state = 476, .external_lex_state = 2}, + [519] = {.lex_state = 191, .external_lex_state = 16}, + [520] = {.lex_state = 191, .external_lex_state = 16}, + [521] = {.lex_state = 557, .external_lex_state = 13}, + [522] = {.lex_state = 476, .external_lex_state = 2}, + [523] = {.lex_state = 190, .external_lex_state = 13}, + [524] = {.lex_state = 190, .external_lex_state = 13}, + [525] = {.lex_state = 555, .external_lex_state = 15}, + [526] = {.lex_state = 476, .external_lex_state = 2}, + [527] = {.lex_state = 431, .external_lex_state = 5}, + [528] = {.lex_state = 555, .external_lex_state = 15}, + [529] = {.lex_state = 192, .external_lex_state = 12}, + [530] = {.lex_state = 558, .external_lex_state = 17}, + [531] = {.lex_state = 194, .external_lex_state = 17}, + [532] = {.lex_state = 195, .external_lex_state = 16}, + [533] = {.lex_state = 195, .external_lex_state = 16}, + [534] = {.lex_state = 195, .external_lex_state = 16}, + [535] = {.lex_state = 558, .external_lex_state = 17}, + [536] = {.lex_state = 558, .external_lex_state = 17}, + [537] = {.lex_state = 196, .external_lex_state = 9}, + [538] = {.lex_state = 194, .external_lex_state = 17}, + [539] = {.lex_state = 194, .external_lex_state = 17}, + [540] = {.lex_state = 197, .external_lex_state = 11}, + [541] = {.lex_state = 198, .external_lex_state = 11}, + [542] = {.lex_state = 192, .external_lex_state = 14}, + [543] = {.lex_state = 559, .external_lex_state = 9}, + [544] = {.lex_state = 195, .external_lex_state = 16}, + [545] = {.lex_state = 560, .external_lex_state = 17}, + [546] = {.lex_state = 459, .external_lex_state = 18}, + [547] = {.lex_state = 459, .external_lex_state = 18}, + [548] = {.lex_state = 462, .external_lex_state = 19}, + [549] = {.lex_state = 561, .external_lex_state = 13}, + [550] = {.lex_state = 462, .external_lex_state = 19}, + [551] = {.lex_state = 202, .external_lex_state = 17}, + [552] = {.lex_state = 202, .external_lex_state = 17}, + [553] = {.lex_state = 202, .external_lex_state = 17}, + [554] = {.lex_state = 562, .external_lex_state = 13}, + [555] = {.lex_state = 204, .external_lex_state = 13}, + [556] = {.lex_state = 205, .external_lex_state = 16}, + [557] = {.lex_state = 205, .external_lex_state = 16}, + [558] = {.lex_state = 559, .external_lex_state = 15}, + [559] = {.lex_state = 459, .external_lex_state = 18}, + [560] = {.lex_state = 206, .external_lex_state = 13}, + [561] = {.lex_state = 196, .external_lex_state = 15}, + [562] = {.lex_state = 560, .external_lex_state = 17}, + [563] = {.lex_state = 205, .external_lex_state = 16}, + [564] = {.lex_state = 195, .external_lex_state = 16}, + [565] = {.lex_state = 560, .external_lex_state = 17}, + [566] = {.lex_state = 560, .external_lex_state = 17}, + [567] = {.lex_state = 563, .external_lex_state = 17}, + [568] = {.lex_state = 208, .external_lex_state = 20}, + [569] = {.lex_state = 208, .external_lex_state = 20}, + [570] = {.lex_state = 558, .external_lex_state = 17}, + [571] = {.lex_state = 563, .external_lex_state = 17}, + [572] = {.lex_state = 208, .external_lex_state = 20}, + [573] = {.lex_state = 208, .external_lex_state = 20}, + [574] = {.lex_state = 205, .external_lex_state = 16}, + [575] = {.lex_state = 205, .external_lex_state = 16}, + [576] = {.lex_state = 208, .external_lex_state = 20}, + [577] = {.lex_state = 558, .external_lex_state = 17}, + [578] = {.lex_state = 208, .external_lex_state = 20}, + [579] = {.lex_state = 560, .external_lex_state = 17}, + [580] = {.lex_state = 581, .external_lex_state = 2}, + [581] = {.lex_state = 208, .external_lex_state = 20}, + [582] = {.lex_state = 209, .external_lex_state = 17}, + [583] = {.lex_state = 208, .external_lex_state = 20}, + [584] = {.lex_state = 209, .external_lex_state = 17}, + [585] = {.lex_state = 209, .external_lex_state = 17}, + [586] = {.lex_state = 202, .external_lex_state = 17}, + [587] = {.lex_state = 202, .external_lex_state = 17}, + [588] = {.lex_state = 432, .external_lex_state = 2}, + [589] = {.lex_state = 563, .external_lex_state = 17}, + [590] = {.lex_state = 208, .external_lex_state = 20}, + [591] = {.lex_state = 208, .external_lex_state = 20}, + [592] = {.lex_state = 210, .external_lex_state = 16}, + [593] = {.lex_state = 581, .external_lex_state = 2}, + [594] = {.lex_state = 462, .external_lex_state = 21}, + [595] = {.lex_state = 479, .external_lex_state = 22}, + [596] = {.lex_state = 479, .external_lex_state = 22}, + [597] = {.lex_state = 209, .external_lex_state = 17}, + [598] = {.lex_state = 209, .external_lex_state = 17}, + [599] = {.lex_state = 560, .external_lex_state = 17}, + [600] = {.lex_state = 560, .external_lex_state = 17}, + [601] = {.lex_state = 462, .external_lex_state = 21}, + [602] = {.lex_state = 563, .external_lex_state = 17}, + [603] = {.lex_state = 462, .external_lex_state = 21}, + [604] = {.lex_state = 581, .external_lex_state = 2}, + [605] = {.lex_state = 211, .external_lex_state = 16}, + [606] = {.lex_state = 563, .external_lex_state = 17}, + [607] = {.lex_state = 479, .external_lex_state = 22}, + [608] = {.lex_state = 479, .external_lex_state = 22}, + [609] = {.lex_state = 480, .external_lex_state = 18}, + [610] = {.lex_state = 188, .external_lex_state = 11}, + [611] = {.lex_state = 188, .external_lex_state = 11}, + [612] = {.lex_state = 212, .external_lex_state = 17}, + [613] = {.lex_state = 479, .external_lex_state = 22}, + [614] = {.lex_state = 563, .external_lex_state = 17}, + [615] = {.lex_state = 563, .external_lex_state = 17}, + [616] = {.lex_state = 480, .external_lex_state = 18}, + [617] = {.lex_state = 560, .external_lex_state = 17}, + [618] = {.lex_state = 564, .external_lex_state = 17}, + [619] = {.lex_state = 188, .external_lex_state = 11}, + [620] = {.lex_state = 560, .external_lex_state = 17}, + [621] = {.lex_state = 188, .external_lex_state = 11}, + [622] = {.lex_state = 214, .external_lex_state = 16}, + [623] = {.lex_state = 565, .external_lex_state = 17}, + [624] = {.lex_state = 216, .external_lex_state = 17}, + [625] = {.lex_state = 480, .external_lex_state = 18}, + [626] = {.lex_state = 563, .external_lex_state = 17}, + [627] = {.lex_state = 190, .external_lex_state = 13}, + [628] = {.lex_state = 480, .external_lex_state = 18}, + [629] = {.lex_state = 477, .external_lex_state = 23}, + [630] = {.lex_state = 557, .external_lex_state = 13}, + [631] = {.lex_state = 477, .external_lex_state = 23}, + [632] = {.lex_state = 480, .external_lex_state = 18}, + [633] = {.lex_state = 557, .external_lex_state = 13}, + [634] = {.lex_state = 566, .external_lex_state = 17}, + [635] = {.lex_state = 477, .external_lex_state = 23}, + [636] = {.lex_state = 190, .external_lex_state = 13}, + [637] = {.lex_state = 218, .external_lex_state = 17}, + [638] = {.lex_state = 477, .external_lex_state = 23}, + [639] = {.lex_state = 477, .external_lex_state = 23}, + [640] = {.lex_state = 557, .external_lex_state = 13}, + [641] = {.lex_state = 190, .external_lex_state = 13}, + [642] = {.lex_state = 190, .external_lex_state = 13}, + [643] = {.lex_state = 557, .external_lex_state = 13}, + [644] = {.lex_state = 563, .external_lex_state = 17}, + [645] = {.lex_state = 417, .external_lex_state = 19}, + [646] = {.lex_state = 219, .external_lex_state = 24}, + [647] = {.lex_state = 219, .external_lex_state = 24}, + [648] = {.lex_state = 469, .external_lex_state = 25}, + [649] = {.lex_state = 219, .external_lex_state = 24}, + [650] = {.lex_state = 220, .external_lex_state = 26}, + [651] = {.lex_state = 220, .external_lex_state = 26}, + [652] = {.lex_state = 220, .external_lex_state = 26}, + [653] = {.lex_state = 483, .external_lex_state = 27}, + [654] = {.lex_state = 483, .external_lex_state = 27}, + [655] = {.lex_state = 220, .external_lex_state = 26}, + [656] = {.lex_state = 219, .external_lex_state = 24}, + [657] = {.lex_state = 469, .external_lex_state = 25}, + [658] = {.lex_state = 483, .external_lex_state = 27}, + [659] = {.lex_state = 219, .external_lex_state = 24}, + [660] = {.lex_state = 220, .external_lex_state = 26}, + [661] = {.lex_state = 469, .external_lex_state = 25}, + [662] = {.lex_state = 423, .external_lex_state = 22}, + [663] = {.lex_state = 220, .external_lex_state = 26}, + [664] = {.lex_state = 220, .external_lex_state = 26}, + [665] = {.lex_state = 221, .external_lex_state = 28}, + [666] = {.lex_state = 465, .external_lex_state = 25}, + [667] = {.lex_state = 567, .external_lex_state = 28}, + [668] = {.lex_state = 220, .external_lex_state = 26}, + [669] = {.lex_state = 416, .external_lex_state = 18}, + [670] = {.lex_state = 220, .external_lex_state = 26}, + [671] = {.lex_state = 469, .external_lex_state = 25}, + [672] = {.lex_state = 469, .external_lex_state = 25}, + [673] = {.lex_state = 219, .external_lex_state = 29}, + [674] = {.lex_state = 557, .external_lex_state = 13}, + [675] = {.lex_state = 219, .external_lex_state = 29}, + [676] = {.lex_state = 219, .external_lex_state = 29}, + [677] = {.lex_state = 221, .external_lex_state = 28}, + [678] = {.lex_state = 223, .external_lex_state = 4}, + [679] = {.lex_state = 219, .external_lex_state = 24}, + [680] = {.lex_state = 223, .external_lex_state = 4}, + [681] = {.lex_state = 224, .external_lex_state = 26}, + [682] = {.lex_state = 568, .external_lex_state = 4}, + [683] = {.lex_state = 224, .external_lex_state = 26}, + [684] = {.lex_state = 465, .external_lex_state = 25}, + [685] = {.lex_state = 221, .external_lex_state = 28}, + [686] = {.lex_state = 424, .external_lex_state = 18}, + [687] = {.lex_state = 219, .external_lex_state = 24}, + [688] = {.lex_state = 219, .external_lex_state = 24}, + [689] = {.lex_state = 557, .external_lex_state = 13}, + [690] = {.lex_state = 223, .external_lex_state = 4}, + [691] = {.lex_state = 557, .external_lex_state = 13}, + [692] = {.lex_state = 568, .external_lex_state = 4}, + [693] = {.lex_state = 220, .external_lex_state = 26}, + [694] = {.lex_state = 567, .external_lex_state = 28}, + [695] = {.lex_state = 220, .external_lex_state = 26}, + [696] = {.lex_state = 220, .external_lex_state = 26}, + [697] = {.lex_state = 557, .external_lex_state = 13}, + [698] = {.lex_state = 417, .external_lex_state = 21}, + [699] = {.lex_state = 557, .external_lex_state = 13}, + [700] = {.lex_state = 224, .external_lex_state = 26}, + [701] = {.lex_state = 221, .external_lex_state = 28}, + [702] = {.lex_state = 224, .external_lex_state = 26}, + [703] = {.lex_state = 221, .external_lex_state = 28}, + [704] = {.lex_state = 557, .external_lex_state = 13}, + [705] = {.lex_state = 461, .external_lex_state = 27}, + [706] = {.lex_state = 221, .external_lex_state = 28}, + [707] = {.lex_state = 461, .external_lex_state = 27}, + [708] = {.lex_state = 220, .external_lex_state = 26}, + [709] = {.lex_state = 223, .external_lex_state = 4}, + [710] = {.lex_state = 461, .external_lex_state = 27}, + [711] = {.lex_state = 219, .external_lex_state = 24}, + [712] = {.lex_state = 567, .external_lex_state = 28}, + [713] = {.lex_state = 219, .external_lex_state = 24}, + [714] = {.lex_state = 219, .external_lex_state = 24}, + [715] = {.lex_state = 219, .external_lex_state = 24}, + [716] = {.lex_state = 219, .external_lex_state = 24}, + [717] = {.lex_state = 219, .external_lex_state = 24}, + [718] = {.lex_state = 568, .external_lex_state = 4}, + [719] = {.lex_state = 219, .external_lex_state = 24}, + [720] = {.lex_state = 219, .external_lex_state = 24}, + [721] = {.lex_state = 224, .external_lex_state = 26}, + [722] = {.lex_state = 568, .external_lex_state = 4}, + [723] = {.lex_state = 224, .external_lex_state = 26}, + [724] = {.lex_state = 220, .external_lex_state = 26}, + [725] = {.lex_state = 220, .external_lex_state = 26}, + [726] = {.lex_state = 219, .external_lex_state = 29}, + [727] = {.lex_state = 557, .external_lex_state = 13}, + [728] = {.lex_state = 224, .external_lex_state = 26}, + [729] = {.lex_state = 219, .external_lex_state = 24}, + [730] = {.lex_state = 220, .external_lex_state = 26}, + [731] = {.lex_state = 219, .external_lex_state = 24}, + [732] = {.lex_state = 220, .external_lex_state = 26}, + [733] = {.lex_state = 220, .external_lex_state = 26}, + [734] = {.lex_state = 568, .external_lex_state = 4}, + [735] = {.lex_state = 224, .external_lex_state = 26}, + [736] = {.lex_state = 220, .external_lex_state = 26}, + [737] = {.lex_state = 219, .external_lex_state = 29}, + [738] = {.lex_state = 219, .external_lex_state = 29}, + [739] = {.lex_state = 220, .external_lex_state = 26}, + [740] = {.lex_state = 224, .external_lex_state = 26}, + [741] = {.lex_state = 220, .external_lex_state = 26}, + [742] = {.lex_state = 219, .external_lex_state = 24}, + [743] = {.lex_state = 219, .external_lex_state = 24}, + [744] = {.lex_state = 219, .external_lex_state = 24}, + [745] = {.lex_state = 220, .external_lex_state = 26}, + [746] = {.lex_state = 219, .external_lex_state = 29}, + [747] = {.lex_state = 223, .external_lex_state = 4}, + [748] = {.lex_state = 224, .external_lex_state = 26}, + [749] = {.lex_state = 220, .external_lex_state = 26}, + [750] = {.lex_state = 219, .external_lex_state = 24}, + [751] = {.lex_state = 220, .external_lex_state = 26}, + [752] = {.lex_state = 219, .external_lex_state = 24}, + [753] = {.lex_state = 219, .external_lex_state = 24}, + [754] = {.lex_state = 219, .external_lex_state = 24}, + [755] = {.lex_state = 567, .external_lex_state = 28}, + [756] = {.lex_state = 220, .external_lex_state = 26}, + [757] = {.lex_state = 567, .external_lex_state = 28}, + [758] = {.lex_state = 567, .external_lex_state = 28}, + [759] = {.lex_state = 465, .external_lex_state = 25}, + [760] = {.lex_state = 220, .external_lex_state = 26}, + [761] = {.lex_state = 224, .external_lex_state = 26}, + [762] = {.lex_state = 182, .external_lex_state = 11}, + [763] = {.lex_state = 226, .external_lex_state = 28}, + [764] = {.lex_state = 568, .external_lex_state = 30}, + [765] = {.lex_state = 226, .external_lex_state = 28}, + [766] = {.lex_state = 569, .external_lex_state = 28}, + [767] = {.lex_state = 226, .external_lex_state = 28}, + [768] = {.lex_state = 569, .external_lex_state = 28}, + [769] = {.lex_state = 223, .external_lex_state = 30}, + [770] = {.lex_state = 223, .external_lex_state = 30}, + [771] = {.lex_state = 568, .external_lex_state = 4}, + [772] = {.lex_state = 568, .external_lex_state = 4}, + [773] = {.lex_state = 183, .external_lex_state = 12}, + [774] = {.lex_state = 224, .external_lex_state = 26}, + [775] = {.lex_state = 224, .external_lex_state = 26}, + [776] = {.lex_state = 224, .external_lex_state = 26}, + [777] = {.lex_state = 224, .external_lex_state = 26}, + [778] = {.lex_state = 568, .external_lex_state = 4}, + [779] = {.lex_state = 224, .external_lex_state = 26}, + [780] = {.lex_state = 224, .external_lex_state = 26}, + [781] = {.lex_state = 568, .external_lex_state = 4}, + [782] = {.lex_state = 568, .external_lex_state = 4}, + [783] = {.lex_state = 219, .external_lex_state = 29}, + [784] = {.lex_state = 568, .external_lex_state = 4}, + [785] = {.lex_state = 568, .external_lex_state = 4}, + [786] = {.lex_state = 568, .external_lex_state = 4}, + [787] = {.lex_state = 219, .external_lex_state = 29}, + [788] = {.lex_state = 182, .external_lex_state = 11}, + [789] = {.lex_state = 219, .external_lex_state = 29}, + [790] = {.lex_state = 219, .external_lex_state = 29}, + [791] = {.lex_state = 219, .external_lex_state = 29}, + [792] = {.lex_state = 219, .external_lex_state = 29}, + [793] = {.lex_state = 568, .external_lex_state = 4}, + [794] = {.lex_state = 219, .external_lex_state = 29}, + [795] = {.lex_state = 224, .external_lex_state = 26}, + [796] = {.lex_state = 224, .external_lex_state = 26}, + [797] = {.lex_state = 569, .external_lex_state = 28}, + [798] = {.lex_state = 223, .external_lex_state = 4}, + [799] = {.lex_state = 219, .external_lex_state = 29}, + [800] = {.lex_state = 224, .external_lex_state = 26}, + [801] = {.lex_state = 226, .external_lex_state = 28}, + [802] = {.lex_state = 224, .external_lex_state = 26}, + [803] = {.lex_state = 224, .external_lex_state = 26}, + [804] = {.lex_state = 223, .external_lex_state = 4}, + [805] = {.lex_state = 219, .external_lex_state = 29}, + [806] = {.lex_state = 226, .external_lex_state = 28}, + [807] = {.lex_state = 223, .external_lex_state = 4}, + [808] = {.lex_state = 223, .external_lex_state = 4}, + [809] = {.lex_state = 568, .external_lex_state = 30}, + [810] = {.lex_state = 223, .external_lex_state = 4}, + [811] = {.lex_state = 221, .external_lex_state = 28}, + [812] = {.lex_state = 223, .external_lex_state = 4}, + [813] = {.lex_state = 223, .external_lex_state = 4}, + [814] = {.lex_state = 226, .external_lex_state = 28}, + [815] = {.lex_state = 221, .external_lex_state = 28}, + [816] = {.lex_state = 221, .external_lex_state = 28}, + [817] = {.lex_state = 221, .external_lex_state = 28}, + [818] = {.lex_state = 221, .external_lex_state = 28}, + [819] = {.lex_state = 569, .external_lex_state = 28}, + [820] = {.lex_state = 219, .external_lex_state = 29}, + [821] = {.lex_state = 223, .external_lex_state = 30}, + [822] = {.lex_state = 219, .external_lex_state = 29}, + [823] = {.lex_state = 219, .external_lex_state = 29}, + [824] = {.lex_state = 223, .external_lex_state = 30}, + [825] = {.lex_state = 221, .external_lex_state = 28}, + [826] = {.lex_state = 221, .external_lex_state = 28}, + [827] = {.lex_state = 224, .external_lex_state = 26}, + [828] = {.lex_state = 224, .external_lex_state = 26}, + [829] = {.lex_state = 224, .external_lex_state = 26}, + [830] = {.lex_state = 224, .external_lex_state = 26}, + [831] = {.lex_state = 224, .external_lex_state = 26}, + [832] = {.lex_state = 223, .external_lex_state = 30}, + [833] = {.lex_state = 569, .external_lex_state = 28}, + [834] = {.lex_state = 223, .external_lex_state = 30}, + [835] = {.lex_state = 223, .external_lex_state = 4}, + [836] = {.lex_state = 223, .external_lex_state = 4}, + [837] = {.lex_state = 224, .external_lex_state = 26}, + [838] = {.lex_state = 224, .external_lex_state = 26}, + [839] = {.lex_state = 224, .external_lex_state = 26}, + [840] = {.lex_state = 219, .external_lex_state = 29}, + [841] = {.lex_state = 219, .external_lex_state = 29}, + [842] = {.lex_state = 219, .external_lex_state = 29}, + [843] = {.lex_state = 219, .external_lex_state = 29}, + [844] = {.lex_state = 219, .external_lex_state = 29}, + [845] = {.lex_state = 221, .external_lex_state = 28}, + [846] = {.lex_state = 221, .external_lex_state = 28}, + [847] = {.lex_state = 223, .external_lex_state = 4}, + [848] = {.lex_state = 223, .external_lex_state = 4}, + [849] = {.lex_state = 226, .external_lex_state = 28}, + [850] = {.lex_state = 219, .external_lex_state = 29}, + [851] = {.lex_state = 219, .external_lex_state = 29}, + [852] = {.lex_state = 219, .external_lex_state = 29}, + [853] = {.lex_state = 221, .external_lex_state = 28}, + [854] = {.lex_state = 221, .external_lex_state = 28}, + [855] = {.lex_state = 221, .external_lex_state = 28}, + [856] = {.lex_state = 223, .external_lex_state = 4}, + [857] = {.lex_state = 223, .external_lex_state = 4}, + [858] = {.lex_state = 223, .external_lex_state = 4}, + [859] = {.lex_state = 223, .external_lex_state = 4}, + [860] = {.lex_state = 223, .external_lex_state = 4}, + [861] = {.lex_state = 221, .external_lex_state = 28}, + [862] = {.lex_state = 221, .external_lex_state = 28}, + [863] = {.lex_state = 221, .external_lex_state = 28}, + [864] = {.lex_state = 221, .external_lex_state = 28}, + [865] = {.lex_state = 223, .external_lex_state = 4}, + [866] = {.lex_state = 223, .external_lex_state = 4}, + [867] = {.lex_state = 223, .external_lex_state = 4}, + [868] = {.lex_state = 221, .external_lex_state = 28}, + [869] = {.lex_state = 221, .external_lex_state = 28}, + [870] = {.lex_state = 221, .external_lex_state = 28}, + [871] = {.lex_state = 221, .external_lex_state = 28}, + [872] = {.lex_state = 569, .external_lex_state = 28}, + [873] = {.lex_state = 569, .external_lex_state = 28}, + [874] = {.lex_state = 223, .external_lex_state = 30}, + [875] = {.lex_state = 569, .external_lex_state = 28}, + [876] = {.lex_state = 569, .external_lex_state = 28}, + [877] = {.lex_state = 568, .external_lex_state = 4}, + [878] = {.lex_state = 568, .external_lex_state = 4}, + [879] = {.lex_state = 568, .external_lex_state = 30}, + [880] = {.lex_state = 568, .external_lex_state = 30}, + [881] = {.lex_state = 465, .external_lex_state = 25}, + [882] = {.lex_state = 465, .external_lex_state = 25}, + [883] = {.lex_state = 567, .external_lex_state = 28}, + [884] = {.lex_state = 567, .external_lex_state = 28}, + [885] = {.lex_state = 569, .external_lex_state = 28}, + [886] = {.lex_state = 567, .external_lex_state = 28}, + [887] = {.lex_state = 567, .external_lex_state = 28}, + [888] = {.lex_state = 567, .external_lex_state = 28}, + [889] = {.lex_state = 567, .external_lex_state = 28}, + [890] = {.lex_state = 567, .external_lex_state = 28}, + [891] = {.lex_state = 567, .external_lex_state = 28}, + [892] = {.lex_state = 567, .external_lex_state = 28}, + [893] = {.lex_state = 567, .external_lex_state = 28}, + [894] = {.lex_state = 567, .external_lex_state = 28}, + [895] = {.lex_state = 567, .external_lex_state = 28}, + [896] = {.lex_state = 567, .external_lex_state = 28}, + [897] = {.lex_state = 567, .external_lex_state = 28}, + [898] = {.lex_state = 567, .external_lex_state = 28}, + [899] = {.lex_state = 567, .external_lex_state = 28}, + [900] = {.lex_state = 567, .external_lex_state = 28}, + [901] = {.lex_state = 567, .external_lex_state = 28}, + [902] = {.lex_state = 567, .external_lex_state = 28}, + [903] = {.lex_state = 567, .external_lex_state = 28}, + [904] = {.lex_state = 568, .external_lex_state = 30}, + [905] = {.lex_state = 568, .external_lex_state = 30}, + [906] = {.lex_state = 182, .external_lex_state = 11}, + [907] = {.lex_state = 182, .external_lex_state = 11}, + [908] = {.lex_state = 568, .external_lex_state = 30}, + [909] = {.lex_state = 226, .external_lex_state = 28}, + [910] = {.lex_state = 226, .external_lex_state = 28}, + [911] = {.lex_state = 466, .external_lex_state = 27}, + [912] = {.lex_state = 466, .external_lex_state = 27}, + [913] = {.lex_state = 466, .external_lex_state = 27}, + [914] = {.lex_state = 568, .external_lex_state = 4}, + [915] = {.lex_state = 461, .external_lex_state = 27}, + [916] = {.lex_state = 461, .external_lex_state = 27}, + [917] = {.lex_state = 568, .external_lex_state = 4}, + [918] = {.lex_state = 568, .external_lex_state = 4}, + [919] = {.lex_state = 568, .external_lex_state = 4}, + [920] = {.lex_state = 568, .external_lex_state = 4}, + [921] = {.lex_state = 568, .external_lex_state = 4}, + [922] = {.lex_state = 183, .external_lex_state = 12}, + [923] = {.lex_state = 568, .external_lex_state = 4}, + [924] = {.lex_state = 568, .external_lex_state = 4}, + [925] = {.lex_state = 568, .external_lex_state = 4}, + [926] = {.lex_state = 226, .external_lex_state = 28}, + [927] = {.lex_state = 223, .external_lex_state = 4}, + [928] = {.lex_state = 568, .external_lex_state = 4}, + [929] = {.lex_state = 187, .external_lex_state = 13}, + [930] = {.lex_state = 226, .external_lex_state = 28}, + [931] = {.lex_state = 569, .external_lex_state = 28}, + [932] = {.lex_state = 569, .external_lex_state = 28}, + [933] = {.lex_state = 569, .external_lex_state = 28}, + [934] = {.lex_state = 569, .external_lex_state = 28}, + [935] = {.lex_state = 223, .external_lex_state = 30}, + [936] = {.lex_state = 569, .external_lex_state = 28}, + [937] = {.lex_state = 228, .external_lex_state = 31}, + [938] = {.lex_state = 223, .external_lex_state = 30}, + [939] = {.lex_state = 569, .external_lex_state = 28}, + [940] = {.lex_state = 569, .external_lex_state = 28}, + [941] = {.lex_state = 187, .external_lex_state = 13}, + [942] = {.lex_state = 228, .external_lex_state = 31}, + [943] = {.lex_state = 223, .external_lex_state = 30}, + [944] = {.lex_state = 223, .external_lex_state = 30}, + [945] = {.lex_state = 223, .external_lex_state = 30}, + [946] = {.lex_state = 569, .external_lex_state = 28}, + [947] = {.lex_state = 555, .external_lex_state = 9}, + [948] = {.lex_state = 223, .external_lex_state = 30}, + [949] = {.lex_state = 569, .external_lex_state = 28}, + [950] = {.lex_state = 569, .external_lex_state = 28}, + [951] = {.lex_state = 223, .external_lex_state = 30}, + [952] = {.lex_state = 556, .external_lex_state = 13}, + [953] = {.lex_state = 226, .external_lex_state = 28}, + [954] = {.lex_state = 188, .external_lex_state = 11}, + [955] = {.lex_state = 226, .external_lex_state = 28}, + [956] = {.lex_state = 183, .external_lex_state = 14}, + [957] = {.lex_state = 228, .external_lex_state = 31}, + [958] = {.lex_state = 228, .external_lex_state = 31}, + [959] = {.lex_state = 223, .external_lex_state = 30}, + [960] = {.lex_state = 226, .external_lex_state = 28}, + [961] = {.lex_state = 226, .external_lex_state = 28}, + [962] = {.lex_state = 226, .external_lex_state = 28}, + [963] = {.lex_state = 223, .external_lex_state = 30}, + [964] = {.lex_state = 569, .external_lex_state = 28}, + [965] = {.lex_state = 223, .external_lex_state = 30}, + [966] = {.lex_state = 223, .external_lex_state = 30}, + [967] = {.lex_state = 223, .external_lex_state = 30}, + [968] = {.lex_state = 226, .external_lex_state = 28}, + [969] = {.lex_state = 226, .external_lex_state = 28}, + [970] = {.lex_state = 226, .external_lex_state = 28}, + [971] = {.lex_state = 226, .external_lex_state = 28}, + [972] = {.lex_state = 226, .external_lex_state = 28}, + [973] = {.lex_state = 183, .external_lex_state = 14}, + [974] = {.lex_state = 183, .external_lex_state = 14}, + [975] = {.lex_state = 183, .external_lex_state = 14}, + [976] = {.lex_state = 226, .external_lex_state = 28}, + [977] = {.lex_state = 226, .external_lex_state = 28}, + [978] = {.lex_state = 226, .external_lex_state = 28}, + [979] = {.lex_state = 223, .external_lex_state = 30}, + [980] = {.lex_state = 223, .external_lex_state = 30}, + [981] = {.lex_state = 223, .external_lex_state = 30}, + [982] = {.lex_state = 223, .external_lex_state = 30}, + [983] = {.lex_state = 223, .external_lex_state = 30}, + [984] = {.lex_state = 223, .external_lex_state = 30}, + [985] = {.lex_state = 223, .external_lex_state = 30}, + [986] = {.lex_state = 223, .external_lex_state = 30}, + [987] = {.lex_state = 555, .external_lex_state = 9}, + [988] = {.lex_state = 569, .external_lex_state = 28}, + [989] = {.lex_state = 426, .external_lex_state = 32}, + [990] = {.lex_state = 426, .external_lex_state = 32}, + [991] = {.lex_state = 426, .external_lex_state = 32}, + [992] = {.lex_state = 226, .external_lex_state = 28}, + [993] = {.lex_state = 426, .external_lex_state = 32}, + [994] = {.lex_state = 556, .external_lex_state = 13}, + [995] = {.lex_state = 569, .external_lex_state = 28}, + [996] = {.lex_state = 183, .external_lex_state = 14}, + [997] = {.lex_state = 226, .external_lex_state = 28}, + [998] = {.lex_state = 426, .external_lex_state = 32}, + [999] = {.lex_state = 186, .external_lex_state = 9}, + [1000] = {.lex_state = 188, .external_lex_state = 11}, + [1001] = {.lex_state = 188, .external_lex_state = 11}, + [1002] = {.lex_state = 568, .external_lex_state = 30}, + [1003] = {.lex_state = 182, .external_lex_state = 11}, + [1004] = {.lex_state = 182, .external_lex_state = 11}, + [1005] = {.lex_state = 568, .external_lex_state = 30}, + [1006] = {.lex_state = 569, .external_lex_state = 28}, + [1007] = {.lex_state = 568, .external_lex_state = 30}, + [1008] = {.lex_state = 568, .external_lex_state = 30}, + [1009] = {.lex_state = 569, .external_lex_state = 28}, + [1010] = {.lex_state = 568, .external_lex_state = 30}, + [1011] = {.lex_state = 569, .external_lex_state = 28}, + [1012] = {.lex_state = 568, .external_lex_state = 30}, + [1013] = {.lex_state = 182, .external_lex_state = 11}, + [1014] = {.lex_state = 568, .external_lex_state = 30}, + [1015] = {.lex_state = 182, .external_lex_state = 11}, + [1016] = {.lex_state = 568, .external_lex_state = 30}, + [1017] = {.lex_state = 568, .external_lex_state = 30}, + [1018] = {.lex_state = 568, .external_lex_state = 30}, + [1019] = {.lex_state = 226, .external_lex_state = 28}, + [1020] = {.lex_state = 568, .external_lex_state = 30}, + [1021] = {.lex_state = 568, .external_lex_state = 30}, + [1022] = {.lex_state = 466, .external_lex_state = 27}, + [1023] = {.lex_state = 568, .external_lex_state = 30}, + [1024] = {.lex_state = 466, .external_lex_state = 27}, + [1025] = {.lex_state = 188, .external_lex_state = 11}, + [1026] = {.lex_state = 568, .external_lex_state = 30}, + [1027] = {.lex_state = 568, .external_lex_state = 30}, + [1028] = {.lex_state = 568, .external_lex_state = 30}, + [1029] = {.lex_state = 187, .external_lex_state = 13}, + [1030] = {.lex_state = 188, .external_lex_state = 11}, + [1031] = {.lex_state = 187, .external_lex_state = 13}, + [1032] = {.lex_state = 226, .external_lex_state = 28}, + [1033] = {.lex_state = 568, .external_lex_state = 30}, + [1034] = {.lex_state = 226, .external_lex_state = 28}, + [1035] = {.lex_state = 421, .external_lex_state = 25}, + [1036] = {.lex_state = 226, .external_lex_state = 28}, + [1037] = {.lex_state = 569, .external_lex_state = 28}, + [1038] = {.lex_state = 569, .external_lex_state = 28}, + [1039] = {.lex_state = 568, .external_lex_state = 30}, + [1040] = {.lex_state = 568, .external_lex_state = 30}, + [1041] = {.lex_state = 568, .external_lex_state = 30}, + [1042] = {.lex_state = 556, .external_lex_state = 13}, + [1043] = {.lex_state = 556, .external_lex_state = 13}, + [1044] = {.lex_state = 569, .external_lex_state = 28}, + [1045] = {.lex_state = 569, .external_lex_state = 28}, + [1046] = {.lex_state = 188, .external_lex_state = 11}, + [1047] = {.lex_state = 188, .external_lex_state = 11}, + [1048] = {.lex_state = 183, .external_lex_state = 12}, + [1049] = {.lex_state = 188, .external_lex_state = 11}, + [1050] = {.lex_state = 186, .external_lex_state = 9}, + [1051] = {.lex_state = 426, .external_lex_state = 32}, + [1052] = {.lex_state = 477, .external_lex_state = 23}, + [1053] = {.lex_state = 190, .external_lex_state = 13}, + [1054] = {.lex_state = 228, .external_lex_state = 31}, + [1055] = {.lex_state = 228, .external_lex_state = 31}, + [1056] = {.lex_state = 228, .external_lex_state = 31}, + [1057] = {.lex_state = 228, .external_lex_state = 31}, + [1058] = {.lex_state = 229, .external_lex_state = 31}, + [1059] = {.lex_state = 557, .external_lex_state = 13}, + [1060] = {.lex_state = 557, .external_lex_state = 13}, + [1061] = {.lex_state = 229, .external_lex_state = 31}, + [1062] = {.lex_state = 557, .external_lex_state = 13}, + [1063] = {.lex_state = 186, .external_lex_state = 15}, + [1064] = {.lex_state = 557, .external_lex_state = 13}, + [1065] = {.lex_state = 557, .external_lex_state = 13}, + [1066] = {.lex_state = 477, .external_lex_state = 23}, + [1067] = {.lex_state = 557, .external_lex_state = 13}, + [1068] = {.lex_state = 555, .external_lex_state = 9}, + [1069] = {.lex_state = 188, .external_lex_state = 11}, + [1070] = {.lex_state = 188, .external_lex_state = 11}, + [1071] = {.lex_state = 557, .external_lex_state = 13}, + [1072] = {.lex_state = 555, .external_lex_state = 15}, + [1073] = {.lex_state = 228, .external_lex_state = 31}, + [1074] = {.lex_state = 555, .external_lex_state = 15}, + [1075] = {.lex_state = 555, .external_lex_state = 15}, + [1076] = {.lex_state = 436, .external_lex_state = 33}, + [1077] = {.lex_state = 183, .external_lex_state = 14}, + [1078] = {.lex_state = 557, .external_lex_state = 13}, + [1079] = {.lex_state = 229, .external_lex_state = 31}, + [1080] = {.lex_state = 186, .external_lex_state = 15}, + [1081] = {.lex_state = 228, .external_lex_state = 31}, + [1082] = {.lex_state = 228, .external_lex_state = 31}, + [1083] = {.lex_state = 228, .external_lex_state = 31}, + [1084] = {.lex_state = 186, .external_lex_state = 9}, + [1085] = {.lex_state = 477, .external_lex_state = 23}, + [1086] = {.lex_state = 570, .external_lex_state = 34}, + [1087] = {.lex_state = 557, .external_lex_state = 13}, + [1088] = {.lex_state = 183, .external_lex_state = 14}, + [1089] = {.lex_state = 570, .external_lex_state = 34}, + [1090] = {.lex_state = 186, .external_lex_state = 15}, + [1091] = {.lex_state = 228, .external_lex_state = 31}, + [1092] = {.lex_state = 570, .external_lex_state = 34}, + [1093] = {.lex_state = 186, .external_lex_state = 15}, + [1094] = {.lex_state = 228, .external_lex_state = 31}, + [1095] = {.lex_state = 228, .external_lex_state = 31}, + [1096] = {.lex_state = 556, .external_lex_state = 13}, + [1097] = {.lex_state = 188, .external_lex_state = 11}, + [1098] = {.lex_state = 228, .external_lex_state = 31}, + [1099] = {.lex_state = 188, .external_lex_state = 11}, + [1100] = {.lex_state = 190, .external_lex_state = 13}, + [1101] = {.lex_state = 555, .external_lex_state = 15}, + [1102] = {.lex_state = 228, .external_lex_state = 31}, + [1103] = {.lex_state = 188, .external_lex_state = 11}, + [1104] = {.lex_state = 231, .external_lex_state = 34}, + [1105] = {.lex_state = 190, .external_lex_state = 13}, + [1106] = {.lex_state = 188, .external_lex_state = 11}, + [1107] = {.lex_state = 188, .external_lex_state = 11}, + [1108] = {.lex_state = 556, .external_lex_state = 13}, + [1109] = {.lex_state = 231, .external_lex_state = 34}, + [1110] = {.lex_state = 557, .external_lex_state = 13}, + [1111] = {.lex_state = 208, .external_lex_state = 20}, + [1112] = {.lex_state = 183, .external_lex_state = 14}, + [1113] = {.lex_state = 555, .external_lex_state = 15}, + [1114] = {.lex_state = 190, .external_lex_state = 13}, + [1115] = {.lex_state = 208, .external_lex_state = 20}, + [1116] = {.lex_state = 190, .external_lex_state = 13}, + [1117] = {.lex_state = 208, .external_lex_state = 20}, + [1118] = {.lex_state = 188, .external_lex_state = 11}, + [1119] = {.lex_state = 187, .external_lex_state = 13}, + [1120] = {.lex_state = 190, .external_lex_state = 13}, + [1121] = {.lex_state = 419, .external_lex_state = 25}, + [1122] = {.lex_state = 188, .external_lex_state = 11}, + [1123] = {.lex_state = 187, .external_lex_state = 13}, + [1124] = {.lex_state = 228, .external_lex_state = 31}, + [1125] = {.lex_state = 183, .external_lex_state = 14}, + [1126] = {.lex_state = 183, .external_lex_state = 14}, + [1127] = {.lex_state = 556, .external_lex_state = 13}, + [1128] = {.lex_state = 418, .external_lex_state = 27}, + [1129] = {.lex_state = 570, .external_lex_state = 34}, + [1130] = {.lex_state = 187, .external_lex_state = 13}, + [1131] = {.lex_state = 228, .external_lex_state = 31}, + [1132] = {.lex_state = 187, .external_lex_state = 13}, + [1133] = {.lex_state = 228, .external_lex_state = 31}, + [1134] = {.lex_state = 556, .external_lex_state = 13}, + [1135] = {.lex_state = 228, .external_lex_state = 31}, + [1136] = {.lex_state = 231, .external_lex_state = 34}, + [1137] = {.lex_state = 228, .external_lex_state = 31}, + [1138] = {.lex_state = 188, .external_lex_state = 11}, + [1139] = {.lex_state = 190, .external_lex_state = 13}, + [1140] = {.lex_state = 228, .external_lex_state = 31}, + [1141] = {.lex_state = 228, .external_lex_state = 31}, + [1142] = {.lex_state = 188, .external_lex_state = 11}, + [1143] = {.lex_state = 229, .external_lex_state = 31}, + [1144] = {.lex_state = 186, .external_lex_state = 15}, + [1145] = {.lex_state = 231, .external_lex_state = 34}, + [1146] = {.lex_state = 190, .external_lex_state = 13}, + [1147] = {.lex_state = 425, .external_lex_state = 27}, + [1148] = {.lex_state = 229, .external_lex_state = 31}, + [1149] = {.lex_state = 570, .external_lex_state = 34}, + [1150] = {.lex_state = 570, .external_lex_state = 34}, + [1151] = {.lex_state = 571, .external_lex_state = 34}, + [1152] = {.lex_state = 570, .external_lex_state = 34}, + [1153] = {.lex_state = 570, .external_lex_state = 34}, + [1154] = {.lex_state = 570, .external_lex_state = 34}, + [1155] = {.lex_state = 570, .external_lex_state = 34}, + [1156] = {.lex_state = 570, .external_lex_state = 34}, + [1157] = {.lex_state = 570, .external_lex_state = 34}, + [1158] = {.lex_state = 570, .external_lex_state = 34}, + [1159] = {.lex_state = 570, .external_lex_state = 34}, + [1160] = {.lex_state = 190, .external_lex_state = 13}, + [1161] = {.lex_state = 233, .external_lex_state = 34}, + [1162] = {.lex_state = 427, .external_lex_state = 35}, + [1163] = {.lex_state = 555, .external_lex_state = 15}, + [1164] = {.lex_state = 557, .external_lex_state = 13}, + [1165] = {.lex_state = 570, .external_lex_state = 34}, + [1166] = {.lex_state = 570, .external_lex_state = 34}, + [1167] = {.lex_state = 570, .external_lex_state = 34}, + [1168] = {.lex_state = 570, .external_lex_state = 34}, + [1169] = {.lex_state = 570, .external_lex_state = 34}, + [1170] = {.lex_state = 570, .external_lex_state = 34}, + [1171] = {.lex_state = 571, .external_lex_state = 34}, + [1172] = {.lex_state = 229, .external_lex_state = 31}, + [1173] = {.lex_state = 233, .external_lex_state = 34}, + [1174] = {.lex_state = 231, .external_lex_state = 34}, + [1175] = {.lex_state = 555, .external_lex_state = 15}, + [1176] = {.lex_state = 231, .external_lex_state = 34}, + [1177] = {.lex_state = 427, .external_lex_state = 35}, + [1178] = {.lex_state = 190, .external_lex_state = 13}, + [1179] = {.lex_state = 555, .external_lex_state = 15}, + [1180] = {.lex_state = 229, .external_lex_state = 31}, + [1181] = {.lex_state = 555, .external_lex_state = 15}, + [1182] = {.lex_state = 229, .external_lex_state = 31}, + [1183] = {.lex_state = 231, .external_lex_state = 34}, + [1184] = {.lex_state = 555, .external_lex_state = 15}, + [1185] = {.lex_state = 229, .external_lex_state = 31}, + [1186] = {.lex_state = 234, .external_lex_state = 31}, + [1187] = {.lex_state = 233, .external_lex_state = 34}, + [1188] = {.lex_state = 448, .external_lex_state = 33}, + [1189] = {.lex_state = 231, .external_lex_state = 34}, + [1190] = {.lex_state = 480, .external_lex_state = 18}, + [1191] = {.lex_state = 477, .external_lex_state = 23}, + [1192] = {.lex_state = 231, .external_lex_state = 34}, + [1193] = {.lex_state = 437, .external_lex_state = 36}, + [1194] = {.lex_state = 231, .external_lex_state = 34}, + [1195] = {.lex_state = 231, .external_lex_state = 34}, + [1196] = {.lex_state = 208, .external_lex_state = 20}, + [1197] = {.lex_state = 427, .external_lex_state = 35}, + [1198] = {.lex_state = 208, .external_lex_state = 20}, + [1199] = {.lex_state = 229, .external_lex_state = 31}, + [1200] = {.lex_state = 557, .external_lex_state = 13}, + [1201] = {.lex_state = 190, .external_lex_state = 13}, + [1202] = {.lex_state = 190, .external_lex_state = 13}, + [1203] = {.lex_state = 190, .external_lex_state = 13}, + [1204] = {.lex_state = 231, .external_lex_state = 34}, + [1205] = {.lex_state = 229, .external_lex_state = 31}, + [1206] = {.lex_state = 190, .external_lex_state = 13}, + [1207] = {.lex_state = 229, .external_lex_state = 31}, + [1208] = {.lex_state = 557, .external_lex_state = 13}, + [1209] = {.lex_state = 571, .external_lex_state = 34}, + [1210] = {.lex_state = 229, .external_lex_state = 31}, + [1211] = {.lex_state = 231, .external_lex_state = 34}, + [1212] = {.lex_state = 570, .external_lex_state = 34}, + [1213] = {.lex_state = 229, .external_lex_state = 31}, + [1214] = {.lex_state = 231, .external_lex_state = 34}, + [1215] = {.lex_state = 571, .external_lex_state = 34}, + [1216] = {.lex_state = 186, .external_lex_state = 15}, + [1217] = {.lex_state = 231, .external_lex_state = 34}, + [1218] = {.lex_state = 231, .external_lex_state = 34}, + [1219] = {.lex_state = 229, .external_lex_state = 31}, + [1220] = {.lex_state = 480, .external_lex_state = 18}, + [1221] = {.lex_state = 427, .external_lex_state = 35}, + [1222] = {.lex_state = 557, .external_lex_state = 13}, + [1223] = {.lex_state = 231, .external_lex_state = 34}, + [1224] = {.lex_state = 557, .external_lex_state = 13}, + [1225] = {.lex_state = 234, .external_lex_state = 31}, + [1226] = {.lex_state = 229, .external_lex_state = 31}, + [1227] = {.lex_state = 557, .external_lex_state = 13}, + [1228] = {.lex_state = 186, .external_lex_state = 15}, + [1229] = {.lex_state = 229, .external_lex_state = 31}, + [1230] = {.lex_state = 190, .external_lex_state = 13}, + [1231] = {.lex_state = 229, .external_lex_state = 31}, + [1232] = {.lex_state = 190, .external_lex_state = 13}, + [1233] = {.lex_state = 229, .external_lex_state = 31}, + [1234] = {.lex_state = 229, .external_lex_state = 31}, + [1235] = {.lex_state = 557, .external_lex_state = 13}, + [1236] = {.lex_state = 229, .external_lex_state = 31}, + [1237] = {.lex_state = 229, .external_lex_state = 31}, + [1238] = {.lex_state = 186, .external_lex_state = 15}, + [1239] = {.lex_state = 233, .external_lex_state = 34}, + [1240] = {.lex_state = 557, .external_lex_state = 13}, + [1241] = {.lex_state = 477, .external_lex_state = 23}, + [1242] = {.lex_state = 427, .external_lex_state = 35}, + [1243] = {.lex_state = 231, .external_lex_state = 34}, + [1244] = {.lex_state = 186, .external_lex_state = 15}, + [1245] = {.lex_state = 229, .external_lex_state = 31}, + [1246] = {.lex_state = 191, .external_lex_state = 16}, + [1247] = {.lex_state = 570, .external_lex_state = 34}, + [1248] = {.lex_state = 190, .external_lex_state = 13}, + [1249] = {.lex_state = 557, .external_lex_state = 13}, + [1250] = {.lex_state = 186, .external_lex_state = 15}, + [1251] = {.lex_state = 231, .external_lex_state = 34}, + [1252] = {.lex_state = 570, .external_lex_state = 34}, + [1253] = {.lex_state = 557, .external_lex_state = 13}, + [1254] = {.lex_state = 570, .external_lex_state = 34}, + [1255] = {.lex_state = 234, .external_lex_state = 31}, + [1256] = {.lex_state = 231, .external_lex_state = 34}, + [1257] = {.lex_state = 191, .external_lex_state = 16}, + [1258] = {.lex_state = 231, .external_lex_state = 34}, + [1259] = {.lex_state = 231, .external_lex_state = 34}, + [1260] = {.lex_state = 234, .external_lex_state = 31}, + [1261] = {.lex_state = 231, .external_lex_state = 34}, + [1262] = {.lex_state = 190, .external_lex_state = 13}, + [1263] = {.lex_state = 557, .external_lex_state = 13}, + [1264] = {.lex_state = 480, .external_lex_state = 18}, + [1265] = {.lex_state = 420, .external_lex_state = 27}, + [1266] = {.lex_state = 190, .external_lex_state = 13}, + [1267] = {.lex_state = 231, .external_lex_state = 34}, + [1268] = {.lex_state = 229, .external_lex_state = 31}, + [1269] = {.lex_state = 437, .external_lex_state = 37}, + [1270] = {.lex_state = 571, .external_lex_state = 34}, + [1271] = {.lex_state = 233, .external_lex_state = 34}, + [1272] = {.lex_state = 233, .external_lex_state = 34}, + [1273] = {.lex_state = 571, .external_lex_state = 34}, + [1274] = {.lex_state = 234, .external_lex_state = 31}, + [1275] = {.lex_state = 233, .external_lex_state = 34}, + [1276] = {.lex_state = 233, .external_lex_state = 34}, + [1277] = {.lex_state = 233, .external_lex_state = 34}, + [1278] = {.lex_state = 234, .external_lex_state = 31}, + [1279] = {.lex_state = 234, .external_lex_state = 31}, + [1280] = {.lex_state = 234, .external_lex_state = 31}, + [1281] = {.lex_state = 233, .external_lex_state = 34}, + [1282] = {.lex_state = 233, .external_lex_state = 34}, + [1283] = {.lex_state = 427, .external_lex_state = 38}, + [1284] = {.lex_state = 558, .external_lex_state = 17}, + [1285] = {.lex_state = 235, .external_lex_state = 34}, + [1286] = {.lex_state = 233, .external_lex_state = 34}, + [1287] = {.lex_state = 233, .external_lex_state = 34}, + [1288] = {.lex_state = 233, .external_lex_state = 34}, + [1289] = {.lex_state = 233, .external_lex_state = 34}, + [1290] = {.lex_state = 233, .external_lex_state = 34}, + [1291] = {.lex_state = 233, .external_lex_state = 34}, + [1292] = {.lex_state = 233, .external_lex_state = 34}, + [1293] = {.lex_state = 233, .external_lex_state = 34}, + [1294] = {.lex_state = 233, .external_lex_state = 34}, + [1295] = {.lex_state = 233, .external_lex_state = 34}, + [1296] = {.lex_state = 233, .external_lex_state = 34}, + [1297] = {.lex_state = 557, .external_lex_state = 13}, + [1298] = {.lex_state = 427, .external_lex_state = 38}, + [1299] = {.lex_state = 427, .external_lex_state = 38}, + [1300] = {.lex_state = 557, .external_lex_state = 13}, + [1301] = {.lex_state = 234, .external_lex_state = 31}, + [1302] = {.lex_state = 557, .external_lex_state = 13}, + [1303] = {.lex_state = 450, .external_lex_state = 36}, + [1304] = {.lex_state = 557, .external_lex_state = 13}, + [1305] = {.lex_state = 234, .external_lex_state = 31}, + [1306] = {.lex_state = 557, .external_lex_state = 13}, + [1307] = {.lex_state = 234, .external_lex_state = 31}, + [1308] = {.lex_state = 572, .external_lex_state = 34}, + [1309] = {.lex_state = 557, .external_lex_state = 13}, + [1310] = {.lex_state = 234, .external_lex_state = 31}, + [1311] = {.lex_state = 557, .external_lex_state = 13}, + [1312] = {.lex_state = 557, .external_lex_state = 13}, + [1313] = {.lex_state = 557, .external_lex_state = 13}, + [1314] = {.lex_state = 557, .external_lex_state = 13}, + [1315] = {.lex_state = 557, .external_lex_state = 13}, + [1316] = {.lex_state = 557, .external_lex_state = 13}, + [1317] = {.lex_state = 557, .external_lex_state = 13}, + [1318] = {.lex_state = 557, .external_lex_state = 13}, + [1319] = {.lex_state = 557, .external_lex_state = 13}, + [1320] = {.lex_state = 557, .external_lex_state = 13}, + [1321] = {.lex_state = 557, .external_lex_state = 13}, + [1322] = {.lex_state = 557, .external_lex_state = 13}, + [1323] = {.lex_state = 557, .external_lex_state = 13}, + [1324] = {.lex_state = 557, .external_lex_state = 13}, + [1325] = {.lex_state = 557, .external_lex_state = 13}, + [1326] = {.lex_state = 557, .external_lex_state = 13}, + [1327] = {.lex_state = 557, .external_lex_state = 13}, + [1328] = {.lex_state = 557, .external_lex_state = 13}, + [1329] = {.lex_state = 557, .external_lex_state = 13}, + [1330] = {.lex_state = 557, .external_lex_state = 13}, + [1331] = {.lex_state = 557, .external_lex_state = 13}, + [1332] = {.lex_state = 557, .external_lex_state = 13}, + [1333] = {.lex_state = 557, .external_lex_state = 13}, + [1334] = {.lex_state = 557, .external_lex_state = 13}, + [1335] = {.lex_state = 557, .external_lex_state = 13}, + [1336] = {.lex_state = 557, .external_lex_state = 13}, + [1337] = {.lex_state = 557, .external_lex_state = 13}, + [1338] = {.lex_state = 557, .external_lex_state = 13}, + [1339] = {.lex_state = 557, .external_lex_state = 13}, + [1340] = {.lex_state = 557, .external_lex_state = 13}, + [1341] = {.lex_state = 557, .external_lex_state = 13}, + [1342] = {.lex_state = 557, .external_lex_state = 13}, + [1343] = {.lex_state = 557, .external_lex_state = 13}, + [1344] = {.lex_state = 557, .external_lex_state = 13}, + [1345] = {.lex_state = 557, .external_lex_state = 13}, + [1346] = {.lex_state = 557, .external_lex_state = 13}, + [1347] = {.lex_state = 557, .external_lex_state = 13}, + [1348] = {.lex_state = 557, .external_lex_state = 13}, + [1349] = {.lex_state = 557, .external_lex_state = 13}, + [1350] = {.lex_state = 557, .external_lex_state = 13}, + [1351] = {.lex_state = 557, .external_lex_state = 13}, + [1352] = {.lex_state = 557, .external_lex_state = 13}, + [1353] = {.lex_state = 557, .external_lex_state = 13}, + [1354] = {.lex_state = 557, .external_lex_state = 13}, + [1355] = {.lex_state = 557, .external_lex_state = 13}, + [1356] = {.lex_state = 557, .external_lex_state = 13}, + [1357] = {.lex_state = 571, .external_lex_state = 34}, + [1358] = {.lex_state = 557, .external_lex_state = 13}, + [1359] = {.lex_state = 557, .external_lex_state = 13}, + [1360] = {.lex_state = 557, .external_lex_state = 13}, + [1361] = {.lex_state = 557, .external_lex_state = 13}, + [1362] = {.lex_state = 557, .external_lex_state = 13}, + [1363] = {.lex_state = 557, .external_lex_state = 13}, + [1364] = {.lex_state = 557, .external_lex_state = 13}, + [1365] = {.lex_state = 557, .external_lex_state = 13}, + [1366] = {.lex_state = 557, .external_lex_state = 13}, + [1367] = {.lex_state = 557, .external_lex_state = 13}, + [1368] = {.lex_state = 557, .external_lex_state = 13}, + [1369] = {.lex_state = 557, .external_lex_state = 13}, + [1370] = {.lex_state = 557, .external_lex_state = 13}, + [1371] = {.lex_state = 557, .external_lex_state = 13}, + [1372] = {.lex_state = 557, .external_lex_state = 13}, + [1373] = {.lex_state = 557, .external_lex_state = 13}, + [1374] = {.lex_state = 557, .external_lex_state = 13}, + [1375] = {.lex_state = 557, .external_lex_state = 13}, + [1376] = {.lex_state = 234, .external_lex_state = 31}, + [1377] = {.lex_state = 427, .external_lex_state = 32}, + [1378] = {.lex_state = 234, .external_lex_state = 31}, + [1379] = {.lex_state = 234, .external_lex_state = 31}, + [1380] = {.lex_state = 427, .external_lex_state = 32}, + [1381] = {.lex_state = 557, .external_lex_state = 13}, + [1382] = {.lex_state = 427, .external_lex_state = 32}, + [1383] = {.lex_state = 427, .external_lex_state = 32}, + [1384] = {.lex_state = 427, .external_lex_state = 32}, + [1385] = {.lex_state = 427, .external_lex_state = 32}, + [1386] = {.lex_state = 427, .external_lex_state = 32}, + [1387] = {.lex_state = 427, .external_lex_state = 32}, + [1388] = {.lex_state = 572, .external_lex_state = 34}, + [1389] = {.lex_state = 195, .external_lex_state = 16}, + [1390] = {.lex_state = 195, .external_lex_state = 16}, + [1391] = {.lex_state = 558, .external_lex_state = 17}, + [1392] = {.lex_state = 572, .external_lex_state = 34}, + [1393] = {.lex_state = 234, .external_lex_state = 31}, + [1394] = {.lex_state = 234, .external_lex_state = 31}, + [1395] = {.lex_state = 427, .external_lex_state = 38}, + [1396] = {.lex_state = 572, .external_lex_state = 34}, + [1397] = {.lex_state = 234, .external_lex_state = 31}, + [1398] = {.lex_state = 235, .external_lex_state = 34}, + [1399] = {.lex_state = 234, .external_lex_state = 31}, + [1400] = {.lex_state = 234, .external_lex_state = 31}, + [1401] = {.lex_state = 571, .external_lex_state = 34}, + [1402] = {.lex_state = 571, .external_lex_state = 34}, + [1403] = {.lex_state = 235, .external_lex_state = 34}, + [1404] = {.lex_state = 571, .external_lex_state = 34}, + [1405] = {.lex_state = 571, .external_lex_state = 34}, + [1406] = {.lex_state = 194, .external_lex_state = 17}, + [1407] = {.lex_state = 571, .external_lex_state = 34}, + [1408] = {.lex_state = 571, .external_lex_state = 34}, + [1409] = {.lex_state = 194, .external_lex_state = 17}, + [1410] = {.lex_state = 571, .external_lex_state = 34}, + [1411] = {.lex_state = 234, .external_lex_state = 31}, + [1412] = {.lex_state = 235, .external_lex_state = 34}, + [1413] = {.lex_state = 427, .external_lex_state = 38}, + [1414] = {.lex_state = 427, .external_lex_state = 38}, + [1415] = {.lex_state = 571, .external_lex_state = 34}, + [1416] = {.lex_state = 571, .external_lex_state = 34}, + [1417] = {.lex_state = 571, .external_lex_state = 34}, + [1418] = {.lex_state = 571, .external_lex_state = 34}, + [1419] = {.lex_state = 571, .external_lex_state = 34}, + [1420] = {.lex_state = 233, .external_lex_state = 34}, + [1421] = {.lex_state = 571, .external_lex_state = 34}, + [1422] = {.lex_state = 571, .external_lex_state = 34}, + [1423] = {.lex_state = 571, .external_lex_state = 34}, + [1424] = {.lex_state = 571, .external_lex_state = 34}, + [1425] = {.lex_state = 571, .external_lex_state = 34}, + [1426] = {.lex_state = 233, .external_lex_state = 34}, + [1427] = {.lex_state = 234, .external_lex_state = 31}, + [1428] = {.lex_state = 234, .external_lex_state = 31}, + [1429] = {.lex_state = 234, .external_lex_state = 31}, + [1430] = {.lex_state = 557, .external_lex_state = 13}, + [1431] = {.lex_state = 572, .external_lex_state = 34}, + [1432] = {.lex_state = 235, .external_lex_state = 34}, + [1433] = {.lex_state = 235, .external_lex_state = 34}, + [1434] = {.lex_state = 235, .external_lex_state = 34}, + [1435] = {.lex_state = 235, .external_lex_state = 34}, + [1436] = {.lex_state = 427, .external_lex_state = 32}, + [1437] = {.lex_state = 235, .external_lex_state = 34}, + [1438] = {.lex_state = 235, .external_lex_state = 34}, + [1439] = {.lex_state = 235, .external_lex_state = 34}, + [1440] = {.lex_state = 427, .external_lex_state = 32}, + [1441] = {.lex_state = 427, .external_lex_state = 32}, + [1442] = {.lex_state = 427, .external_lex_state = 32}, + [1443] = {.lex_state = 427, .external_lex_state = 32}, + [1444] = {.lex_state = 427, .external_lex_state = 32}, + [1445] = {.lex_state = 202, .external_lex_state = 17}, + [1446] = {.lex_state = 235, .external_lex_state = 34}, + [1447] = {.lex_state = 463, .external_lex_state = 39}, + [1448] = {.lex_state = 463, .external_lex_state = 39}, + [1449] = {.lex_state = 427, .external_lex_state = 32}, + [1450] = {.lex_state = 427, .external_lex_state = 32}, + [1451] = {.lex_state = 427, .external_lex_state = 32}, + [1452] = {.lex_state = 427, .external_lex_state = 32}, + [1453] = {.lex_state = 427, .external_lex_state = 32}, + [1454] = {.lex_state = 235, .external_lex_state = 34}, + [1455] = {.lex_state = 427, .external_lex_state = 32}, + [1456] = {.lex_state = 427, .external_lex_state = 32}, + [1457] = {.lex_state = 427, .external_lex_state = 32}, + [1458] = {.lex_state = 427, .external_lex_state = 32}, + [1459] = {.lex_state = 427, .external_lex_state = 32}, + [1460] = {.lex_state = 427, .external_lex_state = 32}, + [1461] = {.lex_state = 427, .external_lex_state = 32}, + [1462] = {.lex_state = 427, .external_lex_state = 32}, + [1463] = {.lex_state = 427, .external_lex_state = 32}, + [1464] = {.lex_state = 427, .external_lex_state = 32}, + [1465] = {.lex_state = 427, .external_lex_state = 32}, + [1466] = {.lex_state = 427, .external_lex_state = 32}, + [1467] = {.lex_state = 427, .external_lex_state = 32}, + [1468] = {.lex_state = 427, .external_lex_state = 32}, + [1469] = {.lex_state = 427, .external_lex_state = 32}, + [1470] = {.lex_state = 427, .external_lex_state = 32}, + [1471] = {.lex_state = 235, .external_lex_state = 34}, + [1472] = {.lex_state = 427, .external_lex_state = 32}, + [1473] = {.lex_state = 427, .external_lex_state = 32}, + [1474] = {.lex_state = 427, .external_lex_state = 32}, + [1475] = {.lex_state = 427, .external_lex_state = 32}, + [1476] = {.lex_state = 427, .external_lex_state = 32}, + [1477] = {.lex_state = 427, .external_lex_state = 32}, + [1478] = {.lex_state = 427, .external_lex_state = 32}, + [1479] = {.lex_state = 481, .external_lex_state = 40}, + [1480] = {.lex_state = 202, .external_lex_state = 17}, + [1481] = {.lex_state = 427, .external_lex_state = 32}, + [1482] = {.lex_state = 427, .external_lex_state = 32}, + [1483] = {.lex_state = 427, .external_lex_state = 32}, + [1484] = {.lex_state = 427, .external_lex_state = 32}, + [1485] = {.lex_state = 427, .external_lex_state = 32}, + [1486] = {.lex_state = 427, .external_lex_state = 32}, + [1487] = {.lex_state = 237, .external_lex_state = 20}, + [1488] = {.lex_state = 427, .external_lex_state = 32}, + [1489] = {.lex_state = 427, .external_lex_state = 32}, + [1490] = {.lex_state = 427, .external_lex_state = 32}, + [1491] = {.lex_state = 427, .external_lex_state = 32}, + [1492] = {.lex_state = 427, .external_lex_state = 32}, + [1493] = {.lex_state = 427, .external_lex_state = 32}, + [1494] = {.lex_state = 427, .external_lex_state = 32}, + [1495] = {.lex_state = 427, .external_lex_state = 32}, + [1496] = {.lex_state = 205, .external_lex_state = 16}, + [1497] = {.lex_state = 427, .external_lex_state = 32}, + [1498] = {.lex_state = 427, .external_lex_state = 32}, + [1499] = {.lex_state = 427, .external_lex_state = 32}, + [1500] = {.lex_state = 427, .external_lex_state = 32}, + [1501] = {.lex_state = 481, .external_lex_state = 40}, + [1502] = {.lex_state = 560, .external_lex_state = 17}, + [1503] = {.lex_state = 427, .external_lex_state = 32}, + [1504] = {.lex_state = 460, .external_lex_state = 41}, + [1505] = {.lex_state = 460, .external_lex_state = 41}, + [1506] = {.lex_state = 481, .external_lex_state = 40}, + [1507] = {.lex_state = 427, .external_lex_state = 32}, + [1508] = {.lex_state = 427, .external_lex_state = 32}, + [1509] = {.lex_state = 427, .external_lex_state = 32}, + [1510] = {.lex_state = 427, .external_lex_state = 32}, + [1511] = {.lex_state = 427, .external_lex_state = 32}, + [1512] = {.lex_state = 572, .external_lex_state = 34}, + [1513] = {.lex_state = 427, .external_lex_state = 32}, + [1514] = {.lex_state = 427, .external_lex_state = 32}, + [1515] = {.lex_state = 572, .external_lex_state = 34}, + [1516] = {.lex_state = 427, .external_lex_state = 32}, + [1517] = {.lex_state = 427, .external_lex_state = 32}, + [1518] = {.lex_state = 427, .external_lex_state = 32}, + [1519] = {.lex_state = 427, .external_lex_state = 32}, + [1520] = {.lex_state = 427, .external_lex_state = 32}, + [1521] = {.lex_state = 235, .external_lex_state = 34}, + [1522] = {.lex_state = 572, .external_lex_state = 34}, + [1523] = {.lex_state = 427, .external_lex_state = 32}, + [1524] = {.lex_state = 572, .external_lex_state = 34}, + [1525] = {.lex_state = 427, .external_lex_state = 32}, + [1526] = {.lex_state = 427, .external_lex_state = 32}, + [1527] = {.lex_state = 427, .external_lex_state = 32}, + [1528] = {.lex_state = 427, .external_lex_state = 32}, + [1529] = {.lex_state = 572, .external_lex_state = 34}, + [1530] = {.lex_state = 427, .external_lex_state = 32}, + [1531] = {.lex_state = 427, .external_lex_state = 32}, + [1532] = {.lex_state = 427, .external_lex_state = 32}, + [1533] = {.lex_state = 427, .external_lex_state = 32}, + [1534] = {.lex_state = 572, .external_lex_state = 34}, + [1535] = {.lex_state = 427, .external_lex_state = 32}, + [1536] = {.lex_state = 427, .external_lex_state = 32}, + [1537] = {.lex_state = 427, .external_lex_state = 32}, + [1538] = {.lex_state = 427, .external_lex_state = 32}, + [1539] = {.lex_state = 427, .external_lex_state = 32}, + [1540] = {.lex_state = 427, .external_lex_state = 32}, + [1541] = {.lex_state = 463, .external_lex_state = 39}, + [1542] = {.lex_state = 235, .external_lex_state = 34}, + [1543] = {.lex_state = 422, .external_lex_state = 23}, + [1544] = {.lex_state = 427, .external_lex_state = 32}, + [1545] = {.lex_state = 481, .external_lex_state = 40}, + [1546] = {.lex_state = 572, .external_lex_state = 34}, + [1547] = {.lex_state = 572, .external_lex_state = 34}, + [1548] = {.lex_state = 572, .external_lex_state = 34}, + [1549] = {.lex_state = 235, .external_lex_state = 34}, + [1550] = {.lex_state = 572, .external_lex_state = 34}, + [1551] = {.lex_state = 427, .external_lex_state = 32}, + [1552] = {.lex_state = 427, .external_lex_state = 32}, + [1553] = {.lex_state = 427, .external_lex_state = 32}, + [1554] = {.lex_state = 235, .external_lex_state = 34}, + [1555] = {.lex_state = 235, .external_lex_state = 34}, + [1556] = {.lex_state = 427, .external_lex_state = 32}, + [1557] = {.lex_state = 481, .external_lex_state = 40}, + [1558] = {.lex_state = 427, .external_lex_state = 32}, + [1559] = {.lex_state = 235, .external_lex_state = 34}, + [1560] = {.lex_state = 427, .external_lex_state = 32}, + [1561] = {.lex_state = 572, .external_lex_state = 34}, + [1562] = {.lex_state = 481, .external_lex_state = 40}, + [1563] = {.lex_state = 572, .external_lex_state = 34}, + [1564] = {.lex_state = 427, .external_lex_state = 32}, + [1565] = {.lex_state = 450, .external_lex_state = 37}, + [1566] = {.lex_state = 572, .external_lex_state = 34}, + [1567] = {.lex_state = 572, .external_lex_state = 34}, + [1568] = {.lex_state = 427, .external_lex_state = 32}, + [1569] = {.lex_state = 235, .external_lex_state = 34}, + [1570] = {.lex_state = 560, .external_lex_state = 17}, + [1571] = {.lex_state = 572, .external_lex_state = 34}, + [1572] = {.lex_state = 427, .external_lex_state = 32}, + [1573] = {.lex_state = 460, .external_lex_state = 41}, + [1574] = {.lex_state = 572, .external_lex_state = 34}, + [1575] = {.lex_state = 235, .external_lex_state = 34}, + [1576] = {.lex_state = 572, .external_lex_state = 34}, + [1577] = {.lex_state = 572, .external_lex_state = 34}, + [1578] = {.lex_state = 460, .external_lex_state = 41}, + [1579] = {.lex_state = 427, .external_lex_state = 32}, + [1580] = {.lex_state = 463, .external_lex_state = 39}, + [1581] = {.lex_state = 557, .external_lex_state = 13}, + [1582] = {.lex_state = 235, .external_lex_state = 34}, + [1583] = {.lex_state = 557, .external_lex_state = 13}, + [1584] = {.lex_state = 427, .external_lex_state = 32}, + [1585] = {.lex_state = 460, .external_lex_state = 41}, + [1586] = {.lex_state = 427, .external_lex_state = 32}, + [1587] = {.lex_state = 235, .external_lex_state = 34}, + [1588] = {.lex_state = 481, .external_lex_state = 40}, + [1589] = {.lex_state = 460, .external_lex_state = 41}, + [1590] = {.lex_state = 463, .external_lex_state = 39}, + [1591] = {.lex_state = 205, .external_lex_state = 16}, + [1592] = {.lex_state = 557, .external_lex_state = 13}, + [1593] = {.lex_state = 481, .external_lex_state = 40}, + [1594] = {.lex_state = 427, .external_lex_state = 32}, + [1595] = {.lex_state = 572, .external_lex_state = 34}, + [1596] = {.lex_state = 563, .external_lex_state = 17}, + [1597] = {.lex_state = 460, .external_lex_state = 41}, + [1598] = {.lex_state = 563, .external_lex_state = 17}, + [1599] = {.lex_state = 460, .external_lex_state = 41}, + [1600] = {.lex_state = 481, .external_lex_state = 40}, + [1601] = {.lex_state = 460, .external_lex_state = 41}, + [1602] = {.lex_state = 460, .external_lex_state = 41}, + [1603] = {.lex_state = 482, .external_lex_state = 41}, + [1604] = {.lex_state = 481, .external_lex_state = 40}, + [1605] = {.lex_state = 481, .external_lex_state = 40}, + [1606] = {.lex_state = 463, .external_lex_state = 42}, + [1607] = {.lex_state = 463, .external_lex_state = 42}, + [1608] = {.lex_state = 460, .external_lex_state = 41}, + [1609] = {.lex_state = 463, .external_lex_state = 39}, + [1610] = {.lex_state = 463, .external_lex_state = 39}, + [1611] = {.lex_state = 460, .external_lex_state = 41}, + [1612] = {.lex_state = 463, .external_lex_state = 39}, + [1613] = {.lex_state = 463, .external_lex_state = 39}, + [1614] = {.lex_state = 460, .external_lex_state = 41}, + [1615] = {.lex_state = 463, .external_lex_state = 39}, + [1616] = {.lex_state = 481, .external_lex_state = 40}, + [1617] = {.lex_state = 481, .external_lex_state = 40}, + [1618] = {.lex_state = 463, .external_lex_state = 42}, + [1619] = {.lex_state = 482, .external_lex_state = 41}, + [1620] = {.lex_state = 481, .external_lex_state = 40}, + [1621] = {.lex_state = 481, .external_lex_state = 40}, + [1622] = {.lex_state = 463, .external_lex_state = 42}, + [1623] = {.lex_state = 463, .external_lex_state = 42}, + [1624] = {.lex_state = 481, .external_lex_state = 40}, + [1625] = {.lex_state = 463, .external_lex_state = 39}, + [1626] = {.lex_state = 481, .external_lex_state = 40}, + [1627] = {.lex_state = 460, .external_lex_state = 41}, + [1628] = {.lex_state = 460, .external_lex_state = 41}, + [1629] = {.lex_state = 460, .external_lex_state = 41}, + [1630] = {.lex_state = 481, .external_lex_state = 40}, + [1631] = {.lex_state = 463, .external_lex_state = 39}, + [1632] = {.lex_state = 463, .external_lex_state = 39}, + [1633] = {.lex_state = 460, .external_lex_state = 41}, + [1634] = {.lex_state = 481, .external_lex_state = 40}, + [1635] = {.lex_state = 481, .external_lex_state = 40}, + [1636] = {.lex_state = 463, .external_lex_state = 39}, + [1637] = {.lex_state = 463, .external_lex_state = 39}, + [1638] = {.lex_state = 463, .external_lex_state = 39}, + [1639] = {.lex_state = 463, .external_lex_state = 42}, + [1640] = {.lex_state = 482, .external_lex_state = 41}, + [1641] = {.lex_state = 463, .external_lex_state = 39}, + [1642] = {.lex_state = 482, .external_lex_state = 41}, + [1643] = {.lex_state = 482, .external_lex_state = 41}, + [1644] = {.lex_state = 463, .external_lex_state = 42}, + [1645] = {.lex_state = 460, .external_lex_state = 41}, + [1646] = {.lex_state = 482, .external_lex_state = 41}, + [1647] = {.lex_state = 481, .external_lex_state = 40}, + [1648] = {.lex_state = 463, .external_lex_state = 39}, + [1649] = {.lex_state = 463, .external_lex_state = 39}, + [1650] = {.lex_state = 463, .external_lex_state = 39}, + [1651] = {.lex_state = 463, .external_lex_state = 39}, + [1652] = {.lex_state = 460, .external_lex_state = 41}, + [1653] = {.lex_state = 481, .external_lex_state = 40}, + [1654] = {.lex_state = 209, .external_lex_state = 17}, + [1655] = {.lex_state = 209, .external_lex_state = 17}, + [1656] = {.lex_state = 481, .external_lex_state = 40}, + [1657] = {.lex_state = 460, .external_lex_state = 41}, + [1658] = {.lex_state = 463, .external_lex_state = 39}, + [1659] = {.lex_state = 482, .external_lex_state = 41}, + [1660] = {.lex_state = 482, .external_lex_state = 41}, + [1661] = {.lex_state = 460, .external_lex_state = 41}, + [1662] = {.lex_state = 460, .external_lex_state = 41}, + [1663] = {.lex_state = 482, .external_lex_state = 41}, + [1664] = {.lex_state = 463, .external_lex_state = 39}, + [1665] = {.lex_state = 460, .external_lex_state = 41}, + [1666] = {.lex_state = 481, .external_lex_state = 40}, + [1667] = {.lex_state = 482, .external_lex_state = 41}, + [1668] = {.lex_state = 481, .external_lex_state = 40}, + [1669] = {.lex_state = 463, .external_lex_state = 39}, + [1670] = {.lex_state = 460, .external_lex_state = 41}, + [1671] = {.lex_state = 481, .external_lex_state = 40}, + [1672] = {.lex_state = 481, .external_lex_state = 40}, + [1673] = {.lex_state = 463, .external_lex_state = 39}, + [1674] = {.lex_state = 460, .external_lex_state = 41}, + [1675] = {.lex_state = 460, .external_lex_state = 41}, + [1676] = {.lex_state = 481, .external_lex_state = 40}, + [1677] = {.lex_state = 463, .external_lex_state = 42}, + [1678] = {.lex_state = 463, .external_lex_state = 42}, + [1679] = {.lex_state = 462, .external_lex_state = 19}, + [1680] = {.lex_state = 482, .external_lex_state = 41}, + [1681] = {.lex_state = 482, .external_lex_state = 41}, + [1682] = {.lex_state = 482, .external_lex_state = 41}, + [1683] = {.lex_state = 463, .external_lex_state = 42}, + [1684] = {.lex_state = 463, .external_lex_state = 42}, + [1685] = {.lex_state = 482, .external_lex_state = 41}, + [1686] = {.lex_state = 238, .external_lex_state = 43}, + [1687] = {.lex_state = 463, .external_lex_state = 42}, + [1688] = {.lex_state = 238, .external_lex_state = 43}, + [1689] = {.lex_state = 482, .external_lex_state = 41}, + [1690] = {.lex_state = 463, .external_lex_state = 42}, + [1691] = {.lex_state = 479, .external_lex_state = 22}, + [1692] = {.lex_state = 463, .external_lex_state = 42}, + [1693] = {.lex_state = 238, .external_lex_state = 43}, + [1694] = {.lex_state = 463, .external_lex_state = 42}, + [1695] = {.lex_state = 463, .external_lex_state = 42}, + [1696] = {.lex_state = 463, .external_lex_state = 42}, + [1697] = {.lex_state = 463, .external_lex_state = 42}, + [1698] = {.lex_state = 463, .external_lex_state = 42}, + [1699] = {.lex_state = 463, .external_lex_state = 42}, + [1700] = {.lex_state = 482, .external_lex_state = 41}, + [1701] = {.lex_state = 482, .external_lex_state = 41}, + [1702] = {.lex_state = 463, .external_lex_state = 42}, + [1703] = {.lex_state = 238, .external_lex_state = 43}, + [1704] = {.lex_state = 482, .external_lex_state = 41}, + [1705] = {.lex_state = 482, .external_lex_state = 41}, + [1706] = {.lex_state = 479, .external_lex_state = 22}, + [1707] = {.lex_state = 482, .external_lex_state = 41}, + [1708] = {.lex_state = 462, .external_lex_state = 19}, + [1709] = {.lex_state = 463, .external_lex_state = 42}, + [1710] = {.lex_state = 463, .external_lex_state = 42}, + [1711] = {.lex_state = 463, .external_lex_state = 42}, + [1712] = {.lex_state = 482, .external_lex_state = 41}, + [1713] = {.lex_state = 459, .external_lex_state = 18}, + [1714] = {.lex_state = 479, .external_lex_state = 22}, + [1715] = {.lex_state = 482, .external_lex_state = 41}, + [1716] = {.lex_state = 459, .external_lex_state = 18}, + [1717] = {.lex_state = 479, .external_lex_state = 22}, + [1718] = {.lex_state = 479, .external_lex_state = 22}, + [1719] = {.lex_state = 238, .external_lex_state = 43}, + [1720] = {.lex_state = 482, .external_lex_state = 41}, + [1721] = {.lex_state = 459, .external_lex_state = 18}, + [1722] = {.lex_state = 482, .external_lex_state = 41}, + [1723] = {.lex_state = 482, .external_lex_state = 41}, + [1724] = {.lex_state = 482, .external_lex_state = 41}, + [1725] = {.lex_state = 482, .external_lex_state = 41}, + [1726] = {.lex_state = 463, .external_lex_state = 42}, + [1727] = {.lex_state = 463, .external_lex_state = 42}, + [1728] = {.lex_state = 482, .external_lex_state = 41}, + [1729] = {.lex_state = 238, .external_lex_state = 43}, + [1730] = {.lex_state = 238, .external_lex_state = 43}, + [1731] = {.lex_state = 238, .external_lex_state = 43}, + [1732] = {.lex_state = 479, .external_lex_state = 22}, + [1733] = {.lex_state = 459, .external_lex_state = 18}, + [1734] = {.lex_state = 482, .external_lex_state = 41}, + [1735] = {.lex_state = 482, .external_lex_state = 41}, + [1736] = {.lex_state = 463, .external_lex_state = 42}, + [1737] = {.lex_state = 480, .external_lex_state = 18}, + [1738] = {.lex_state = 459, .external_lex_state = 18}, + [1739] = {.lex_state = 459, .external_lex_state = 18}, + [1740] = {.lex_state = 452, .external_lex_state = 44}, + [1741] = {.lex_state = 480, .external_lex_state = 18}, + [1742] = {.lex_state = 479, .external_lex_state = 22}, + [1743] = {.lex_state = 470, .external_lex_state = 45}, + [1744] = {.lex_state = 484, .external_lex_state = 46}, + [1745] = {.lex_state = 479, .external_lex_state = 22}, + [1746] = {.lex_state = 480, .external_lex_state = 18}, + [1747] = {.lex_state = 462, .external_lex_state = 21}, + [1748] = {.lex_state = 453, .external_lex_state = 44}, + [1749] = {.lex_state = 470, .external_lex_state = 45}, + [1750] = {.lex_state = 462, .external_lex_state = 21}, + [1751] = {.lex_state = 459, .external_lex_state = 18}, + [1752] = {.lex_state = 479, .external_lex_state = 22}, + [1753] = {.lex_state = 462, .external_lex_state = 21}, + [1754] = {.lex_state = 480, .external_lex_state = 18}, + [1755] = {.lex_state = 480, .external_lex_state = 18}, + [1756] = {.lex_state = 479, .external_lex_state = 22}, + [1757] = {.lex_state = 484, .external_lex_state = 46}, + [1758] = {.lex_state = 459, .external_lex_state = 18}, + [1759] = {.lex_state = 479, .external_lex_state = 22}, + [1760] = {.lex_state = 462, .external_lex_state = 19}, + [1761] = {.lex_state = 453, .external_lex_state = 44}, + [1762] = {.lex_state = 462, .external_lex_state = 21}, + [1763] = {.lex_state = 484, .external_lex_state = 46}, + [1764] = {.lex_state = 480, .external_lex_state = 18}, + [1765] = {.lex_state = 480, .external_lex_state = 18}, + [1766] = {.lex_state = 470, .external_lex_state = 45}, + [1767] = {.lex_state = 462, .external_lex_state = 21}, + [1768] = {.lex_state = 470, .external_lex_state = 45}, + [1769] = {.lex_state = 480, .external_lex_state = 18}, + [1770] = {.lex_state = 484, .external_lex_state = 46}, + [1771] = {.lex_state = 453, .external_lex_state = 44}, + [1772] = {.lex_state = 479, .external_lex_state = 22}, + [1773] = {.lex_state = 480, .external_lex_state = 18}, + [1774] = {.lex_state = 462, .external_lex_state = 21}, + [1775] = {.lex_state = 453, .external_lex_state = 44}, + [1776] = {.lex_state = 470, .external_lex_state = 45}, + [1777] = {.lex_state = 480, .external_lex_state = 18}, + [1778] = {.lex_state = 470, .external_lex_state = 45}, + [1779] = {.lex_state = 453, .external_lex_state = 44}, + [1780] = {.lex_state = 462, .external_lex_state = 21}, + [1781] = {.lex_state = 484, .external_lex_state = 46}, + [1782] = {.lex_state = 484, .external_lex_state = 46}, + [1783] = {.lex_state = 453, .external_lex_state = 44}, + [1784] = {.lex_state = 453, .external_lex_state = 44}, + [1785] = {.lex_state = 453, .external_lex_state = 44}, + [1786] = {.lex_state = 453, .external_lex_state = 44}, + [1787] = {.lex_state = 453, .external_lex_state = 44}, + [1788] = {.lex_state = 480, .external_lex_state = 18}, + [1789] = {.lex_state = 484, .external_lex_state = 46}, + [1790] = {.lex_state = 480, .external_lex_state = 18}, + [1791] = {.lex_state = 484, .external_lex_state = 46}, + [1792] = {.lex_state = 470, .external_lex_state = 45}, + [1793] = {.lex_state = 484, .external_lex_state = 46}, + [1794] = {.lex_state = 453, .external_lex_state = 44}, + [1795] = {.lex_state = 464, .external_lex_state = 46}, + [1796] = {.lex_state = 453, .external_lex_state = 44}, + [1797] = {.lex_state = 484, .external_lex_state = 46}, + [1798] = {.lex_state = 462, .external_lex_state = 21}, + [1799] = {.lex_state = 480, .external_lex_state = 18}, + [1800] = {.lex_state = 453, .external_lex_state = 44}, + [1801] = {.lex_state = 453, .external_lex_state = 44}, + [1802] = {.lex_state = 484, .external_lex_state = 46}, + [1803] = {.lex_state = 470, .external_lex_state = 45}, + [1804] = {.lex_state = 470, .external_lex_state = 45}, + [1805] = {.lex_state = 453, .external_lex_state = 44}, + [1806] = {.lex_state = 470, .external_lex_state = 45}, + [1807] = {.lex_state = 470, .external_lex_state = 45}, + [1808] = {.lex_state = 470, .external_lex_state = 45}, + [1809] = {.lex_state = 467, .external_lex_state = 45}, + [1810] = {.lex_state = 467, .external_lex_state = 45}, + [1811] = {.lex_state = 484, .external_lex_state = 46}, + [1812] = {.lex_state = 484, .external_lex_state = 46}, + [1813] = {.lex_state = 453, .external_lex_state = 44}, + [1814] = {.lex_state = 484, .external_lex_state = 46}, + [1815] = {.lex_state = 470, .external_lex_state = 45}, + [1816] = {.lex_state = 464, .external_lex_state = 46}, + [1817] = {.lex_state = 480, .external_lex_state = 18}, + [1818] = {.lex_state = 453, .external_lex_state = 44}, + [1819] = {.lex_state = 484, .external_lex_state = 46}, + [1820] = {.lex_state = 480, .external_lex_state = 18}, + [1821] = {.lex_state = 470, .external_lex_state = 45}, + [1822] = {.lex_state = 484, .external_lex_state = 46}, + [1823] = {.lex_state = 484, .external_lex_state = 46}, + [1824] = {.lex_state = 484, .external_lex_state = 46}, + [1825] = {.lex_state = 464, .external_lex_state = 46}, + [1826] = {.lex_state = 467, .external_lex_state = 45}, + [1827] = {.lex_state = 458, .external_lex_state = 36}, + [1828] = {.lex_state = 484, .external_lex_state = 46}, + [1829] = {.lex_state = 480, .external_lex_state = 18}, + [1830] = {.lex_state = 480, .external_lex_state = 18}, + [1831] = {.lex_state = 470, .external_lex_state = 45}, + [1832] = {.lex_state = 453, .external_lex_state = 44}, + [1833] = {.lex_state = 458, .external_lex_state = 36}, + [1834] = {.lex_state = 453, .external_lex_state = 44}, + [1835] = {.lex_state = 484, .external_lex_state = 46}, + [1836] = {.lex_state = 480, .external_lex_state = 18}, + [1837] = {.lex_state = 467, .external_lex_state = 45}, + [1838] = {.lex_state = 453, .external_lex_state = 44}, + [1839] = {.lex_state = 464, .external_lex_state = 46}, + [1840] = {.lex_state = 470, .external_lex_state = 45}, + [1841] = {.lex_state = 480, .external_lex_state = 18}, + [1842] = {.lex_state = 453, .external_lex_state = 44}, + [1843] = {.lex_state = 484, .external_lex_state = 46}, + [1844] = {.lex_state = 453, .external_lex_state = 44}, + [1845] = {.lex_state = 462, .external_lex_state = 21}, + [1846] = {.lex_state = 453, .external_lex_state = 44}, + [1847] = {.lex_state = 470, .external_lex_state = 45}, + [1848] = {.lex_state = 453, .external_lex_state = 44}, + [1849] = {.lex_state = 484, .external_lex_state = 46}, + [1850] = {.lex_state = 462, .external_lex_state = 21}, + [1851] = {.lex_state = 470, .external_lex_state = 45}, + [1852] = {.lex_state = 470, .external_lex_state = 45}, + [1853] = {.lex_state = 470, .external_lex_state = 45}, + [1854] = {.lex_state = 470, .external_lex_state = 45}, + [1855] = {.lex_state = 470, .external_lex_state = 45}, + [1856] = {.lex_state = 484, .external_lex_state = 46}, + [1857] = {.lex_state = 470, .external_lex_state = 45}, + [1858] = {.lex_state = 470, .external_lex_state = 45}, + [1859] = {.lex_state = 484, .external_lex_state = 46}, + [1860] = {.lex_state = 464, .external_lex_state = 46}, + [1861] = {.lex_state = 468, .external_lex_state = 46}, + [1862] = {.lex_state = 464, .external_lex_state = 46}, + [1863] = {.lex_state = 464, .external_lex_state = 46}, + [1864] = {.lex_state = 464, .external_lex_state = 46}, + [1865] = {.lex_state = 464, .external_lex_state = 46}, + [1866] = {.lex_state = 464, .external_lex_state = 46}, + [1867] = {.lex_state = 464, .external_lex_state = 46}, + [1868] = {.lex_state = 464, .external_lex_state = 46}, + [1869] = {.lex_state = 448, .external_lex_state = 47}, + [1870] = {.lex_state = 448, .external_lex_state = 47}, + [1871] = {.lex_state = 448, .external_lex_state = 47}, + [1872] = {.lex_state = 448, .external_lex_state = 47}, + [1873] = {.lex_state = 448, .external_lex_state = 47}, + [1874] = {.lex_state = 464, .external_lex_state = 46}, + [1875] = {.lex_state = 464, .external_lex_state = 46}, + [1876] = {.lex_state = 448, .external_lex_state = 47}, + [1877] = {.lex_state = 448, .external_lex_state = 47}, + [1878] = {.lex_state = 448, .external_lex_state = 47}, + [1879] = {.lex_state = 458, .external_lex_state = 36}, + [1880] = {.lex_state = 464, .external_lex_state = 46}, + [1881] = {.lex_state = 452, .external_lex_state = 33}, + [1882] = {.lex_state = 464, .external_lex_state = 46}, + [1883] = {.lex_state = 469, .external_lex_state = 25}, + [1884] = {.lex_state = 458, .external_lex_state = 36}, + [1885] = {.lex_state = 464, .external_lex_state = 46}, + [1886] = {.lex_state = 464, .external_lex_state = 46}, + [1887] = {.lex_state = 464, .external_lex_state = 46}, + [1888] = {.lex_state = 464, .external_lex_state = 46}, + [1889] = {.lex_state = 450, .external_lex_state = 36}, + [1890] = {.lex_state = 464, .external_lex_state = 46}, + [1891] = {.lex_state = 458, .external_lex_state = 36}, + [1892] = {.lex_state = 464, .external_lex_state = 46}, + [1893] = {.lex_state = 464, .external_lex_state = 46}, + [1894] = {.lex_state = 464, .external_lex_state = 46}, + [1895] = {.lex_state = 468, .external_lex_state = 46}, + [1896] = {.lex_state = 448, .external_lex_state = 47}, + [1897] = {.lex_state = 458, .external_lex_state = 36}, + [1898] = {.lex_state = 450, .external_lex_state = 36}, + [1899] = {.lex_state = 483, .external_lex_state = 27}, + [1900] = {.lex_state = 468, .external_lex_state = 46}, + [1901] = {.lex_state = 450, .external_lex_state = 36}, + [1902] = {.lex_state = 450, .external_lex_state = 36}, + [1903] = {.lex_state = 458, .external_lex_state = 36}, + [1904] = {.lex_state = 458, .external_lex_state = 36}, + [1905] = {.lex_state = 450, .external_lex_state = 36}, + [1906] = {.lex_state = 458, .external_lex_state = 36}, + [1907] = {.lex_state = 450, .external_lex_state = 36}, + [1908] = {.lex_state = 483, .external_lex_state = 27}, + [1909] = {.lex_state = 458, .external_lex_state = 36}, + [1910] = {.lex_state = 450, .external_lex_state = 36}, + [1911] = {.lex_state = 477, .external_lex_state = 23}, + [1912] = {.lex_state = 458, .external_lex_state = 36}, + [1913] = {.lex_state = 452, .external_lex_state = 33}, + [1914] = {.lex_state = 458, .external_lex_state = 36}, + [1915] = {.lex_state = 467, .external_lex_state = 45}, + [1916] = {.lex_state = 467, .external_lex_state = 45}, + [1917] = {.lex_state = 467, .external_lex_state = 45}, + [1918] = {.lex_state = 467, .external_lex_state = 45}, + [1919] = {.lex_state = 467, .external_lex_state = 45}, + [1920] = {.lex_state = 467, .external_lex_state = 45}, + [1921] = {.lex_state = 467, .external_lex_state = 45}, + [1922] = {.lex_state = 450, .external_lex_state = 36}, + [1923] = {.lex_state = 467, .external_lex_state = 45}, + [1924] = {.lex_state = 467, .external_lex_state = 45}, + [1925] = {.lex_state = 467, .external_lex_state = 45}, + [1926] = {.lex_state = 469, .external_lex_state = 25}, + [1927] = {.lex_state = 467, .external_lex_state = 45}, + [1928] = {.lex_state = 467, .external_lex_state = 45}, + [1929] = {.lex_state = 467, .external_lex_state = 45}, + [1930] = {.lex_state = 467, .external_lex_state = 45}, + [1931] = {.lex_state = 467, .external_lex_state = 45}, + [1932] = {.lex_state = 467, .external_lex_state = 45}, + [1933] = {.lex_state = 467, .external_lex_state = 45}, + [1934] = {.lex_state = 467, .external_lex_state = 45}, + [1935] = {.lex_state = 467, .external_lex_state = 45}, + [1936] = {.lex_state = 467, .external_lex_state = 45}, + [1937] = {.lex_state = 468, .external_lex_state = 46}, + [1938] = {.lex_state = 458, .external_lex_state = 36}, + [1939] = {.lex_state = 468, .external_lex_state = 46}, + [1940] = {.lex_state = 468, .external_lex_state = 46}, + [1941] = {.lex_state = 468, .external_lex_state = 46}, + [1942] = {.lex_state = 448, .external_lex_state = 33}, + [1943] = {.lex_state = 448, .external_lex_state = 33}, + [1944] = {.lex_state = 458, .external_lex_state = 36}, + [1945] = {.lex_state = 458, .external_lex_state = 36}, + [1946] = {.lex_state = 458, .external_lex_state = 36}, + [1947] = {.lex_state = 458, .external_lex_state = 36}, + [1948] = {.lex_state = 458, .external_lex_state = 36}, + [1949] = {.lex_state = 458, .external_lex_state = 36}, + [1950] = {.lex_state = 458, .external_lex_state = 36}, + [1951] = {.lex_state = 458, .external_lex_state = 36}, + [1952] = {.lex_state = 458, .external_lex_state = 36}, + [1953] = {.lex_state = 450, .external_lex_state = 37}, + [1954] = {.lex_state = 458, .external_lex_state = 36}, + [1955] = {.lex_state = 458, .external_lex_state = 36}, + [1956] = {.lex_state = 458, .external_lex_state = 36}, + [1957] = {.lex_state = 461, .external_lex_state = 27}, + [1958] = {.lex_state = 458, .external_lex_state = 36}, + [1959] = {.lex_state = 458, .external_lex_state = 36}, + [1960] = {.lex_state = 458, .external_lex_state = 36}, + [1961] = {.lex_state = 458, .external_lex_state = 36}, + [1962] = {.lex_state = 458, .external_lex_state = 36}, + [1963] = {.lex_state = 458, .external_lex_state = 36}, + [1964] = {.lex_state = 458, .external_lex_state = 36}, + [1965] = {.lex_state = 468, .external_lex_state = 46}, + [1966] = {.lex_state = 448, .external_lex_state = 33}, + [1967] = {.lex_state = 468, .external_lex_state = 46}, + [1968] = {.lex_state = 455, .external_lex_state = 48}, + [1969] = {.lex_state = 468, .external_lex_state = 46}, + [1970] = {.lex_state = 471, .external_lex_state = 49}, + [1971] = {.lex_state = 471, .external_lex_state = 49}, + [1972] = {.lex_state = 468, .external_lex_state = 46}, + [1973] = {.lex_state = 468, .external_lex_state = 46}, + [1974] = {.lex_state = 448, .external_lex_state = 33}, + [1975] = {.lex_state = 450, .external_lex_state = 50}, + [1976] = {.lex_state = 471, .external_lex_state = 49}, + [1977] = {.lex_state = 471, .external_lex_state = 49}, + [1978] = {.lex_state = 448, .external_lex_state = 33}, + [1979] = {.lex_state = 450, .external_lex_state = 37}, + [1980] = {.lex_state = 461, .external_lex_state = 27}, + [1981] = {.lex_state = 471, .external_lex_state = 49}, + [1982] = {.lex_state = 471, .external_lex_state = 49}, + [1983] = {.lex_state = 468, .external_lex_state = 46}, + [1984] = {.lex_state = 468, .external_lex_state = 46}, + [1985] = {.lex_state = 468, .external_lex_state = 46}, + [1986] = {.lex_state = 450, .external_lex_state = 51}, + [1987] = {.lex_state = 450, .external_lex_state = 51}, + [1988] = {.lex_state = 450, .external_lex_state = 51}, + [1989] = {.lex_state = 450, .external_lex_state = 51}, + [1990] = {.lex_state = 448, .external_lex_state = 33}, + [1991] = {.lex_state = 448, .external_lex_state = 33}, + [1992] = {.lex_state = 448, .external_lex_state = 33}, + [1993] = {.lex_state = 544, .external_lex_state = 52}, + [1994] = {.lex_state = 450, .external_lex_state = 51}, + [1995] = {.lex_state = 65, .external_lex_state = 53}, + [1996] = {.lex_state = 450, .external_lex_state = 51}, + [1997] = {.lex_state = 468, .external_lex_state = 46}, + [1998] = {.lex_state = 468, .external_lex_state = 46}, + [1999] = {.lex_state = 468, .external_lex_state = 46}, + [2000] = {.lex_state = 468, .external_lex_state = 46}, + [2001] = {.lex_state = 465, .external_lex_state = 25}, + [2002] = {.lex_state = 471, .external_lex_state = 49}, + [2003] = {.lex_state = 450, .external_lex_state = 50}, + [2004] = {.lex_state = 450, .external_lex_state = 51}, + [2005] = {.lex_state = 450, .external_lex_state = 51}, + [2006] = {.lex_state = 450, .external_lex_state = 51}, + [2007] = {.lex_state = 468, .external_lex_state = 46}, + [2008] = {.lex_state = 471, .external_lex_state = 49}, + [2009] = {.lex_state = 465, .external_lex_state = 25}, + [2010] = {.lex_state = 458, .external_lex_state = 36}, + [2011] = {.lex_state = 468, .external_lex_state = 46}, + [2012] = {.lex_state = 468, .external_lex_state = 46}, + [2013] = {.lex_state = 468, .external_lex_state = 46}, + [2014] = {.lex_state = 448, .external_lex_state = 33}, + [2015] = {.lex_state = 468, .external_lex_state = 46}, + [2016] = {.lex_state = 450, .external_lex_state = 48}, + [2017] = {.lex_state = 450, .external_lex_state = 48}, + [2018] = {.lex_state = 66, .external_lex_state = 52}, + [2019] = {.lex_state = 450, .external_lex_state = 54}, + [2020] = {.lex_state = 478, .external_lex_state = 55}, + [2021] = {.lex_state = 450, .external_lex_state = 48}, + [2022] = {.lex_state = 450, .external_lex_state = 48}, + [2023] = {.lex_state = 450, .external_lex_state = 48}, + [2024] = {.lex_state = 450, .external_lex_state = 48}, + [2025] = {.lex_state = 450, .external_lex_state = 48}, + [2026] = {.lex_state = 461, .external_lex_state = 35}, + [2027] = {.lex_state = 450, .external_lex_state = 36}, + [2028] = {.lex_state = 450, .external_lex_state = 54}, + [2029] = {.lex_state = 67, .external_lex_state = 56}, + [2030] = {.lex_state = 450, .external_lex_state = 36}, + [2031] = {.lex_state = 450, .external_lex_state = 48}, + [2032] = {.lex_state = 450, .external_lex_state = 36}, + [2033] = {.lex_state = 450, .external_lex_state = 36}, + [2034] = {.lex_state = 450, .external_lex_state = 48}, + [2035] = {.lex_state = 450, .external_lex_state = 48}, + [2036] = {.lex_state = 450, .external_lex_state = 48}, + [2037] = {.lex_state = 450, .external_lex_state = 36}, + [2038] = {.lex_state = 450, .external_lex_state = 36}, + [2039] = {.lex_state = 450, .external_lex_state = 54}, + [2040] = {.lex_state = 478, .external_lex_state = 55}, + [2041] = {.lex_state = 450, .external_lex_state = 48}, + [2042] = {.lex_state = 478, .external_lex_state = 55}, + [2043] = {.lex_state = 450, .external_lex_state = 48}, + [2044] = {.lex_state = 450, .external_lex_state = 48}, + [2045] = {.lex_state = 450, .external_lex_state = 48}, + [2046] = {.lex_state = 450, .external_lex_state = 48}, + [2047] = {.lex_state = 450, .external_lex_state = 48}, + [2048] = {.lex_state = 450, .external_lex_state = 48}, + [2049] = {.lex_state = 450, .external_lex_state = 48}, + [2050] = {.lex_state = 450, .external_lex_state = 48}, + [2051] = {.lex_state = 450, .external_lex_state = 48}, + [2052] = {.lex_state = 450, .external_lex_state = 48}, + [2053] = {.lex_state = 450, .external_lex_state = 48}, + [2054] = {.lex_state = 450, .external_lex_state = 48}, + [2055] = {.lex_state = 450, .external_lex_state = 36}, + [2056] = {.lex_state = 450, .external_lex_state = 48}, + [2057] = {.lex_state = 450, .external_lex_state = 48}, + [2058] = {.lex_state = 450, .external_lex_state = 48}, + [2059] = {.lex_state = 450, .external_lex_state = 48}, + [2060] = {.lex_state = 450, .external_lex_state = 48}, + [2061] = {.lex_state = 450, .external_lex_state = 48}, + [2062] = {.lex_state = 450, .external_lex_state = 48}, + [2063] = {.lex_state = 450, .external_lex_state = 48}, + [2064] = {.lex_state = 450, .external_lex_state = 48}, + [2065] = {.lex_state = 450, .external_lex_state = 48}, + [2066] = {.lex_state = 450, .external_lex_state = 48}, + [2067] = {.lex_state = 450, .external_lex_state = 36}, + [2068] = {.lex_state = 450, .external_lex_state = 48}, + [2069] = {.lex_state = 450, .external_lex_state = 48}, + [2070] = {.lex_state = 450, .external_lex_state = 48}, + [2071] = {.lex_state = 450, .external_lex_state = 48}, + [2072] = {.lex_state = 450, .external_lex_state = 48}, + [2073] = {.lex_state = 450, .external_lex_state = 48}, + [2074] = {.lex_state = 450, .external_lex_state = 48}, + [2075] = {.lex_state = 450, .external_lex_state = 48}, + [2076] = {.lex_state = 450, .external_lex_state = 48}, + [2077] = {.lex_state = 450, .external_lex_state = 48}, + [2078] = {.lex_state = 450, .external_lex_state = 48}, + [2079] = {.lex_state = 450, .external_lex_state = 48}, + [2080] = {.lex_state = 450, .external_lex_state = 48}, + [2081] = {.lex_state = 450, .external_lex_state = 48}, + [2082] = {.lex_state = 450, .external_lex_state = 48}, + [2083] = {.lex_state = 450, .external_lex_state = 48}, + [2084] = {.lex_state = 450, .external_lex_state = 48}, + [2085] = {.lex_state = 450, .external_lex_state = 48}, + [2086] = {.lex_state = 450, .external_lex_state = 48}, + [2087] = {.lex_state = 450, .external_lex_state = 48}, + [2088] = {.lex_state = 450, .external_lex_state = 48}, + [2089] = {.lex_state = 478, .external_lex_state = 55}, + [2090] = {.lex_state = 450, .external_lex_state = 48}, + [2091] = {.lex_state = 450, .external_lex_state = 48}, + [2092] = {.lex_state = 450, .external_lex_state = 48}, + [2093] = {.lex_state = 450, .external_lex_state = 48}, + [2094] = {.lex_state = 478, .external_lex_state = 55}, + [2095] = {.lex_state = 450, .external_lex_state = 48}, + [2096] = {.lex_state = 450, .external_lex_state = 48}, + [2097] = {.lex_state = 450, .external_lex_state = 48}, + [2098] = {.lex_state = 450, .external_lex_state = 48}, + [2099] = {.lex_state = 450, .external_lex_state = 48}, + [2100] = {.lex_state = 450, .external_lex_state = 48}, + [2101] = {.lex_state = 450, .external_lex_state = 48}, + [2102] = {.lex_state = 450, .external_lex_state = 48}, + [2103] = {.lex_state = 450, .external_lex_state = 54}, + [2104] = {.lex_state = 450, .external_lex_state = 36}, + [2105] = {.lex_state = 450, .external_lex_state = 36}, + [2106] = {.lex_state = 450, .external_lex_state = 36}, + [2107] = {.lex_state = 450, .external_lex_state = 36}, + [2108] = {.lex_state = 450, .external_lex_state = 36}, + [2109] = {.lex_state = 461, .external_lex_state = 35}, + [2110] = {.lex_state = 450, .external_lex_state = 36}, + [2111] = {.lex_state = 461, .external_lex_state = 35}, + [2112] = {.lex_state = 461, .external_lex_state = 35}, + [2113] = {.lex_state = 450, .external_lex_state = 36}, + [2114] = {.lex_state = 461, .external_lex_state = 35}, + [2115] = {.lex_state = 461, .external_lex_state = 35}, + [2116] = {.lex_state = 461, .external_lex_state = 35}, + [2117] = {.lex_state = 461, .external_lex_state = 35}, + [2118] = {.lex_state = 461, .external_lex_state = 35}, + [2119] = {.lex_state = 461, .external_lex_state = 35}, + [2120] = {.lex_state = 450, .external_lex_state = 36}, + [2121] = {.lex_state = 478, .external_lex_state = 55}, + [2122] = {.lex_state = 450, .external_lex_state = 36}, + [2123] = {.lex_state = 450, .external_lex_state = 36}, + [2124] = {.lex_state = 450, .external_lex_state = 48}, + [2125] = {.lex_state = 450, .external_lex_state = 48}, + [2126] = {.lex_state = 478, .external_lex_state = 55}, + [2127] = {.lex_state = 450, .external_lex_state = 48}, + [2128] = {.lex_state = 450, .external_lex_state = 48}, + [2129] = {.lex_state = 450, .external_lex_state = 48}, + [2130] = {.lex_state = 450, .external_lex_state = 48}, + [2131] = {.lex_state = 450, .external_lex_state = 48}, + [2132] = {.lex_state = 450, .external_lex_state = 48}, + [2133] = {.lex_state = 450, .external_lex_state = 48}, + [2134] = {.lex_state = 450, .external_lex_state = 48}, + [2135] = {.lex_state = 450, .external_lex_state = 48}, + [2136] = {.lex_state = 450, .external_lex_state = 48}, + [2137] = {.lex_state = 450, .external_lex_state = 36}, + [2138] = {.lex_state = 450, .external_lex_state = 48}, + [2139] = {.lex_state = 450, .external_lex_state = 48}, + [2140] = {.lex_state = 450, .external_lex_state = 48}, + [2141] = {.lex_state = 466, .external_lex_state = 27}, + [2142] = {.lex_state = 450, .external_lex_state = 36}, + [2143] = {.lex_state = 450, .external_lex_state = 48}, + [2144] = {.lex_state = 450, .external_lex_state = 48}, + [2145] = {.lex_state = 450, .external_lex_state = 36}, + [2146] = {.lex_state = 450, .external_lex_state = 54}, + [2147] = {.lex_state = 450, .external_lex_state = 36}, + [2148] = {.lex_state = 450, .external_lex_state = 48}, + [2149] = {.lex_state = 450, .external_lex_state = 36}, + [2150] = {.lex_state = 450, .external_lex_state = 48}, + [2151] = {.lex_state = 450, .external_lex_state = 36}, + [2152] = {.lex_state = 450, .external_lex_state = 36}, + [2153] = {.lex_state = 450, .external_lex_state = 36}, + [2154] = {.lex_state = 450, .external_lex_state = 36}, + [2155] = {.lex_state = 450, .external_lex_state = 36}, + [2156] = {.lex_state = 450, .external_lex_state = 48}, + [2157] = {.lex_state = 461, .external_lex_state = 35}, + [2158] = {.lex_state = 450, .external_lex_state = 36}, + [2159] = {.lex_state = 239, .external_lex_state = 57}, + [2160] = {.lex_state = 466, .external_lex_state = 27}, + [2161] = {.lex_state = 450, .external_lex_state = 36}, + [2162] = {.lex_state = 478, .external_lex_state = 55}, + [2163] = {.lex_state = 239, .external_lex_state = 57}, + [2164] = {.lex_state = 450, .external_lex_state = 48}, + [2165] = {.lex_state = 450, .external_lex_state = 48}, + [2166] = {.lex_state = 478, .external_lex_state = 55}, + [2167] = {.lex_state = 461, .external_lex_state = 35}, + [2168] = {.lex_state = 450, .external_lex_state = 48}, + [2169] = {.lex_state = 450, .external_lex_state = 54}, + [2170] = {.lex_state = 450, .external_lex_state = 54}, + [2171] = {.lex_state = 239, .external_lex_state = 57}, + [2172] = {.lex_state = 450, .external_lex_state = 48}, + [2173] = {.lex_state = 478, .external_lex_state = 55}, + [2174] = {.lex_state = 450, .external_lex_state = 54}, + [2175] = {.lex_state = 450, .external_lex_state = 36}, + [2176] = {.lex_state = 239, .external_lex_state = 57}, + [2177] = {.lex_state = 450, .external_lex_state = 54}, + [2178] = {.lex_state = 450, .external_lex_state = 48}, + [2179] = {.lex_state = 450, .external_lex_state = 48}, + [2180] = {.lex_state = 472, .external_lex_state = 58}, + [2181] = {.lex_state = 448, .external_lex_state = 33}, + [2182] = {.lex_state = 478, .external_lex_state = 55}, + [2183] = {.lex_state = 478, .external_lex_state = 55}, + [2184] = {.lex_state = 67, .external_lex_state = 56}, + [2185] = {.lex_state = 478, .external_lex_state = 55}, + [2186] = {.lex_state = 67, .external_lex_state = 56}, + [2187] = {.lex_state = 67, .external_lex_state = 56}, + [2188] = {.lex_state = 450, .external_lex_state = 48}, + [2189] = {.lex_state = 67, .external_lex_state = 56}, + [2190] = {.lex_state = 450, .external_lex_state = 37}, + [2191] = {.lex_state = 478, .external_lex_state = 55}, + [2192] = {.lex_state = 450, .external_lex_state = 37}, + [2193] = {.lex_state = 448, .external_lex_state = 33}, + [2194] = {.lex_state = 67, .external_lex_state = 56}, + [2195] = {.lex_state = 450, .external_lex_state = 48}, + [2196] = {.lex_state = 448, .external_lex_state = 33}, + [2197] = {.lex_state = 450, .external_lex_state = 37}, + [2198] = {.lex_state = 478, .external_lex_state = 55}, + [2199] = {.lex_state = 448, .external_lex_state = 33}, + [2200] = {.lex_state = 67, .external_lex_state = 56}, + [2201] = {.lex_state = 455, .external_lex_state = 59}, + [2202] = {.lex_state = 478, .external_lex_state = 55}, + [2203] = {.lex_state = 478, .external_lex_state = 55}, + [2204] = {.lex_state = 67, .external_lex_state = 56}, + [2205] = {.lex_state = 478, .external_lex_state = 55}, + [2206] = {.lex_state = 67, .external_lex_state = 56}, + [2207] = {.lex_state = 67, .external_lex_state = 56}, + [2208] = {.lex_state = 448, .external_lex_state = 33}, + [2209] = {.lex_state = 448, .external_lex_state = 33}, + [2210] = {.lex_state = 448, .external_lex_state = 33}, + [2211] = {.lex_state = 448, .external_lex_state = 33}, + [2212] = {.lex_state = 448, .external_lex_state = 33}, + [2213] = {.lex_state = 450, .external_lex_state = 48}, + [2214] = {.lex_state = 478, .external_lex_state = 55}, + [2215] = {.lex_state = 450, .external_lex_state = 37}, + [2216] = {.lex_state = 448, .external_lex_state = 33}, + [2217] = {.lex_state = 67, .external_lex_state = 56}, + [2218] = {.lex_state = 450, .external_lex_state = 37}, + [2219] = {.lex_state = 67, .external_lex_state = 56}, + [2220] = {.lex_state = 67, .external_lex_state = 56}, + [2221] = {.lex_state = 450, .external_lex_state = 48}, + [2222] = {.lex_state = 448, .external_lex_state = 33}, + [2223] = {.lex_state = 448, .external_lex_state = 33}, + [2224] = {.lex_state = 448, .external_lex_state = 33}, + [2225] = {.lex_state = 450, .external_lex_state = 37}, + [2226] = {.lex_state = 448, .external_lex_state = 33}, + [2227] = {.lex_state = 448, .external_lex_state = 33}, + [2228] = {.lex_state = 448, .external_lex_state = 33}, + [2229] = {.lex_state = 448, .external_lex_state = 33}, + [2230] = {.lex_state = 450, .external_lex_state = 48}, + [2231] = {.lex_state = 239, .external_lex_state = 57}, + [2232] = {.lex_state = 61, .external_lex_state = 60}, + [2233] = {.lex_state = 450, .external_lex_state = 37}, + [2234] = {.lex_state = 448, .external_lex_state = 33}, + [2235] = {.lex_state = 450, .external_lex_state = 37}, + [2236] = {.lex_state = 450, .external_lex_state = 48}, + [2237] = {.lex_state = 448, .external_lex_state = 33}, + [2238] = {.lex_state = 448, .external_lex_state = 33}, + [2239] = {.lex_state = 450, .external_lex_state = 48}, + [2240] = {.lex_state = 450, .external_lex_state = 48}, + [2241] = {.lex_state = 450, .external_lex_state = 37}, + [2242] = {.lex_state = 448, .external_lex_state = 33}, + [2243] = {.lex_state = 448, .external_lex_state = 33}, + [2244] = {.lex_state = 450, .external_lex_state = 37}, + [2245] = {.lex_state = 450, .external_lex_state = 48}, + [2246] = {.lex_state = 450, .external_lex_state = 48}, + [2247] = {.lex_state = 450, .external_lex_state = 37}, + [2248] = {.lex_state = 448, .external_lex_state = 33}, + [2249] = {.lex_state = 461, .external_lex_state = 35}, + [2250] = {.lex_state = 472, .external_lex_state = 58}, + [2251] = {.lex_state = 450, .external_lex_state = 37}, + [2252] = {.lex_state = 450, .external_lex_state = 48}, + [2253] = {.lex_state = 450, .external_lex_state = 48}, + [2254] = {.lex_state = 450, .external_lex_state = 37}, + [2255] = {.lex_state = 448, .external_lex_state = 33}, + [2256] = {.lex_state = 478, .external_lex_state = 55}, + [2257] = {.lex_state = 450, .external_lex_state = 48}, + [2258] = {.lex_state = 478, .external_lex_state = 55}, + [2259] = {.lex_state = 478, .external_lex_state = 55}, + [2260] = {.lex_state = 450, .external_lex_state = 48}, + [2261] = {.lex_state = 67, .external_lex_state = 56}, + [2262] = {.lex_state = 450, .external_lex_state = 37}, + [2263] = {.lex_state = 448, .external_lex_state = 33}, + [2264] = {.lex_state = 450, .external_lex_state = 37}, + [2265] = {.lex_state = 450, .external_lex_state = 48}, + [2266] = {.lex_state = 450, .external_lex_state = 48}, + [2267] = {.lex_state = 450, .external_lex_state = 37}, + [2268] = {.lex_state = 450, .external_lex_state = 48}, + [2269] = {.lex_state = 239, .external_lex_state = 57}, + [2270] = {.lex_state = 450, .external_lex_state = 37}, + [2271] = {.lex_state = 450, .external_lex_state = 37}, + [2272] = {.lex_state = 450, .external_lex_state = 37}, + [2273] = {.lex_state = 450, .external_lex_state = 37}, + [2274] = {.lex_state = 450, .external_lex_state = 37}, + [2275] = {.lex_state = 450, .external_lex_state = 37}, + [2276] = {.lex_state = 450, .external_lex_state = 37}, + [2277] = {.lex_state = 448, .external_lex_state = 33}, + [2278] = {.lex_state = 450, .external_lex_state = 37}, + [2279] = {.lex_state = 450, .external_lex_state = 37}, + [2280] = {.lex_state = 448, .external_lex_state = 33}, + [2281] = {.lex_state = 450, .external_lex_state = 48}, + [2282] = {.lex_state = 448, .external_lex_state = 33}, + [2283] = {.lex_state = 456, .external_lex_state = 48}, + [2284] = {.lex_state = 448, .external_lex_state = 33}, + [2285] = {.lex_state = 478, .external_lex_state = 55}, + [2286] = {.lex_state = 448, .external_lex_state = 33}, + [2287] = {.lex_state = 450, .external_lex_state = 37}, + [2288] = {.lex_state = 478, .external_lex_state = 55}, + [2289] = {.lex_state = 454, .external_lex_state = 48}, + [2290] = {.lex_state = 478, .external_lex_state = 55}, + [2291] = {.lex_state = 478, .external_lex_state = 55}, + [2292] = {.lex_state = 478, .external_lex_state = 55}, + [2293] = {.lex_state = 450, .external_lex_state = 37}, + [2294] = {.lex_state = 239, .external_lex_state = 57}, + [2295] = {.lex_state = 472, .external_lex_state = 58}, + [2296] = {.lex_state = 239, .external_lex_state = 57}, + [2297] = {.lex_state = 239, .external_lex_state = 57}, + [2298] = {.lex_state = 239, .external_lex_state = 57}, + [2299] = {.lex_state = 450, .external_lex_state = 48}, + [2300] = {.lex_state = 448, .external_lex_state = 33}, + [2301] = {.lex_state = 478, .external_lex_state = 55}, + [2302] = {.lex_state = 448, .external_lex_state = 33}, + [2303] = {.lex_state = 448, .external_lex_state = 33}, + [2304] = {.lex_state = 478, .external_lex_state = 55}, + [2305] = {.lex_state = 448, .external_lex_state = 33}, + [2306] = {.lex_state = 448, .external_lex_state = 33}, + [2307] = {.lex_state = 448, .external_lex_state = 33}, + [2308] = {.lex_state = 448, .external_lex_state = 33}, + [2309] = {.lex_state = 448, .external_lex_state = 33}, + [2310] = {.lex_state = 448, .external_lex_state = 33}, + [2311] = {.lex_state = 448, .external_lex_state = 33}, + [2312] = {.lex_state = 448, .external_lex_state = 33}, + [2313] = {.lex_state = 448, .external_lex_state = 33}, + [2314] = {.lex_state = 448, .external_lex_state = 33}, + [2315] = {.lex_state = 448, .external_lex_state = 33}, + [2316] = {.lex_state = 450, .external_lex_state = 37}, + [2317] = {.lex_state = 448, .external_lex_state = 33}, + [2318] = {.lex_state = 450, .external_lex_state = 37}, + [2319] = {.lex_state = 67, .external_lex_state = 56}, + [2320] = {.lex_state = 451, .external_lex_state = 48}, + [2321] = {.lex_state = 240, .external_lex_state = 61}, + [2322] = {.lex_state = 67, .external_lex_state = 56}, + [2323] = {.lex_state = 448, .external_lex_state = 33}, + [2324] = {.lex_state = 67, .external_lex_state = 56}, + [2325] = {.lex_state = 239, .external_lex_state = 57}, + [2326] = {.lex_state = 450, .external_lex_state = 37}, + [2327] = {.lex_state = 240, .external_lex_state = 61}, + [2328] = {.lex_state = 239, .external_lex_state = 57}, + [2329] = {.lex_state = 67, .external_lex_state = 56}, + [2330] = {.lex_state = 240, .external_lex_state = 61}, + [2331] = {.lex_state = 67, .external_lex_state = 56}, + [2332] = {.lex_state = 450, .external_lex_state = 37}, + [2333] = {.lex_state = 448, .external_lex_state = 33}, + [2334] = {.lex_state = 448, .external_lex_state = 33}, + [2335] = {.lex_state = 448, .external_lex_state = 33}, + [2336] = {.lex_state = 67, .external_lex_state = 56}, + [2337] = {.lex_state = 240, .external_lex_state = 61}, + [2338] = {.lex_state = 67, .external_lex_state = 56}, + [2339] = {.lex_state = 239, .external_lex_state = 57}, + [2340] = {.lex_state = 450, .external_lex_state = 62}, + [2341] = {.lex_state = 67, .external_lex_state = 56}, + [2342] = {.lex_state = 67, .external_lex_state = 56}, + [2343] = {.lex_state = 67, .external_lex_state = 56}, + [2344] = {.lex_state = 448, .external_lex_state = 50}, + [2345] = {.lex_state = 448, .external_lex_state = 33}, + [2346] = {.lex_state = 448, .external_lex_state = 33}, + [2347] = {.lex_state = 448, .external_lex_state = 33}, + [2348] = {.lex_state = 448, .external_lex_state = 33}, + [2349] = {.lex_state = 448, .external_lex_state = 33}, + [2350] = {.lex_state = 448, .external_lex_state = 33}, + [2351] = {.lex_state = 448, .external_lex_state = 33}, + [2352] = {.lex_state = 448, .external_lex_state = 33}, + [2353] = {.lex_state = 448, .external_lex_state = 33}, + [2354] = {.lex_state = 448, .external_lex_state = 33}, + [2355] = {.lex_state = 448, .external_lex_state = 33}, + [2356] = {.lex_state = 448, .external_lex_state = 33}, + [2357] = {.lex_state = 448, .external_lex_state = 33}, + [2358] = {.lex_state = 543, .external_lex_state = 63}, + [2359] = {.lex_state = 448, .external_lex_state = 33}, + [2360] = {.lex_state = 239, .external_lex_state = 57}, + [2361] = {.lex_state = 448, .external_lex_state = 50}, + [2362] = {.lex_state = 67, .external_lex_state = 56}, + [2363] = {.lex_state = 67, .external_lex_state = 56}, + [2364] = {.lex_state = 240, .external_lex_state = 61}, + [2365] = {.lex_state = 448, .external_lex_state = 33}, + [2366] = {.lex_state = 67, .external_lex_state = 56}, + [2367] = {.lex_state = 67, .external_lex_state = 56}, + [2368] = {.lex_state = 239, .external_lex_state = 57}, + [2369] = {.lex_state = 67, .external_lex_state = 56}, + [2370] = {.lex_state = 239, .external_lex_state = 57}, + [2371] = {.lex_state = 239, .external_lex_state = 57}, + [2372] = {.lex_state = 239, .external_lex_state = 57}, + [2373] = {.lex_state = 67, .external_lex_state = 56}, + [2374] = {.lex_state = 67, .external_lex_state = 56}, + [2375] = {.lex_state = 67, .external_lex_state = 56}, + [2376] = {.lex_state = 239, .external_lex_state = 57}, + [2377] = {.lex_state = 239, .external_lex_state = 57}, + [2378] = {.lex_state = 239, .external_lex_state = 57}, + [2379] = {.lex_state = 239, .external_lex_state = 57}, + [2380] = {.lex_state = 450, .external_lex_state = 37}, + [2381] = {.lex_state = 239, .external_lex_state = 57}, + [2382] = {.lex_state = 478, .external_lex_state = 55}, + [2383] = {.lex_state = 239, .external_lex_state = 57}, + [2384] = {.lex_state = 450, .external_lex_state = 62}, + [2385] = {.lex_state = 450, .external_lex_state = 37}, + [2386] = {.lex_state = 448, .external_lex_state = 33}, + [2387] = {.lex_state = 448, .external_lex_state = 33}, + [2388] = {.lex_state = 448, .external_lex_state = 33}, + [2389] = {.lex_state = 448, .external_lex_state = 33}, + [2390] = {.lex_state = 448, .external_lex_state = 33}, + [2391] = {.lex_state = 448, .external_lex_state = 33}, + [2392] = {.lex_state = 448, .external_lex_state = 33}, + [2393] = {.lex_state = 448, .external_lex_state = 48}, + [2394] = {.lex_state = 456, .external_lex_state = 48}, + [2395] = {.lex_state = 450, .external_lex_state = 59}, + [2396] = {.lex_state = 456, .external_lex_state = 48}, + [2397] = {.lex_state = 477, .external_lex_state = 23}, + [2398] = {.lex_state = 450, .external_lex_state = 59}, + [2399] = {.lex_state = 456, .external_lex_state = 48}, + [2400] = {.lex_state = 450, .external_lex_state = 59}, + [2401] = {.lex_state = 456, .external_lex_state = 48}, + [2402] = {.lex_state = 450, .external_lex_state = 59}, + [2403] = {.lex_state = 450, .external_lex_state = 59}, + [2404] = {.lex_state = 456, .external_lex_state = 48}, + [2405] = {.lex_state = 450, .external_lex_state = 59}, + [2406] = {.lex_state = 456, .external_lex_state = 48}, + [2407] = {.lex_state = 208, .external_lex_state = 20}, + [2408] = {.lex_state = 456, .external_lex_state = 48}, + [2409] = {.lex_state = 450, .external_lex_state = 59}, + [2410] = {.lex_state = 450, .external_lex_state = 59}, + [2411] = {.lex_state = 450, .external_lex_state = 59}, + [2412] = {.lex_state = 456, .external_lex_state = 48}, + [2413] = {.lex_state = 450, .external_lex_state = 59}, + [2414] = {.lex_state = 450, .external_lex_state = 59}, + [2415] = {.lex_state = 450, .external_lex_state = 59}, + [2416] = {.lex_state = 450, .external_lex_state = 59}, + [2417] = {.lex_state = 448, .external_lex_state = 48}, + [2418] = {.lex_state = 450, .external_lex_state = 59}, + [2419] = {.lex_state = 448, .external_lex_state = 48}, + [2420] = {.lex_state = 450, .external_lex_state = 59}, + [2421] = {.lex_state = 448, .external_lex_state = 48}, + [2422] = {.lex_state = 450, .external_lex_state = 59}, + [2423] = {.lex_state = 477, .external_lex_state = 23}, + [2424] = {.lex_state = 450, .external_lex_state = 59}, + [2425] = {.lex_state = 448, .external_lex_state = 48}, + [2426] = {.lex_state = 450, .external_lex_state = 59}, + [2427] = {.lex_state = 448, .external_lex_state = 48}, + [2428] = {.lex_state = 450, .external_lex_state = 59}, + [2429] = {.lex_state = 451, .external_lex_state = 48}, + [2430] = {.lex_state = 450, .external_lex_state = 59}, + [2431] = {.lex_state = 450, .external_lex_state = 59}, + [2432] = {.lex_state = 450, .external_lex_state = 59}, + [2433] = {.lex_state = 450, .external_lex_state = 59}, + [2434] = {.lex_state = 456, .external_lex_state = 48}, + [2435] = {.lex_state = 450, .external_lex_state = 59}, + [2436] = {.lex_state = 456, .external_lex_state = 48}, + [2437] = {.lex_state = 450, .external_lex_state = 59}, + [2438] = {.lex_state = 450, .external_lex_state = 59}, + [2439] = {.lex_state = 450, .external_lex_state = 59}, + [2440] = {.lex_state = 448, .external_lex_state = 48}, + [2441] = {.lex_state = 450, .external_lex_state = 59}, + [2442] = {.lex_state = 450, .external_lex_state = 59}, + [2443] = {.lex_state = 456, .external_lex_state = 48}, + [2444] = {.lex_state = 450, .external_lex_state = 59}, + [2445] = {.lex_state = 451, .external_lex_state = 48}, + [2446] = {.lex_state = 450, .external_lex_state = 59}, + [2447] = {.lex_state = 456, .external_lex_state = 48}, + [2448] = {.lex_state = 450, .external_lex_state = 59}, + [2449] = {.lex_state = 451, .external_lex_state = 48}, + [2450] = {.lex_state = 450, .external_lex_state = 59}, + [2451] = {.lex_state = 451, .external_lex_state = 48}, + [2452] = {.lex_state = 450, .external_lex_state = 59}, + [2453] = {.lex_state = 456, .external_lex_state = 48}, + [2454] = {.lex_state = 450, .external_lex_state = 59}, + [2455] = {.lex_state = 486, .external_lex_state = 64}, + [2456] = {.lex_state = 450, .external_lex_state = 59}, + [2457] = {.lex_state = 477, .external_lex_state = 23}, + [2458] = {.lex_state = 456, .external_lex_state = 48}, + [2459] = {.lex_state = 450, .external_lex_state = 59}, + [2460] = {.lex_state = 448, .external_lex_state = 48}, + [2461] = {.lex_state = 450, .external_lex_state = 59}, + [2462] = {.lex_state = 456, .external_lex_state = 48}, + [2463] = {.lex_state = 450, .external_lex_state = 59}, + [2464] = {.lex_state = 450, .external_lex_state = 59}, + [2465] = {.lex_state = 450, .external_lex_state = 59}, + [2466] = {.lex_state = 450, .external_lex_state = 59}, + [2467] = {.lex_state = 450, .external_lex_state = 59}, + [2468] = {.lex_state = 477, .external_lex_state = 23}, + [2469] = {.lex_state = 450, .external_lex_state = 59}, + [2470] = {.lex_state = 450, .external_lex_state = 59}, + [2471] = {.lex_state = 450, .external_lex_state = 59}, + [2472] = {.lex_state = 451, .external_lex_state = 48}, + [2473] = {.lex_state = 450, .external_lex_state = 59}, + [2474] = {.lex_state = 450, .external_lex_state = 59}, + [2475] = {.lex_state = 486, .external_lex_state = 64}, + [2476] = {.lex_state = 450, .external_lex_state = 59}, + [2477] = {.lex_state = 450, .external_lex_state = 59}, + [2478] = {.lex_state = 486, .external_lex_state = 64}, + [2479] = {.lex_state = 451, .external_lex_state = 48}, + [2480] = {.lex_state = 450, .external_lex_state = 59}, + [2481] = {.lex_state = 486, .external_lex_state = 64}, + [2482] = {.lex_state = 448, .external_lex_state = 48}, + [2483] = {.lex_state = 450, .external_lex_state = 59}, + [2484] = {.lex_state = 450, .external_lex_state = 59}, + [2485] = {.lex_state = 450, .external_lex_state = 59}, + [2486] = {.lex_state = 456, .external_lex_state = 48}, + [2487] = {.lex_state = 450, .external_lex_state = 59}, + [2488] = {.lex_state = 450, .external_lex_state = 59}, + [2489] = {.lex_state = 456, .external_lex_state = 48}, + [2490] = {.lex_state = 451, .external_lex_state = 48}, + [2491] = {.lex_state = 450, .external_lex_state = 59}, + [2492] = {.lex_state = 448, .external_lex_state = 48}, + [2493] = {.lex_state = 451, .external_lex_state = 48}, + [2494] = {.lex_state = 486, .external_lex_state = 64}, + [2495] = {.lex_state = 448, .external_lex_state = 48}, + [2496] = {.lex_state = 451, .external_lex_state = 48}, + [2497] = {.lex_state = 450, .external_lex_state = 59}, + [2498] = {.lex_state = 450, .external_lex_state = 59}, + [2499] = {.lex_state = 450, .external_lex_state = 59}, + [2500] = {.lex_state = 450, .external_lex_state = 59}, + [2501] = {.lex_state = 448, .external_lex_state = 48}, + [2502] = {.lex_state = 450, .external_lex_state = 59}, + [2503] = {.lex_state = 456, .external_lex_state = 48}, + [2504] = {.lex_state = 450, .external_lex_state = 59}, + [2505] = {.lex_state = 448, .external_lex_state = 48}, + [2506] = {.lex_state = 59, .external_lex_state = 60}, + [2507] = {.lex_state = 448, .external_lex_state = 33}, + [2508] = {.lex_state = 456, .external_lex_state = 48}, + [2509] = {.lex_state = 448, .external_lex_state = 48}, + [2510] = {.lex_state = 62, .external_lex_state = 63}, + [2511] = {.lex_state = 448, .external_lex_state = 48}, + [2512] = {.lex_state = 477, .external_lex_state = 23}, + [2513] = {.lex_state = 477, .external_lex_state = 23}, + [2514] = {.lex_state = 486, .external_lex_state = 64}, + [2515] = {.lex_state = 456, .external_lex_state = 48}, + [2516] = {.lex_state = 456, .external_lex_state = 48}, + [2517] = {.lex_state = 456, .external_lex_state = 48}, + [2518] = {.lex_state = 542, .external_lex_state = 63}, + [2519] = {.lex_state = 456, .external_lex_state = 48}, + [2520] = {.lex_state = 448, .external_lex_state = 48}, + [2521] = {.lex_state = 477, .external_lex_state = 23}, + [2522] = {.lex_state = 448, .external_lex_state = 48}, + [2523] = {.lex_state = 448, .external_lex_state = 48}, + [2524] = {.lex_state = 448, .external_lex_state = 48}, + [2525] = {.lex_state = 448, .external_lex_state = 48}, + [2526] = {.lex_state = 448, .external_lex_state = 48}, + [2527] = {.lex_state = 448, .external_lex_state = 48}, + [2528] = {.lex_state = 448, .external_lex_state = 48}, + [2529] = {.lex_state = 448, .external_lex_state = 48}, + [2530] = {.lex_state = 448, .external_lex_state = 48}, + [2531] = {.lex_state = 448, .external_lex_state = 48}, + [2532] = {.lex_state = 448, .external_lex_state = 48}, + [2533] = {.lex_state = 448, .external_lex_state = 48}, + [2534] = {.lex_state = 448, .external_lex_state = 48}, + [2535] = {.lex_state = 448, .external_lex_state = 48}, + [2536] = {.lex_state = 450, .external_lex_state = 59}, + [2537] = {.lex_state = 456, .external_lex_state = 48}, + [2538] = {.lex_state = 477, .external_lex_state = 23}, + [2539] = {.lex_state = 486, .external_lex_state = 64}, + [2540] = {.lex_state = 450, .external_lex_state = 59}, + [2541] = {.lex_state = 451, .external_lex_state = 48}, + [2542] = {.lex_state = 450, .external_lex_state = 59}, + [2543] = {.lex_state = 448, .external_lex_state = 48}, + [2544] = {.lex_state = 448, .external_lex_state = 48}, + [2545] = {.lex_state = 486, .external_lex_state = 64}, + [2546] = {.lex_state = 451, .external_lex_state = 48}, + [2547] = {.lex_state = 450, .external_lex_state = 59}, + [2548] = {.lex_state = 450, .external_lex_state = 59}, + [2549] = {.lex_state = 448, .external_lex_state = 48}, + [2550] = {.lex_state = 448, .external_lex_state = 48}, + [2551] = {.lex_state = 448, .external_lex_state = 48}, + [2552] = {.lex_state = 448, .external_lex_state = 48}, + [2553] = {.lex_state = 486, .external_lex_state = 64}, + [2554] = {.lex_state = 448, .external_lex_state = 48}, + [2555] = {.lex_state = 448, .external_lex_state = 48}, + [2556] = {.lex_state = 448, .external_lex_state = 48}, + [2557] = {.lex_state = 451, .external_lex_state = 48}, + [2558] = {.lex_state = 451, .external_lex_state = 48}, + [2559] = {.lex_state = 451, .external_lex_state = 48}, + [2560] = {.lex_state = 450, .external_lex_state = 59}, + [2561] = {.lex_state = 450, .external_lex_state = 59}, + [2562] = {.lex_state = 456, .external_lex_state = 48}, + [2563] = {.lex_state = 451, .external_lex_state = 48}, + [2564] = {.lex_state = 451, .external_lex_state = 48}, + [2565] = {.lex_state = 450, .external_lex_state = 59}, + [2566] = {.lex_state = 450, .external_lex_state = 59}, + [2567] = {.lex_state = 451, .external_lex_state = 48}, + [2568] = {.lex_state = 451, .external_lex_state = 48}, + [2569] = {.lex_state = 451, .external_lex_state = 48}, + [2570] = {.lex_state = 450, .external_lex_state = 59}, + [2571] = {.lex_state = 451, .external_lex_state = 48}, + [2572] = {.lex_state = 450, .external_lex_state = 59}, + [2573] = {.lex_state = 450, .external_lex_state = 59}, + [2574] = {.lex_state = 451, .external_lex_state = 48}, + [2575] = {.lex_state = 450, .external_lex_state = 59}, + [2576] = {.lex_state = 456, .external_lex_state = 48}, + [2577] = {.lex_state = 451, .external_lex_state = 48}, + [2578] = {.lex_state = 450, .external_lex_state = 59}, + [2579] = {.lex_state = 451, .external_lex_state = 48}, + [2580] = {.lex_state = 451, .external_lex_state = 48}, + [2581] = {.lex_state = 448, .external_lex_state = 48}, + [2582] = {.lex_state = 451, .external_lex_state = 48}, + [2583] = {.lex_state = 486, .external_lex_state = 64}, + [2584] = {.lex_state = 456, .external_lex_state = 48}, + [2585] = {.lex_state = 451, .external_lex_state = 48}, + [2586] = {.lex_state = 451, .external_lex_state = 48}, + [2587] = {.lex_state = 450, .external_lex_state = 59}, + [2588] = {.lex_state = 450, .external_lex_state = 59}, + [2589] = {.lex_state = 448, .external_lex_state = 48}, + [2590] = {.lex_state = 451, .external_lex_state = 48}, + [2591] = {.lex_state = 451, .external_lex_state = 48}, + [2592] = {.lex_state = 451, .external_lex_state = 48}, + [2593] = {.lex_state = 451, .external_lex_state = 48}, + [2594] = {.lex_state = 486, .external_lex_state = 64}, + [2595] = {.lex_state = 450, .external_lex_state = 59}, + [2596] = {.lex_state = 486, .external_lex_state = 64}, + [2597] = {.lex_state = 450, .external_lex_state = 59}, + [2598] = {.lex_state = 450, .external_lex_state = 59}, + [2599] = {.lex_state = 450, .external_lex_state = 59}, + [2600] = {.lex_state = 448, .external_lex_state = 48}, + [2601] = {.lex_state = 486, .external_lex_state = 64}, + [2602] = {.lex_state = 450, .external_lex_state = 59}, + [2603] = {.lex_state = 450, .external_lex_state = 59}, + [2604] = {.lex_state = 208, .external_lex_state = 20}, + [2605] = {.lex_state = 450, .external_lex_state = 59}, + [2606] = {.lex_state = 456, .external_lex_state = 48}, + [2607] = {.lex_state = 450, .external_lex_state = 59}, + [2608] = {.lex_state = 450, .external_lex_state = 59}, + [2609] = {.lex_state = 450, .external_lex_state = 59}, + [2610] = {.lex_state = 450, .external_lex_state = 59}, + [2611] = {.lex_state = 456, .external_lex_state = 48}, + [2612] = {.lex_state = 448, .external_lex_state = 48}, + [2613] = {.lex_state = 450, .external_lex_state = 59}, + [2614] = {.lex_state = 456, .external_lex_state = 48}, + [2615] = {.lex_state = 450, .external_lex_state = 59}, + [2616] = {.lex_state = 456, .external_lex_state = 48}, + [2617] = {.lex_state = 450, .external_lex_state = 59}, + [2618] = {.lex_state = 450, .external_lex_state = 59}, + [2619] = {.lex_state = 461, .external_lex_state = 64}, + [2620] = {.lex_state = 461, .external_lex_state = 64}, + [2621] = {.lex_state = 477, .external_lex_state = 23}, + [2622] = {.lex_state = 461, .external_lex_state = 64}, + [2623] = {.lex_state = 477, .external_lex_state = 23}, + [2624] = {.lex_state = 477, .external_lex_state = 23}, + [2625] = {.lex_state = 477, .external_lex_state = 23}, + [2626] = {.lex_state = 461, .external_lex_state = 64}, + [2627] = {.lex_state = 60, .external_lex_state = 63}, + [2628] = {.lex_state = 461, .external_lex_state = 64}, + [2629] = {.lex_state = 461, .external_lex_state = 64}, + [2630] = {.lex_state = 477, .external_lex_state = 23}, + [2631] = {.lex_state = 477, .external_lex_state = 23}, + [2632] = {.lex_state = 461, .external_lex_state = 64}, + [2633] = {.lex_state = 461, .external_lex_state = 64}, + [2634] = {.lex_state = 461, .external_lex_state = 64}, + [2635] = {.lex_state = 461, .external_lex_state = 64}, + [2636] = {.lex_state = 461, .external_lex_state = 64}, + [2637] = {.lex_state = 461, .external_lex_state = 64}, + [2638] = {.lex_state = 461, .external_lex_state = 64}, + [2639] = {.lex_state = 477, .external_lex_state = 23}, + [2640] = {.lex_state = 477, .external_lex_state = 23}, + [2641] = {.lex_state = 477, .external_lex_state = 23}, + [2642] = {.lex_state = 461, .external_lex_state = 65}, + [2643] = {.lex_state = 461, .external_lex_state = 65}, + [2644] = {.lex_state = 443, .external_lex_state = 66}, + [2645] = {.lex_state = 443, .external_lex_state = 66}, + [2646] = {.lex_state = 443, .external_lex_state = 66}, + [2647] = {.lex_state = 461, .external_lex_state = 65}, + [2648] = {.lex_state = 461, .external_lex_state = 65}, + [2649] = {.lex_state = 461, .external_lex_state = 65}, + [2650] = {.lex_state = 461, .external_lex_state = 65}, + [2651] = {.lex_state = 489, .external_lex_state = 67}, + [2652] = {.lex_state = 443, .external_lex_state = 66}, + [2653] = {.lex_state = 461, .external_lex_state = 65}, + [2654] = {.lex_state = 560, .external_lex_state = 61}, + [2655] = {.lex_state = 461, .external_lex_state = 65}, + [2656] = {.lex_state = 443, .external_lex_state = 66}, + [2657] = {.lex_state = 443, .external_lex_state = 66}, + [2658] = {.lex_state = 443, .external_lex_state = 66}, + [2659] = {.lex_state = 461, .external_lex_state = 65}, + [2660] = {.lex_state = 461, .external_lex_state = 65}, + [2661] = {.lex_state = 443, .external_lex_state = 66}, + [2662] = {.lex_state = 461, .external_lex_state = 65}, + [2663] = {.lex_state = 461, .external_lex_state = 65}, + [2664] = {.lex_state = 560, .external_lex_state = 61}, + [2665] = {.lex_state = 443, .external_lex_state = 66}, + [2666] = {.lex_state = 461, .external_lex_state = 65}, + [2667] = {.lex_state = 461, .external_lex_state = 65}, + [2668] = {.lex_state = 461, .external_lex_state = 65}, + [2669] = {.lex_state = 443, .external_lex_state = 66}, + [2670] = {.lex_state = 461, .external_lex_state = 65}, + [2671] = {.lex_state = 461, .external_lex_state = 68}, + [2672] = {.lex_state = 461, .external_lex_state = 68}, + [2673] = {.lex_state = 461, .external_lex_state = 65}, + [2674] = {.lex_state = 461, .external_lex_state = 65}, + [2675] = {.lex_state = 461, .external_lex_state = 65}, + [2676] = {.lex_state = 461, .external_lex_state = 65}, + [2677] = {.lex_state = 443, .external_lex_state = 66}, + [2678] = {.lex_state = 461, .external_lex_state = 65}, + [2679] = {.lex_state = 443, .external_lex_state = 66}, + [2680] = {.lex_state = 443, .external_lex_state = 66}, + [2681] = {.lex_state = 461, .external_lex_state = 65}, + [2682] = {.lex_state = 461, .external_lex_state = 68}, + [2683] = {.lex_state = 443, .external_lex_state = 66}, + [2684] = {.lex_state = 443, .external_lex_state = 66}, + [2685] = {.lex_state = 461, .external_lex_state = 65}, + [2686] = {.lex_state = 241, .external_lex_state = 61}, + [2687] = {.lex_state = 461, .external_lex_state = 65}, + [2688] = {.lex_state = 461, .external_lex_state = 65}, + [2689] = {.lex_state = 461, .external_lex_state = 65}, + [2690] = {.lex_state = 461, .external_lex_state = 65}, + [2691] = {.lex_state = 461, .external_lex_state = 65}, + [2692] = {.lex_state = 443, .external_lex_state = 66}, + [2693] = {.lex_state = 443, .external_lex_state = 66}, + [2694] = {.lex_state = 443, .external_lex_state = 66}, + [2695] = {.lex_state = 443, .external_lex_state = 66}, + [2696] = {.lex_state = 461, .external_lex_state = 65}, + [2697] = {.lex_state = 461, .external_lex_state = 65}, + [2698] = {.lex_state = 461, .external_lex_state = 65}, + [2699] = {.lex_state = 461, .external_lex_state = 65}, + [2700] = {.lex_state = 461, .external_lex_state = 65}, + [2701] = {.lex_state = 461, .external_lex_state = 65}, + [2702] = {.lex_state = 443, .external_lex_state = 66}, + [2703] = {.lex_state = 443, .external_lex_state = 66}, + [2704] = {.lex_state = 443, .external_lex_state = 66}, + [2705] = {.lex_state = 443, .external_lex_state = 66}, + [2706] = {.lex_state = 461, .external_lex_state = 65}, + [2707] = {.lex_state = 461, .external_lex_state = 65}, + [2708] = {.lex_state = 461, .external_lex_state = 65}, + [2709] = {.lex_state = 461, .external_lex_state = 65}, + [2710] = {.lex_state = 461, .external_lex_state = 65}, + [2711] = {.lex_state = 461, .external_lex_state = 65}, + [2712] = {.lex_state = 443, .external_lex_state = 66}, + [2713] = {.lex_state = 461, .external_lex_state = 65}, + [2714] = {.lex_state = 461, .external_lex_state = 65}, + [2715] = {.lex_state = 461, .external_lex_state = 65}, + [2716] = {.lex_state = 461, .external_lex_state = 65}, + [2717] = {.lex_state = 443, .external_lex_state = 66}, + [2718] = {.lex_state = 461, .external_lex_state = 65}, + [2719] = {.lex_state = 461, .external_lex_state = 65}, + [2720] = {.lex_state = 461, .external_lex_state = 65}, + [2721] = {.lex_state = 461, .external_lex_state = 65}, + [2722] = {.lex_state = 443, .external_lex_state = 66}, + [2723] = {.lex_state = 443, .external_lex_state = 66}, + [2724] = {.lex_state = 461, .external_lex_state = 65}, + [2725] = {.lex_state = 489, .external_lex_state = 67}, + [2726] = {.lex_state = 461, .external_lex_state = 65}, + [2727] = {.lex_state = 461, .external_lex_state = 65}, + [2728] = {.lex_state = 443, .external_lex_state = 66}, + [2729] = {.lex_state = 443, .external_lex_state = 66}, + [2730] = {.lex_state = 443, .external_lex_state = 66}, + [2731] = {.lex_state = 443, .external_lex_state = 66}, + [2732] = {.lex_state = 443, .external_lex_state = 66}, + [2733] = {.lex_state = 443, .external_lex_state = 66}, + [2734] = {.lex_state = 443, .external_lex_state = 66}, + [2735] = {.lex_state = 443, .external_lex_state = 66}, + [2736] = {.lex_state = 443, .external_lex_state = 66}, + [2737] = {.lex_state = 443, .external_lex_state = 66}, + [2738] = {.lex_state = 443, .external_lex_state = 66}, + [2739] = {.lex_state = 443, .external_lex_state = 66}, + [2740] = {.lex_state = 443, .external_lex_state = 66}, + [2741] = {.lex_state = 443, .external_lex_state = 66}, + [2742] = {.lex_state = 443, .external_lex_state = 66}, + [2743] = {.lex_state = 461, .external_lex_state = 65}, + [2744] = {.lex_state = 443, .external_lex_state = 66}, + [2745] = {.lex_state = 461, .external_lex_state = 65}, + [2746] = {.lex_state = 461, .external_lex_state = 65}, + [2747] = {.lex_state = 461, .external_lex_state = 69}, + [2748] = {.lex_state = 443, .external_lex_state = 66}, + [2749] = {.lex_state = 443, .external_lex_state = 66}, + [2750] = {.lex_state = 443, .external_lex_state = 66}, + [2751] = {.lex_state = 443, .external_lex_state = 66}, + [2752] = {.lex_state = 443, .external_lex_state = 66}, + [2753] = {.lex_state = 443, .external_lex_state = 66}, + [2754] = {.lex_state = 443, .external_lex_state = 66}, + [2755] = {.lex_state = 443, .external_lex_state = 66}, + [2756] = {.lex_state = 443, .external_lex_state = 66}, + [2757] = {.lex_state = 443, .external_lex_state = 66}, + [2758] = {.lex_state = 487, .external_lex_state = 70}, + [2759] = {.lex_state = 443, .external_lex_state = 66}, + [2760] = {.lex_state = 443, .external_lex_state = 66}, + [2761] = {.lex_state = 443, .external_lex_state = 66}, + [2762] = {.lex_state = 443, .external_lex_state = 66}, + [2763] = {.lex_state = 443, .external_lex_state = 66}, + [2764] = {.lex_state = 443, .external_lex_state = 66}, + [2765] = {.lex_state = 461, .external_lex_state = 65}, + [2766] = {.lex_state = 461, .external_lex_state = 69}, + [2767] = {.lex_state = 461, .external_lex_state = 65}, + [2768] = {.lex_state = 443, .external_lex_state = 66}, + [2769] = {.lex_state = 443, .external_lex_state = 66}, + [2770] = {.lex_state = 443, .external_lex_state = 66}, + [2771] = {.lex_state = 443, .external_lex_state = 66}, + [2772] = {.lex_state = 443, .external_lex_state = 66}, + [2773] = {.lex_state = 489, .external_lex_state = 67}, + [2774] = {.lex_state = 443, .external_lex_state = 66}, + [2775] = {.lex_state = 443, .external_lex_state = 66}, + [2776] = {.lex_state = 443, .external_lex_state = 66}, + [2777] = {.lex_state = 443, .external_lex_state = 66}, + [2778] = {.lex_state = 443, .external_lex_state = 66}, + [2779] = {.lex_state = 443, .external_lex_state = 66}, + [2780] = {.lex_state = 443, .external_lex_state = 66}, + [2781] = {.lex_state = 443, .external_lex_state = 66}, + [2782] = {.lex_state = 443, .external_lex_state = 66}, + [2783] = {.lex_state = 443, .external_lex_state = 66}, + [2784] = {.lex_state = 443, .external_lex_state = 66}, + [2785] = {.lex_state = 443, .external_lex_state = 66}, + [2786] = {.lex_state = 443, .external_lex_state = 66}, + [2787] = {.lex_state = 443, .external_lex_state = 66}, + [2788] = {.lex_state = 443, .external_lex_state = 66}, + [2789] = {.lex_state = 443, .external_lex_state = 66}, + [2790] = {.lex_state = 443, .external_lex_state = 66}, + [2791] = {.lex_state = 443, .external_lex_state = 66}, + [2792] = {.lex_state = 443, .external_lex_state = 66}, + [2793] = {.lex_state = 487, .external_lex_state = 70}, + [2794] = {.lex_state = 461, .external_lex_state = 69}, + [2795] = {.lex_state = 443, .external_lex_state = 66}, + [2796] = {.lex_state = 443, .external_lex_state = 66}, + [2797] = {.lex_state = 443, .external_lex_state = 66}, + [2798] = {.lex_state = 487, .external_lex_state = 70}, + [2799] = {.lex_state = 443, .external_lex_state = 66}, + [2800] = {.lex_state = 443, .external_lex_state = 66}, + [2801] = {.lex_state = 443, .external_lex_state = 66}, + [2802] = {.lex_state = 443, .external_lex_state = 66}, + [2803] = {.lex_state = 443, .external_lex_state = 66}, + [2804] = {.lex_state = 443, .external_lex_state = 66}, + [2805] = {.lex_state = 443, .external_lex_state = 66}, + [2806] = {.lex_state = 443, .external_lex_state = 66}, + [2807] = {.lex_state = 443, .external_lex_state = 66}, + [2808] = {.lex_state = 443, .external_lex_state = 66}, + [2809] = {.lex_state = 461, .external_lex_state = 65}, + [2810] = {.lex_state = 443, .external_lex_state = 66}, + [2811] = {.lex_state = 443, .external_lex_state = 66}, + [2812] = {.lex_state = 443, .external_lex_state = 66}, + [2813] = {.lex_state = 443, .external_lex_state = 66}, + [2814] = {.lex_state = 461, .external_lex_state = 65}, + [2815] = {.lex_state = 443, .external_lex_state = 66}, + [2816] = {.lex_state = 443, .external_lex_state = 66}, + [2817] = {.lex_state = 443, .external_lex_state = 66}, + [2818] = {.lex_state = 443, .external_lex_state = 66}, + [2819] = {.lex_state = 443, .external_lex_state = 66}, + [2820] = {.lex_state = 443, .external_lex_state = 66}, + [2821] = {.lex_state = 461, .external_lex_state = 65}, + [2822] = {.lex_state = 443, .external_lex_state = 66}, + [2823] = {.lex_state = 443, .external_lex_state = 66}, + [2824] = {.lex_state = 443, .external_lex_state = 66}, + [2825] = {.lex_state = 443, .external_lex_state = 66}, + [2826] = {.lex_state = 443, .external_lex_state = 66}, + [2827] = {.lex_state = 443, .external_lex_state = 66}, + [2828] = {.lex_state = 443, .external_lex_state = 66}, + [2829] = {.lex_state = 461, .external_lex_state = 69}, + [2830] = {.lex_state = 443, .external_lex_state = 66}, + [2831] = {.lex_state = 443, .external_lex_state = 66}, + [2832] = {.lex_state = 443, .external_lex_state = 66}, + [2833] = {.lex_state = 443, .external_lex_state = 66}, + [2834] = {.lex_state = 443, .external_lex_state = 66}, + [2835] = {.lex_state = 443, .external_lex_state = 66}, + [2836] = {.lex_state = 443, .external_lex_state = 66}, + [2837] = {.lex_state = 443, .external_lex_state = 66}, + [2838] = {.lex_state = 443, .external_lex_state = 66}, + [2839] = {.lex_state = 443, .external_lex_state = 66}, + [2840] = {.lex_state = 487, .external_lex_state = 70}, + [2841] = {.lex_state = 443, .external_lex_state = 66}, + [2842] = {.lex_state = 443, .external_lex_state = 66}, + [2843] = {.lex_state = 443, .external_lex_state = 66}, + [2844] = {.lex_state = 443, .external_lex_state = 66}, + [2845] = {.lex_state = 443, .external_lex_state = 66}, + [2846] = {.lex_state = 443, .external_lex_state = 66}, + [2847] = {.lex_state = 443, .external_lex_state = 66}, + [2848] = {.lex_state = 443, .external_lex_state = 66}, + [2849] = {.lex_state = 443, .external_lex_state = 66}, + [2850] = {.lex_state = 443, .external_lex_state = 66}, + [2851] = {.lex_state = 443, .external_lex_state = 66}, + [2852] = {.lex_state = 443, .external_lex_state = 66}, + [2853] = {.lex_state = 443, .external_lex_state = 66}, + [2854] = {.lex_state = 443, .external_lex_state = 66}, + [2855] = {.lex_state = 461, .external_lex_state = 65}, + [2856] = {.lex_state = 443, .external_lex_state = 66}, + [2857] = {.lex_state = 443, .external_lex_state = 66}, + [2858] = {.lex_state = 443, .external_lex_state = 66}, + [2859] = {.lex_state = 443, .external_lex_state = 66}, + [2860] = {.lex_state = 461, .external_lex_state = 65}, + [2861] = {.lex_state = 443, .external_lex_state = 66}, + [2862] = {.lex_state = 443, .external_lex_state = 66}, + [2863] = {.lex_state = 443, .external_lex_state = 66}, + [2864] = {.lex_state = 443, .external_lex_state = 66}, + [2865] = {.lex_state = 443, .external_lex_state = 66}, + [2866] = {.lex_state = 443, .external_lex_state = 66}, + [2867] = {.lex_state = 443, .external_lex_state = 66}, + [2868] = {.lex_state = 443, .external_lex_state = 66}, + [2869] = {.lex_state = 443, .external_lex_state = 66}, + [2870] = {.lex_state = 443, .external_lex_state = 66}, + [2871] = {.lex_state = 443, .external_lex_state = 66}, + [2872] = {.lex_state = 443, .external_lex_state = 66}, + [2873] = {.lex_state = 443, .external_lex_state = 66}, + [2874] = {.lex_state = 443, .external_lex_state = 66}, + [2875] = {.lex_state = 443, .external_lex_state = 66}, + [2876] = {.lex_state = 443, .external_lex_state = 66}, + [2877] = {.lex_state = 443, .external_lex_state = 66}, + [2878] = {.lex_state = 461, .external_lex_state = 65}, + [2879] = {.lex_state = 443, .external_lex_state = 66}, + [2880] = {.lex_state = 443, .external_lex_state = 66}, + [2881] = {.lex_state = 443, .external_lex_state = 66}, + [2882] = {.lex_state = 443, .external_lex_state = 66}, + [2883] = {.lex_state = 443, .external_lex_state = 66}, + [2884] = {.lex_state = 443, .external_lex_state = 66}, + [2885] = {.lex_state = 443, .external_lex_state = 66}, + [2886] = {.lex_state = 443, .external_lex_state = 66}, + [2887] = {.lex_state = 443, .external_lex_state = 66}, + [2888] = {.lex_state = 443, .external_lex_state = 66}, + [2889] = {.lex_state = 443, .external_lex_state = 66}, + [2890] = {.lex_state = 443, .external_lex_state = 66}, + [2891] = {.lex_state = 443, .external_lex_state = 66}, + [2892] = {.lex_state = 487, .external_lex_state = 70}, + [2893] = {.lex_state = 443, .external_lex_state = 66}, + [2894] = {.lex_state = 443, .external_lex_state = 66}, + [2895] = {.lex_state = 461, .external_lex_state = 65}, + [2896] = {.lex_state = 443, .external_lex_state = 66}, + [2897] = {.lex_state = 443, .external_lex_state = 66}, + [2898] = {.lex_state = 443, .external_lex_state = 66}, + [2899] = {.lex_state = 443, .external_lex_state = 66}, + [2900] = {.lex_state = 443, .external_lex_state = 66}, + [2901] = {.lex_state = 443, .external_lex_state = 66}, + [2902] = {.lex_state = 461, .external_lex_state = 65}, + [2903] = {.lex_state = 443, .external_lex_state = 66}, + [2904] = {.lex_state = 443, .external_lex_state = 66}, + [2905] = {.lex_state = 443, .external_lex_state = 66}, + [2906] = {.lex_state = 443, .external_lex_state = 66}, + [2907] = {.lex_state = 461, .external_lex_state = 65}, + [2908] = {.lex_state = 443, .external_lex_state = 66}, + [2909] = {.lex_state = 443, .external_lex_state = 66}, + [2910] = {.lex_state = 443, .external_lex_state = 66}, + [2911] = {.lex_state = 443, .external_lex_state = 66}, + [2912] = {.lex_state = 443, .external_lex_state = 66}, + [2913] = {.lex_state = 443, .external_lex_state = 66}, + [2914] = {.lex_state = 443, .external_lex_state = 66}, + [2915] = {.lex_state = 443, .external_lex_state = 66}, + [2916] = {.lex_state = 487, .external_lex_state = 70}, + [2917] = {.lex_state = 461, .external_lex_state = 65}, + [2918] = {.lex_state = 461, .external_lex_state = 65}, + [2919] = {.lex_state = 461, .external_lex_state = 65}, + [2920] = {.lex_state = 461, .external_lex_state = 65}, + [2921] = {.lex_state = 443, .external_lex_state = 66}, + [2922] = {.lex_state = 461, .external_lex_state = 65}, + [2923] = {.lex_state = 461, .external_lex_state = 65}, + [2924] = {.lex_state = 443, .external_lex_state = 66}, + [2925] = {.lex_state = 486, .external_lex_state = 71}, + [2926] = {.lex_state = 486, .external_lex_state = 71}, + [2927] = {.lex_state = 486, .external_lex_state = 71}, + [2928] = {.lex_state = 486, .external_lex_state = 71}, + [2929] = {.lex_state = 486, .external_lex_state = 71}, + [2930] = {.lex_state = 486, .external_lex_state = 71}, + [2931] = {.lex_state = 486, .external_lex_state = 71}, + [2932] = {.lex_state = 486, .external_lex_state = 71}, + [2933] = {.lex_state = 486, .external_lex_state = 71}, + [2934] = {.lex_state = 486, .external_lex_state = 71}, + [2935] = {.lex_state = 486, .external_lex_state = 71}, + [2936] = {.lex_state = 486, .external_lex_state = 71}, + [2937] = {.lex_state = 486, .external_lex_state = 71}, + [2938] = {.lex_state = 486, .external_lex_state = 71}, + [2939] = {.lex_state = 486, .external_lex_state = 71}, + [2940] = {.lex_state = 486, .external_lex_state = 71}, + [2941] = {.lex_state = 486, .external_lex_state = 71}, + [2942] = {.lex_state = 461, .external_lex_state = 65}, + [2943] = {.lex_state = 486, .external_lex_state = 71}, + [2944] = {.lex_state = 486, .external_lex_state = 71}, + [2945] = {.lex_state = 461, .external_lex_state = 65}, + [2946] = {.lex_state = 486, .external_lex_state = 71}, + [2947] = {.lex_state = 486, .external_lex_state = 71}, + [2948] = {.lex_state = 486, .external_lex_state = 71}, + [2949] = {.lex_state = 461, .external_lex_state = 65}, + [2950] = {.lex_state = 461, .external_lex_state = 65}, + [2951] = {.lex_state = 486, .external_lex_state = 71}, + [2952] = {.lex_state = 486, .external_lex_state = 71}, + [2953] = {.lex_state = 486, .external_lex_state = 71}, + [2954] = {.lex_state = 486, .external_lex_state = 71}, + [2955] = {.lex_state = 486, .external_lex_state = 71}, + [2956] = {.lex_state = 461, .external_lex_state = 65}, + [2957] = {.lex_state = 486, .external_lex_state = 71}, + [2958] = {.lex_state = 461, .external_lex_state = 65}, + [2959] = {.lex_state = 461, .external_lex_state = 65}, + [2960] = {.lex_state = 461, .external_lex_state = 65}, + [2961] = {.lex_state = 486, .external_lex_state = 71}, + [2962] = {.lex_state = 461, .external_lex_state = 65}, + [2963] = {.lex_state = 486, .external_lex_state = 71}, + [2964] = {.lex_state = 486, .external_lex_state = 71}, + [2965] = {.lex_state = 461, .external_lex_state = 65}, + [2966] = {.lex_state = 486, .external_lex_state = 71}, + [2967] = {.lex_state = 461, .external_lex_state = 65}, + [2968] = {.lex_state = 486, .external_lex_state = 71}, + [2969] = {.lex_state = 486, .external_lex_state = 71}, + [2970] = {.lex_state = 461, .external_lex_state = 65}, + [2971] = {.lex_state = 461, .external_lex_state = 65}, + [2972] = {.lex_state = 486, .external_lex_state = 71}, + [2973] = {.lex_state = 461, .external_lex_state = 65}, + [2974] = {.lex_state = 461, .external_lex_state = 65}, + [2975] = {.lex_state = 486, .external_lex_state = 71}, + [2976] = {.lex_state = 486, .external_lex_state = 71}, + [2977] = {.lex_state = 486, .external_lex_state = 71}, + [2978] = {.lex_state = 486, .external_lex_state = 71}, + [2979] = {.lex_state = 486, .external_lex_state = 71}, + [2980] = {.lex_state = 461, .external_lex_state = 65}, + [2981] = {.lex_state = 461, .external_lex_state = 65}, + [2982] = {.lex_state = 461, .external_lex_state = 65}, + [2983] = {.lex_state = 461, .external_lex_state = 65}, + [2984] = {.lex_state = 461, .external_lex_state = 65}, + [2985] = {.lex_state = 486, .external_lex_state = 71}, + [2986] = {.lex_state = 461, .external_lex_state = 65}, + [2987] = {.lex_state = 461, .external_lex_state = 65}, + [2988] = {.lex_state = 461, .external_lex_state = 65}, + [2989] = {.lex_state = 461, .external_lex_state = 65}, + [2990] = {.lex_state = 461, .external_lex_state = 65}, + [2991] = {.lex_state = 486, .external_lex_state = 71}, + [2992] = {.lex_state = 486, .external_lex_state = 71}, + [2993] = {.lex_state = 461, .external_lex_state = 65}, + [2994] = {.lex_state = 486, .external_lex_state = 71}, + [2995] = {.lex_state = 461, .external_lex_state = 65}, + [2996] = {.lex_state = 461, .external_lex_state = 65}, + [2997] = {.lex_state = 461, .external_lex_state = 65}, + [2998] = {.lex_state = 461, .external_lex_state = 65}, + [2999] = {.lex_state = 486, .external_lex_state = 71}, + [3000] = {.lex_state = 461, .external_lex_state = 65}, + [3001] = {.lex_state = 486, .external_lex_state = 71}, + [3002] = {.lex_state = 461, .external_lex_state = 65}, + [3003] = {.lex_state = 486, .external_lex_state = 71}, + [3004] = {.lex_state = 486, .external_lex_state = 71}, + [3005] = {.lex_state = 486, .external_lex_state = 71}, + [3006] = {.lex_state = 461, .external_lex_state = 65}, + [3007] = {.lex_state = 461, .external_lex_state = 65}, + [3008] = {.lex_state = 461, .external_lex_state = 65}, + [3009] = {.lex_state = 461, .external_lex_state = 65}, + [3010] = {.lex_state = 486, .external_lex_state = 71}, + [3011] = {.lex_state = 461, .external_lex_state = 65}, + [3012] = {.lex_state = 461, .external_lex_state = 65}, + [3013] = {.lex_state = 461, .external_lex_state = 65}, + [3014] = {.lex_state = 461, .external_lex_state = 65}, + [3015] = {.lex_state = 486, .external_lex_state = 71}, + [3016] = {.lex_state = 486, .external_lex_state = 71}, + [3017] = {.lex_state = 461, .external_lex_state = 65}, + [3018] = {.lex_state = 461, .external_lex_state = 65}, + [3019] = {.lex_state = 461, .external_lex_state = 65}, + [3020] = {.lex_state = 486, .external_lex_state = 71}, + [3021] = {.lex_state = 461, .external_lex_state = 65}, + [3022] = {.lex_state = 486, .external_lex_state = 71}, + [3023] = {.lex_state = 461, .external_lex_state = 65}, + [3024] = {.lex_state = 486, .external_lex_state = 71}, + [3025] = {.lex_state = 486, .external_lex_state = 71}, + [3026] = {.lex_state = 486, .external_lex_state = 71}, + [3027] = {.lex_state = 461, .external_lex_state = 65}, + [3028] = {.lex_state = 461, .external_lex_state = 65}, + [3029] = {.lex_state = 486, .external_lex_state = 71}, + [3030] = {.lex_state = 461, .external_lex_state = 65}, + [3031] = {.lex_state = 461, .external_lex_state = 65}, + [3032] = {.lex_state = 461, .external_lex_state = 65}, + [3033] = {.lex_state = 486, .external_lex_state = 71}, + [3034] = {.lex_state = 461, .external_lex_state = 65}, + [3035] = {.lex_state = 486, .external_lex_state = 71}, + [3036] = {.lex_state = 461, .external_lex_state = 65}, + [3037] = {.lex_state = 486, .external_lex_state = 71}, + [3038] = {.lex_state = 486, .external_lex_state = 71}, + [3039] = {.lex_state = 461, .external_lex_state = 65}, + [3040] = {.lex_state = 461, .external_lex_state = 65}, + [3041] = {.lex_state = 486, .external_lex_state = 71}, + [3042] = {.lex_state = 461, .external_lex_state = 65}, + [3043] = {.lex_state = 486, .external_lex_state = 71}, + [3044] = {.lex_state = 461, .external_lex_state = 65}, + [3045] = {.lex_state = 486, .external_lex_state = 71}, + [3046] = {.lex_state = 461, .external_lex_state = 65}, + [3047] = {.lex_state = 461, .external_lex_state = 65}, + [3048] = {.lex_state = 486, .external_lex_state = 71}, + [3049] = {.lex_state = 461, .external_lex_state = 65}, + [3050] = {.lex_state = 486, .external_lex_state = 71}, + [3051] = {.lex_state = 486, .external_lex_state = 71}, + [3052] = {.lex_state = 461, .external_lex_state = 65}, + [3053] = {.lex_state = 486, .external_lex_state = 71}, + [3054] = {.lex_state = 461, .external_lex_state = 65}, + [3055] = {.lex_state = 461, .external_lex_state = 65}, + [3056] = {.lex_state = 461, .external_lex_state = 65}, + [3057] = {.lex_state = 486, .external_lex_state = 71}, + [3058] = {.lex_state = 486, .external_lex_state = 71}, + [3059] = {.lex_state = 461, .external_lex_state = 65}, + [3060] = {.lex_state = 461, .external_lex_state = 65}, + [3061] = {.lex_state = 486, .external_lex_state = 71}, + [3062] = {.lex_state = 461, .external_lex_state = 65}, + [3063] = {.lex_state = 486, .external_lex_state = 71}, + [3064] = {.lex_state = 461, .external_lex_state = 65}, + [3065] = {.lex_state = 486, .external_lex_state = 71}, + [3066] = {.lex_state = 486, .external_lex_state = 71}, + [3067] = {.lex_state = 486, .external_lex_state = 71}, + [3068] = {.lex_state = 461, .external_lex_state = 65}, + [3069] = {.lex_state = 461, .external_lex_state = 65}, + [3070] = {.lex_state = 486, .external_lex_state = 71}, + [3071] = {.lex_state = 486, .external_lex_state = 71}, + [3072] = {.lex_state = 461, .external_lex_state = 65}, + [3073] = {.lex_state = 486, .external_lex_state = 71}, + [3074] = {.lex_state = 461, .external_lex_state = 65}, + [3075] = {.lex_state = 486, .external_lex_state = 71}, + [3076] = {.lex_state = 486, .external_lex_state = 71}, + [3077] = {.lex_state = 486, .external_lex_state = 71}, + [3078] = {.lex_state = 486, .external_lex_state = 71}, + [3079] = {.lex_state = 461, .external_lex_state = 65}, + [3080] = {.lex_state = 486, .external_lex_state = 71}, + [3081] = {.lex_state = 461, .external_lex_state = 65}, + [3082] = {.lex_state = 461, .external_lex_state = 65}, + [3083] = {.lex_state = 486, .external_lex_state = 71}, + [3084] = {.lex_state = 461, .external_lex_state = 65}, + [3085] = {.lex_state = 461, .external_lex_state = 65}, + [3086] = {.lex_state = 461, .external_lex_state = 65}, + [3087] = {.lex_state = 486, .external_lex_state = 71}, + [3088] = {.lex_state = 486, .external_lex_state = 71}, + [3089] = {.lex_state = 461, .external_lex_state = 65}, + [3090] = {.lex_state = 461, .external_lex_state = 65}, + [3091] = {.lex_state = 486, .external_lex_state = 71}, + [3092] = {.lex_state = 461, .external_lex_state = 65}, + [3093] = {.lex_state = 442, .external_lex_state = 72}, + [3094] = {.lex_state = 461, .external_lex_state = 65}, + [3095] = {.lex_state = 486, .external_lex_state = 71}, + [3096] = {.lex_state = 486, .external_lex_state = 71}, + [3097] = {.lex_state = 461, .external_lex_state = 65}, + [3098] = {.lex_state = 461, .external_lex_state = 65}, + [3099] = {.lex_state = 486, .external_lex_state = 71}, + [3100] = {.lex_state = 486, .external_lex_state = 71}, + [3101] = {.lex_state = 461, .external_lex_state = 65}, + [3102] = {.lex_state = 461, .external_lex_state = 65}, + [3103] = {.lex_state = 486, .external_lex_state = 71}, + [3104] = {.lex_state = 461, .external_lex_state = 65}, + [3105] = {.lex_state = 461, .external_lex_state = 65}, + [3106] = {.lex_state = 461, .external_lex_state = 65}, + [3107] = {.lex_state = 486, .external_lex_state = 71}, + [3108] = {.lex_state = 486, .external_lex_state = 71}, + [3109] = {.lex_state = 486, .external_lex_state = 71}, + [3110] = {.lex_state = 486, .external_lex_state = 71}, + [3111] = {.lex_state = 461, .external_lex_state = 65}, + [3112] = {.lex_state = 461, .external_lex_state = 65}, + [3113] = {.lex_state = 486, .external_lex_state = 71}, + [3114] = {.lex_state = 461, .external_lex_state = 65}, + [3115] = {.lex_state = 486, .external_lex_state = 71}, + [3116] = {.lex_state = 486, .external_lex_state = 71}, + [3117] = {.lex_state = 461, .external_lex_state = 65}, + [3118] = {.lex_state = 461, .external_lex_state = 65}, + [3119] = {.lex_state = 486, .external_lex_state = 71}, + [3120] = {.lex_state = 486, .external_lex_state = 71}, + [3121] = {.lex_state = 486, .external_lex_state = 71}, + [3122] = {.lex_state = 461, .external_lex_state = 65}, + [3123] = {.lex_state = 486, .external_lex_state = 71}, + [3124] = {.lex_state = 461, .external_lex_state = 65}, + [3125] = {.lex_state = 486, .external_lex_state = 71}, + [3126] = {.lex_state = 461, .external_lex_state = 65}, + [3127] = {.lex_state = 486, .external_lex_state = 71}, + [3128] = {.lex_state = 486, .external_lex_state = 71}, + [3129] = {.lex_state = 461, .external_lex_state = 65}, + [3130] = {.lex_state = 486, .external_lex_state = 71}, + [3131] = {.lex_state = 461, .external_lex_state = 65}, + [3132] = {.lex_state = 486, .external_lex_state = 71}, + [3133] = {.lex_state = 461, .external_lex_state = 65}, + [3134] = {.lex_state = 461, .external_lex_state = 65}, + [3135] = {.lex_state = 486, .external_lex_state = 71}, + [3136] = {.lex_state = 461, .external_lex_state = 65}, + [3137] = {.lex_state = 486, .external_lex_state = 71}, + [3138] = {.lex_state = 486, .external_lex_state = 71}, + [3139] = {.lex_state = 461, .external_lex_state = 65}, + [3140] = {.lex_state = 461, .external_lex_state = 65}, + [3141] = {.lex_state = 486, .external_lex_state = 71}, + [3142] = {.lex_state = 489, .external_lex_state = 73}, + [3143] = {.lex_state = 545, .external_lex_state = 74}, + [3144] = {.lex_state = 70, .external_lex_state = 75}, + [3145] = {.lex_state = 439, .external_lex_state = 76}, + [3146] = {.lex_state = 418, .external_lex_state = 65}, + [3147] = {.lex_state = 70, .external_lex_state = 75}, + [3148] = {.lex_state = 70, .external_lex_state = 74}, + [3149] = {.lex_state = 70, .external_lex_state = 53}, + [3150] = {.lex_state = 546, .external_lex_state = 52}, + [3151] = {.lex_state = 545, .external_lex_state = 74}, + [3152] = {.lex_state = 70, .external_lex_state = 75}, + [3153] = {.lex_state = 70, .external_lex_state = 75}, + [3154] = {.lex_state = 545, .external_lex_state = 74}, + [3155] = {.lex_state = 546, .external_lex_state = 52}, + [3156] = {.lex_state = 68, .external_lex_state = 77}, + [3157] = {.lex_state = 439, .external_lex_state = 78}, + [3158] = {.lex_state = 545, .external_lex_state = 74}, + [3159] = {.lex_state = 68, .external_lex_state = 77}, + [3160] = {.lex_state = 70, .external_lex_state = 53}, + [3161] = {.lex_state = 438, .external_lex_state = 76}, + [3162] = {.lex_state = 70, .external_lex_state = 75}, + [3163] = {.lex_state = 68, .external_lex_state = 77}, + [3164] = {.lex_state = 545, .external_lex_state = 74}, + [3165] = {.lex_state = 68, .external_lex_state = 77}, + [3166] = {.lex_state = 68, .external_lex_state = 77}, + [3167] = {.lex_state = 70, .external_lex_state = 75}, + [3168] = {.lex_state = 70, .external_lex_state = 74}, + [3169] = {.lex_state = 545, .external_lex_state = 74}, + [3170] = {.lex_state = 68, .external_lex_state = 77}, + [3171] = {.lex_state = 70, .external_lex_state = 75}, + [3172] = {.lex_state = 70, .external_lex_state = 75}, + [3173] = {.lex_state = 70, .external_lex_state = 75}, + [3174] = {.lex_state = 546, .external_lex_state = 52}, + [3175] = {.lex_state = 70, .external_lex_state = 74}, + [3176] = {.lex_state = 71, .external_lex_state = 60}, + [3177] = {.lex_state = 547, .external_lex_state = 79}, + [3178] = {.lex_state = 545, .external_lex_state = 74}, + [3179] = {.lex_state = 545, .external_lex_state = 74}, + [3180] = {.lex_state = 545, .external_lex_state = 74}, + [3181] = {.lex_state = 545, .external_lex_state = 74}, + [3182] = {.lex_state = 70, .external_lex_state = 52}, + [3183] = {.lex_state = 545, .external_lex_state = 74}, + [3184] = {.lex_state = 545, .external_lex_state = 74}, + [3185] = {.lex_state = 545, .external_lex_state = 74}, + [3186] = {.lex_state = 545, .external_lex_state = 74}, + [3187] = {.lex_state = 545, .external_lex_state = 74}, + [3188] = {.lex_state = 546, .external_lex_state = 52}, + [3189] = {.lex_state = 545, .external_lex_state = 74}, + [3190] = {.lex_state = 70, .external_lex_state = 74}, + [3191] = {.lex_state = 71, .external_lex_state = 60}, + [3192] = {.lex_state = 71, .external_lex_state = 60}, + [3193] = {.lex_state = 545, .external_lex_state = 74}, + [3194] = {.lex_state = 545, .external_lex_state = 74}, + [3195] = {.lex_state = 545, .external_lex_state = 74}, + [3196] = {.lex_state = 68, .external_lex_state = 77}, + [3197] = {.lex_state = 70, .external_lex_state = 53}, + [3198] = {.lex_state = 545, .external_lex_state = 74}, + [3199] = {.lex_state = 70, .external_lex_state = 75}, + [3200] = {.lex_state = 71, .external_lex_state = 60}, + [3201] = {.lex_state = 70, .external_lex_state = 75}, + [3202] = {.lex_state = 70, .external_lex_state = 74}, + [3203] = {.lex_state = 70, .external_lex_state = 75}, + [3204] = {.lex_state = 70, .external_lex_state = 75}, + [3205] = {.lex_state = 545, .external_lex_state = 74}, + [3206] = {.lex_state = 545, .external_lex_state = 74}, + [3207] = {.lex_state = 70, .external_lex_state = 75}, + [3208] = {.lex_state = 70, .external_lex_state = 75}, + [3209] = {.lex_state = 70, .external_lex_state = 75}, + [3210] = {.lex_state = 70, .external_lex_state = 75}, + [3211] = {.lex_state = 70, .external_lex_state = 75}, + [3212] = {.lex_state = 70, .external_lex_state = 75}, + [3213] = {.lex_state = 70, .external_lex_state = 75}, + [3214] = {.lex_state = 545, .external_lex_state = 74}, + [3215] = {.lex_state = 70, .external_lex_state = 75}, + [3216] = {.lex_state = 70, .external_lex_state = 53}, + [3217] = {.lex_state = 70, .external_lex_state = 52}, + [3218] = {.lex_state = 70, .external_lex_state = 75}, + [3219] = {.lex_state = 70, .external_lex_state = 75}, + [3220] = {.lex_state = 438, .external_lex_state = 78}, + [3221] = {.lex_state = 70, .external_lex_state = 53}, + [3222] = {.lex_state = 546, .external_lex_state = 52}, + [3223] = {.lex_state = 70, .external_lex_state = 75}, + [3224] = {.lex_state = 489, .external_lex_state = 80}, + [3225] = {.lex_state = 545, .external_lex_state = 74}, + [3226] = {.lex_state = 70, .external_lex_state = 75}, + [3227] = {.lex_state = 71, .external_lex_state = 81}, + [3228] = {.lex_state = 545, .external_lex_state = 74}, + [3229] = {.lex_state = 547, .external_lex_state = 63}, + [3230] = {.lex_state = 70, .external_lex_state = 74}, + [3231] = {.lex_state = 71, .external_lex_state = 81}, + [3232] = {.lex_state = 70, .external_lex_state = 52}, + [3233] = {.lex_state = 71, .external_lex_state = 81}, + [3234] = {.lex_state = 547, .external_lex_state = 79}, + [3235] = {.lex_state = 547, .external_lex_state = 79}, + [3236] = {.lex_state = 70, .external_lex_state = 74}, + [3237] = {.lex_state = 71, .external_lex_state = 81}, + [3238] = {.lex_state = 71, .external_lex_state = 63}, + [3239] = {.lex_state = 70, .external_lex_state = 52}, + [3240] = {.lex_state = 71, .external_lex_state = 79}, + [3241] = {.lex_state = 70, .external_lex_state = 74}, + [3242] = {.lex_state = 547, .external_lex_state = 79}, + [3243] = {.lex_state = 71, .external_lex_state = 63}, + [3244] = {.lex_state = 547, .external_lex_state = 79}, + [3245] = {.lex_state = 70, .external_lex_state = 74}, + [3246] = {.lex_state = 547, .external_lex_state = 63}, + [3247] = {.lex_state = 71, .external_lex_state = 81}, + [3248] = {.lex_state = 70, .external_lex_state = 74}, + [3249] = {.lex_state = 547, .external_lex_state = 79}, + [3250] = {.lex_state = 547, .external_lex_state = 63}, + [3251] = {.lex_state = 545, .external_lex_state = 79}, + [3252] = {.lex_state = 70, .external_lex_state = 74}, + [3253] = {.lex_state = 70, .external_lex_state = 74}, + [3254] = {.lex_state = 70, .external_lex_state = 74}, + [3255] = {.lex_state = 71, .external_lex_state = 60}, + [3256] = {.lex_state = 71, .external_lex_state = 81}, + [3257] = {.lex_state = 71, .external_lex_state = 81}, + [3258] = {.lex_state = 70, .external_lex_state = 74}, + [3259] = {.lex_state = 70, .external_lex_state = 74}, + [3260] = {.lex_state = 70, .external_lex_state = 74}, + [3261] = {.lex_state = 70, .external_lex_state = 74}, + [3262] = {.lex_state = 547, .external_lex_state = 79}, + [3263] = {.lex_state = 70, .external_lex_state = 74}, + [3264] = {.lex_state = 70, .external_lex_state = 74}, + [3265] = {.lex_state = 71, .external_lex_state = 63}, + [3266] = {.lex_state = 70, .external_lex_state = 74}, + [3267] = {.lex_state = 70, .external_lex_state = 81}, + [3268] = {.lex_state = 70, .external_lex_state = 74}, + [3269] = {.lex_state = 70, .external_lex_state = 74}, + [3270] = {.lex_state = 547, .external_lex_state = 63}, + [3271] = {.lex_state = 70, .external_lex_state = 74}, + [3272] = {.lex_state = 71, .external_lex_state = 60}, + [3273] = {.lex_state = 70, .external_lex_state = 74}, + [3274] = {.lex_state = 71, .external_lex_state = 63}, + [3275] = {.lex_state = 70, .external_lex_state = 74}, + [3276] = {.lex_state = 70, .external_lex_state = 52}, + [3277] = {.lex_state = 71, .external_lex_state = 81}, + [3278] = {.lex_state = 547, .external_lex_state = 79}, + [3279] = {.lex_state = 70, .external_lex_state = 60}, + [3280] = {.lex_state = 71, .external_lex_state = 60}, + [3281] = {.lex_state = 546, .external_lex_state = 52}, + [3282] = {.lex_state = 545, .external_lex_state = 79}, + [3283] = {.lex_state = 71, .external_lex_state = 81}, + [3284] = {.lex_state = 70, .external_lex_state = 81}, + [3285] = {.lex_state = 546, .external_lex_state = 52}, + [3286] = {.lex_state = 489, .external_lex_state = 82}, + [3287] = {.lex_state = 242, .external_lex_state = 83}, + [3288] = {.lex_state = 547, .external_lex_state = 79}, + [3289] = {.lex_state = 547, .external_lex_state = 79}, + [3290] = {.lex_state = 545, .external_lex_state = 79}, + [3291] = {.lex_state = 70, .external_lex_state = 60}, + [3292] = {.lex_state = 489, .external_lex_state = 82}, + [3293] = {.lex_state = 71, .external_lex_state = 81}, + [3294] = {.lex_state = 71, .external_lex_state = 81}, + [3295] = {.lex_state = 545, .external_lex_state = 79}, + [3296] = {.lex_state = 70, .external_lex_state = 81}, + [3297] = {.lex_state = 547, .external_lex_state = 79}, + [3298] = {.lex_state = 71, .external_lex_state = 60}, + [3299] = {.lex_state = 70, .external_lex_state = 81}, + [3300] = {.lex_state = 547, .external_lex_state = 79}, + [3301] = {.lex_state = 71, .external_lex_state = 79}, + [3302] = {.lex_state = 547, .external_lex_state = 63}, + [3303] = {.lex_state = 242, .external_lex_state = 83}, + [3304] = {.lex_state = 70, .external_lex_state = 60}, + [3305] = {.lex_state = 547, .external_lex_state = 79}, + [3306] = {.lex_state = 70, .external_lex_state = 60}, + [3307] = {.lex_state = 547, .external_lex_state = 79}, + [3308] = {.lex_state = 548, .external_lex_state = 63}, + [3309] = {.lex_state = 547, .external_lex_state = 79}, + [3310] = {.lex_state = 70, .external_lex_state = 60}, + [3311] = {.lex_state = 545, .external_lex_state = 79}, + [3312] = {.lex_state = 547, .external_lex_state = 79}, + [3313] = {.lex_state = 71, .external_lex_state = 81}, + [3314] = {.lex_state = 547, .external_lex_state = 79}, + [3315] = {.lex_state = 547, .external_lex_state = 79}, + [3316] = {.lex_state = 547, .external_lex_state = 79}, + [3317] = {.lex_state = 71, .external_lex_state = 79}, + [3318] = {.lex_state = 71, .external_lex_state = 79}, + [3319] = {.lex_state = 547, .external_lex_state = 79}, + [3320] = {.lex_state = 71, .external_lex_state = 81}, + [3321] = {.lex_state = 70, .external_lex_state = 53}, + [3322] = {.lex_state = 71, .external_lex_state = 81}, + [3323] = {.lex_state = 71, .external_lex_state = 81}, + [3324] = {.lex_state = 547, .external_lex_state = 79}, + [3325] = {.lex_state = 548, .external_lex_state = 63}, + [3326] = {.lex_state = 70, .external_lex_state = 79}, + [3327] = {.lex_state = 71, .external_lex_state = 60}, + [3328] = {.lex_state = 71, .external_lex_state = 79}, + [3329] = {.lex_state = 70, .external_lex_state = 60}, + [3330] = {.lex_state = 546, .external_lex_state = 52}, + [3331] = {.lex_state = 71, .external_lex_state = 81}, + [3332] = {.lex_state = 242, .external_lex_state = 83}, + [3333] = {.lex_state = 547, .external_lex_state = 79}, + [3334] = {.lex_state = 547, .external_lex_state = 79}, + [3335] = {.lex_state = 546, .external_lex_state = 52}, + [3336] = {.lex_state = 547, .external_lex_state = 79}, + [3337] = {.lex_state = 547, .external_lex_state = 79}, + [3338] = {.lex_state = 547, .external_lex_state = 79}, + [3339] = {.lex_state = 71, .external_lex_state = 60}, + [3340] = {.lex_state = 548, .external_lex_state = 63}, + [3341] = {.lex_state = 71, .external_lex_state = 60}, + [3342] = {.lex_state = 70, .external_lex_state = 81}, + [3343] = {.lex_state = 545, .external_lex_state = 79}, + [3344] = {.lex_state = 548, .external_lex_state = 63}, + [3345] = {.lex_state = 547, .external_lex_state = 63}, + [3346] = {.lex_state = 71, .external_lex_state = 60}, + [3347] = {.lex_state = 547, .external_lex_state = 79}, + [3348] = {.lex_state = 548, .external_lex_state = 63}, + [3349] = {.lex_state = 71, .external_lex_state = 81}, + [3350] = {.lex_state = 545, .external_lex_state = 79}, + [3351] = {.lex_state = 71, .external_lex_state = 81}, + [3352] = {.lex_state = 71, .external_lex_state = 79}, + [3353] = {.lex_state = 548, .external_lex_state = 63}, + [3354] = {.lex_state = 70, .external_lex_state = 60}, + [3355] = {.lex_state = 71, .external_lex_state = 81}, + [3356] = {.lex_state = 71, .external_lex_state = 81}, + [3357] = {.lex_state = 71, .external_lex_state = 60}, + [3358] = {.lex_state = 71, .external_lex_state = 60}, + [3359] = {.lex_state = 70, .external_lex_state = 53}, + [3360] = {.lex_state = 71, .external_lex_state = 81}, + [3361] = {.lex_state = 70, .external_lex_state = 81}, + [3362] = {.lex_state = 71, .external_lex_state = 63}, + [3363] = {.lex_state = 548, .external_lex_state = 63}, + [3364] = {.lex_state = 70, .external_lex_state = 53}, + [3365] = {.lex_state = 63, .external_lex_state = 84}, + [3366] = {.lex_state = 71, .external_lex_state = 81}, + [3367] = {.lex_state = 548, .external_lex_state = 63}, + [3368] = {.lex_state = 70, .external_lex_state = 53}, + [3369] = {.lex_state = 71, .external_lex_state = 79}, + [3370] = {.lex_state = 71, .external_lex_state = 63}, + [3371] = {.lex_state = 71, .external_lex_state = 81}, + [3372] = {.lex_state = 71, .external_lex_state = 81}, + [3373] = {.lex_state = 548, .external_lex_state = 63}, + [3374] = {.lex_state = 71, .external_lex_state = 81}, + [3375] = {.lex_state = 71, .external_lex_state = 81}, + [3376] = {.lex_state = 70, .external_lex_state = 81}, + [3377] = {.lex_state = 71, .external_lex_state = 81}, + [3378] = {.lex_state = 242, .external_lex_state = 83}, + [3379] = {.lex_state = 242, .external_lex_state = 83}, + [3380] = {.lex_state = 70, .external_lex_state = 81}, + [3381] = {.lex_state = 545, .external_lex_state = 63}, + [3382] = {.lex_state = 71, .external_lex_state = 63}, + [3383] = {.lex_state = 242, .external_lex_state = 83}, + [3384] = {.lex_state = 545, .external_lex_state = 79}, + [3385] = {.lex_state = 70, .external_lex_state = 79}, + [3386] = {.lex_state = 70, .external_lex_state = 81}, + [3387] = {.lex_state = 70, .external_lex_state = 81}, + [3388] = {.lex_state = 70, .external_lex_state = 81}, + [3389] = {.lex_state = 70, .external_lex_state = 81}, + [3390] = {.lex_state = 545, .external_lex_state = 79}, + [3391] = {.lex_state = 545, .external_lex_state = 79}, + [3392] = {.lex_state = 242, .external_lex_state = 83}, + [3393] = {.lex_state = 70, .external_lex_state = 52}, + [3394] = {.lex_state = 70, .external_lex_state = 79}, + [3395] = {.lex_state = 242, .external_lex_state = 83}, + [3396] = {.lex_state = 545, .external_lex_state = 63}, + [3397] = {.lex_state = 71, .external_lex_state = 79}, + [3398] = {.lex_state = 242, .external_lex_state = 83}, + [3399] = {.lex_state = 242, .external_lex_state = 83}, + [3400] = {.lex_state = 545, .external_lex_state = 79}, + [3401] = {.lex_state = 71, .external_lex_state = 79}, + [3402] = {.lex_state = 70, .external_lex_state = 63}, + [3403] = {.lex_state = 242, .external_lex_state = 83}, + [3404] = {.lex_state = 71, .external_lex_state = 63}, + [3405] = {.lex_state = 547, .external_lex_state = 63}, + [3406] = {.lex_state = 242, .external_lex_state = 83}, + [3407] = {.lex_state = 545, .external_lex_state = 63}, + [3408] = {.lex_state = 489, .external_lex_state = 67}, + [3409] = {.lex_state = 71, .external_lex_state = 79}, + [3410] = {.lex_state = 545, .external_lex_state = 79}, + [3411] = {.lex_state = 70, .external_lex_state = 81}, + [3412] = {.lex_state = 70, .external_lex_state = 81}, + [3413] = {.lex_state = 242, .external_lex_state = 83}, + [3414] = {.lex_state = 71, .external_lex_state = 63}, + [3415] = {.lex_state = 70, .external_lex_state = 81}, + [3416] = {.lex_state = 545, .external_lex_state = 79}, + [3417] = {.lex_state = 70, .external_lex_state = 79}, + [3418] = {.lex_state = 242, .external_lex_state = 83}, + [3419] = {.lex_state = 71, .external_lex_state = 79}, + [3420] = {.lex_state = 71, .external_lex_state = 79}, + [3421] = {.lex_state = 70, .external_lex_state = 52}, + [3422] = {.lex_state = 70, .external_lex_state = 79}, + [3423] = {.lex_state = 70, .external_lex_state = 81}, + [3424] = {.lex_state = 473, .external_lex_state = 85}, + [3425] = {.lex_state = 71, .external_lex_state = 79}, + [3426] = {.lex_state = 473, .external_lex_state = 85}, + [3427] = {.lex_state = 473, .external_lex_state = 85}, + [3428] = {.lex_state = 546, .external_lex_state = 63}, + [3429] = {.lex_state = 70, .external_lex_state = 63}, + [3430] = {.lex_state = 242, .external_lex_state = 83}, + [3431] = {.lex_state = 473, .external_lex_state = 85}, + [3432] = {.lex_state = 70, .external_lex_state = 81}, + [3433] = {.lex_state = 71, .external_lex_state = 63}, + [3434] = {.lex_state = 473, .external_lex_state = 85}, + [3435] = {.lex_state = 242, .external_lex_state = 83}, + [3436] = {.lex_state = 71, .external_lex_state = 79}, + [3437] = {.lex_state = 71, .external_lex_state = 79}, + [3438] = {.lex_state = 70, .external_lex_state = 63}, + [3439] = {.lex_state = 70, .external_lex_state = 60}, + [3440] = {.lex_state = 545, .external_lex_state = 79}, + [3441] = {.lex_state = 545, .external_lex_state = 79}, + [3442] = {.lex_state = 545, .external_lex_state = 79}, + [3443] = {.lex_state = 70, .external_lex_state = 60}, + [3444] = {.lex_state = 473, .external_lex_state = 85}, + [3445] = {.lex_state = 70, .external_lex_state = 63}, + [3446] = {.lex_state = 71, .external_lex_state = 79}, + [3447] = {.lex_state = 71, .external_lex_state = 79}, + [3448] = {.lex_state = 545, .external_lex_state = 79}, + [3449] = {.lex_state = 547, .external_lex_state = 63}, + [3450] = {.lex_state = 71, .external_lex_state = 79}, + [3451] = {.lex_state = 70, .external_lex_state = 63}, + [3452] = {.lex_state = 242, .external_lex_state = 83}, + [3453] = {.lex_state = 242, .external_lex_state = 83}, + [3454] = {.lex_state = 242, .external_lex_state = 83}, + [3455] = {.lex_state = 71, .external_lex_state = 79}, + [3456] = {.lex_state = 547, .external_lex_state = 63}, + [3457] = {.lex_state = 545, .external_lex_state = 63}, + [3458] = {.lex_state = 548, .external_lex_state = 63}, + [3459] = {.lex_state = 242, .external_lex_state = 83}, + [3460] = {.lex_state = 70, .external_lex_state = 81}, + [3461] = {.lex_state = 546, .external_lex_state = 63}, + [3462] = {.lex_state = 545, .external_lex_state = 63}, + [3463] = {.lex_state = 242, .external_lex_state = 83}, + [3464] = {.lex_state = 489, .external_lex_state = 67}, + [3465] = {.lex_state = 473, .external_lex_state = 85}, + [3466] = {.lex_state = 545, .external_lex_state = 79}, + [3467] = {.lex_state = 545, .external_lex_state = 79}, + [3468] = {.lex_state = 70, .external_lex_state = 79}, + [3469] = {.lex_state = 71, .external_lex_state = 79}, + [3470] = {.lex_state = 70, .external_lex_state = 63}, + [3471] = {.lex_state = 545, .external_lex_state = 63}, + [3472] = {.lex_state = 545, .external_lex_state = 63}, + [3473] = {.lex_state = 473, .external_lex_state = 85}, + [3474] = {.lex_state = 70, .external_lex_state = 63}, + [3475] = {.lex_state = 545, .external_lex_state = 79}, + [3476] = {.lex_state = 71, .external_lex_state = 79}, + [3477] = {.lex_state = 473, .external_lex_state = 85}, + [3478] = {.lex_state = 545, .external_lex_state = 79}, + [3479] = {.lex_state = 71, .external_lex_state = 79}, + [3480] = {.lex_state = 70, .external_lex_state = 81}, + [3481] = {.lex_state = 546, .external_lex_state = 63}, + [3482] = {.lex_state = 71, .external_lex_state = 63}, + [3483] = {.lex_state = 71, .external_lex_state = 63}, + [3484] = {.lex_state = 70, .external_lex_state = 60}, + [3485] = {.lex_state = 545, .external_lex_state = 79}, + [3486] = {.lex_state = 70, .external_lex_state = 60}, + [3487] = {.lex_state = 71, .external_lex_state = 79}, + [3488] = {.lex_state = 70, .external_lex_state = 52}, + [3489] = {.lex_state = 70, .external_lex_state = 81}, + [3490] = {.lex_state = 71, .external_lex_state = 79}, + [3491] = {.lex_state = 546, .external_lex_state = 63}, + [3492] = {.lex_state = 545, .external_lex_state = 79}, + [3493] = {.lex_state = 70, .external_lex_state = 81}, + [3494] = {.lex_state = 70, .external_lex_state = 81}, + [3495] = {.lex_state = 547, .external_lex_state = 63}, + [3496] = {.lex_state = 70, .external_lex_state = 81}, + [3497] = {.lex_state = 242, .external_lex_state = 83}, + [3498] = {.lex_state = 70, .external_lex_state = 81}, + [3499] = {.lex_state = 242, .external_lex_state = 83}, + [3500] = {.lex_state = 71, .external_lex_state = 79}, + [3501] = {.lex_state = 70, .external_lex_state = 81}, + [3502] = {.lex_state = 70, .external_lex_state = 81}, + [3503] = {.lex_state = 545, .external_lex_state = 79}, + [3504] = {.lex_state = 71, .external_lex_state = 63}, + [3505] = {.lex_state = 546, .external_lex_state = 63}, + [3506] = {.lex_state = 545, .external_lex_state = 79}, + [3507] = {.lex_state = 71, .external_lex_state = 79}, + [3508] = {.lex_state = 545, .external_lex_state = 79}, + [3509] = {.lex_state = 71, .external_lex_state = 79}, + [3510] = {.lex_state = 70, .external_lex_state = 79}, + [3511] = {.lex_state = 70, .external_lex_state = 81}, + [3512] = {.lex_state = 545, .external_lex_state = 79}, + [3513] = {.lex_state = 548, .external_lex_state = 63}, + [3514] = {.lex_state = 71, .external_lex_state = 63}, + [3515] = {.lex_state = 547, .external_lex_state = 63}, + [3516] = {.lex_state = 70, .external_lex_state = 60}, + [3517] = {.lex_state = 547, .external_lex_state = 63}, + [3518] = {.lex_state = 70, .external_lex_state = 52}, + [3519] = {.lex_state = 242, .external_lex_state = 83}, + [3520] = {.lex_state = 473, .external_lex_state = 85}, + [3521] = {.lex_state = 548, .external_lex_state = 63}, + [3522] = {.lex_state = 548, .external_lex_state = 63}, + [3523] = {.lex_state = 71, .external_lex_state = 60}, + [3524] = {.lex_state = 546, .external_lex_state = 63}, + [3525] = {.lex_state = 546, .external_lex_state = 63}, + [3526] = {.lex_state = 546, .external_lex_state = 63}, + [3527] = {.lex_state = 548, .external_lex_state = 63}, + [3528] = {.lex_state = 548, .external_lex_state = 63}, + [3529] = {.lex_state = 546, .external_lex_state = 63}, + [3530] = {.lex_state = 240, .external_lex_state = 61}, + [3531] = {.lex_state = 447, .external_lex_state = 86}, + [3532] = {.lex_state = 71, .external_lex_state = 60}, + [3533] = {.lex_state = 240, .external_lex_state = 61}, + [3534] = {.lex_state = 71, .external_lex_state = 60}, + [3535] = {.lex_state = 71, .external_lex_state = 60}, + [3536] = {.lex_state = 447, .external_lex_state = 86}, + [3537] = {.lex_state = 71, .external_lex_state = 60}, + [3538] = {.lex_state = 548, .external_lex_state = 63}, + [3539] = {.lex_state = 447, .external_lex_state = 86}, + [3540] = {.lex_state = 473, .external_lex_state = 85}, + [3541] = {.lex_state = 548, .external_lex_state = 63}, + [3542] = {.lex_state = 447, .external_lex_state = 86}, + [3543] = {.lex_state = 447, .external_lex_state = 86}, + [3544] = {.lex_state = 447, .external_lex_state = 86}, + [3545] = {.lex_state = 473, .external_lex_state = 85}, + [3546] = {.lex_state = 70, .external_lex_state = 60}, + [3547] = {.lex_state = 447, .external_lex_state = 86}, + [3548] = {.lex_state = 447, .external_lex_state = 86}, + [3549] = {.lex_state = 447, .external_lex_state = 86}, + [3550] = {.lex_state = 447, .external_lex_state = 86}, + [3551] = {.lex_state = 447, .external_lex_state = 86}, + [3552] = {.lex_state = 447, .external_lex_state = 86}, + [3553] = {.lex_state = 447, .external_lex_state = 86}, + [3554] = {.lex_state = 447, .external_lex_state = 86}, + [3555] = {.lex_state = 447, .external_lex_state = 86}, + [3556] = {.lex_state = 447, .external_lex_state = 86}, + [3557] = {.lex_state = 447, .external_lex_state = 86}, + [3558] = {.lex_state = 447, .external_lex_state = 86}, + [3559] = {.lex_state = 447, .external_lex_state = 86}, + [3560] = {.lex_state = 447, .external_lex_state = 86}, + [3561] = {.lex_state = 71, .external_lex_state = 60}, + [3562] = {.lex_state = 447, .external_lex_state = 86}, + [3563] = {.lex_state = 447, .external_lex_state = 86}, + [3564] = {.lex_state = 447, .external_lex_state = 86}, + [3565] = {.lex_state = 447, .external_lex_state = 86}, + [3566] = {.lex_state = 447, .external_lex_state = 86}, + [3567] = {.lex_state = 447, .external_lex_state = 86}, + [3568] = {.lex_state = 447, .external_lex_state = 86}, + [3569] = {.lex_state = 447, .external_lex_state = 86}, + [3570] = {.lex_state = 548, .external_lex_state = 63}, + [3571] = {.lex_state = 447, .external_lex_state = 86}, + [3572] = {.lex_state = 447, .external_lex_state = 86}, + [3573] = {.lex_state = 447, .external_lex_state = 86}, + [3574] = {.lex_state = 447, .external_lex_state = 86}, + [3575] = {.lex_state = 447, .external_lex_state = 86}, + [3576] = {.lex_state = 447, .external_lex_state = 86}, + [3577] = {.lex_state = 447, .external_lex_state = 86}, + [3578] = {.lex_state = 447, .external_lex_state = 86}, + [3579] = {.lex_state = 447, .external_lex_state = 86}, + [3580] = {.lex_state = 447, .external_lex_state = 86}, + [3581] = {.lex_state = 447, .external_lex_state = 86}, + [3582] = {.lex_state = 447, .external_lex_state = 86}, + [3583] = {.lex_state = 447, .external_lex_state = 86}, + [3584] = {.lex_state = 447, .external_lex_state = 86}, + [3585] = {.lex_state = 70, .external_lex_state = 60}, + [3586] = {.lex_state = 447, .external_lex_state = 86}, + [3587] = {.lex_state = 447, .external_lex_state = 86}, + [3588] = {.lex_state = 447, .external_lex_state = 86}, + [3589] = {.lex_state = 447, .external_lex_state = 86}, + [3590] = {.lex_state = 447, .external_lex_state = 86}, + [3591] = {.lex_state = 447, .external_lex_state = 86}, + [3592] = {.lex_state = 447, .external_lex_state = 86}, + [3593] = {.lex_state = 447, .external_lex_state = 86}, + [3594] = {.lex_state = 447, .external_lex_state = 86}, + [3595] = {.lex_state = 473, .external_lex_state = 85}, + [3596] = {.lex_state = 473, .external_lex_state = 85}, + [3597] = {.lex_state = 447, .external_lex_state = 86}, + [3598] = {.lex_state = 447, .external_lex_state = 86}, + [3599] = {.lex_state = 447, .external_lex_state = 86}, + [3600] = {.lex_state = 447, .external_lex_state = 86}, + [3601] = {.lex_state = 447, .external_lex_state = 86}, + [3602] = {.lex_state = 447, .external_lex_state = 86}, + [3603] = {.lex_state = 447, .external_lex_state = 86}, + [3604] = {.lex_state = 546, .external_lex_state = 63}, + [3605] = {.lex_state = 447, .external_lex_state = 86}, + [3606] = {.lex_state = 447, .external_lex_state = 86}, + [3607] = {.lex_state = 447, .external_lex_state = 86}, + [3608] = {.lex_state = 447, .external_lex_state = 86}, + [3609] = {.lex_state = 447, .external_lex_state = 86}, + [3610] = {.lex_state = 447, .external_lex_state = 86}, + [3611] = {.lex_state = 447, .external_lex_state = 86}, + [3612] = {.lex_state = 447, .external_lex_state = 86}, + [3613] = {.lex_state = 447, .external_lex_state = 86}, + [3614] = {.lex_state = 71, .external_lex_state = 60}, + [3615] = {.lex_state = 473, .external_lex_state = 85}, + [3616] = {.lex_state = 70, .external_lex_state = 60}, + [3617] = {.lex_state = 548, .external_lex_state = 63}, + [3618] = {.lex_state = 71, .external_lex_state = 60}, + [3619] = {.lex_state = 548, .external_lex_state = 63}, + [3620] = {.lex_state = 71, .external_lex_state = 60}, + [3621] = {.lex_state = 548, .external_lex_state = 63}, + [3622] = {.lex_state = 71, .external_lex_state = 60}, + [3623] = {.lex_state = 71, .external_lex_state = 60}, + [3624] = {.lex_state = 71, .external_lex_state = 60}, + [3625] = {.lex_state = 548, .external_lex_state = 63}, + [3626] = {.lex_state = 70, .external_lex_state = 60}, + [3627] = {.lex_state = 546, .external_lex_state = 63}, + [3628] = {.lex_state = 70, .external_lex_state = 63}, + [3629] = {.lex_state = 548, .external_lex_state = 63}, + [3630] = {.lex_state = 548, .external_lex_state = 63}, + [3631] = {.lex_state = 70, .external_lex_state = 63}, + [3632] = {.lex_state = 70, .external_lex_state = 79}, + [3633] = {.lex_state = 70, .external_lex_state = 79}, + [3634] = {.lex_state = 70, .external_lex_state = 60}, + [3635] = {.lex_state = 70, .external_lex_state = 79}, + [3636] = {.lex_state = 70, .external_lex_state = 79}, + [3637] = {.lex_state = 71, .external_lex_state = 60}, + [3638] = {.lex_state = 70, .external_lex_state = 79}, + [3639] = {.lex_state = 548, .external_lex_state = 63}, + [3640] = {.lex_state = 71, .external_lex_state = 60}, + [3641] = {.lex_state = 70, .external_lex_state = 79}, + [3642] = {.lex_state = 70, .external_lex_state = 79}, + [3643] = {.lex_state = 473, .external_lex_state = 85}, + [3644] = {.lex_state = 70, .external_lex_state = 63}, + [3645] = {.lex_state = 548, .external_lex_state = 63}, + [3646] = {.lex_state = 548, .external_lex_state = 63}, + [3647] = {.lex_state = 546, .external_lex_state = 63}, + [3648] = {.lex_state = 70, .external_lex_state = 63}, + [3649] = {.lex_state = 70, .external_lex_state = 63}, + [3650] = {.lex_state = 548, .external_lex_state = 63}, + [3651] = {.lex_state = 70, .external_lex_state = 79}, + [3652] = {.lex_state = 70, .external_lex_state = 79}, + [3653] = {.lex_state = 473, .external_lex_state = 85}, + [3654] = {.lex_state = 473, .external_lex_state = 85}, + [3655] = {.lex_state = 548, .external_lex_state = 63}, + [3656] = {.lex_state = 70, .external_lex_state = 79}, + [3657] = {.lex_state = 70, .external_lex_state = 79}, + [3658] = {.lex_state = 70, .external_lex_state = 79}, + [3659] = {.lex_state = 71, .external_lex_state = 60}, + [3660] = {.lex_state = 70, .external_lex_state = 79}, + [3661] = {.lex_state = 70, .external_lex_state = 79}, + [3662] = {.lex_state = 70, .external_lex_state = 79}, + [3663] = {.lex_state = 70, .external_lex_state = 79}, + [3664] = {.lex_state = 71, .external_lex_state = 60}, + [3665] = {.lex_state = 70, .external_lex_state = 79}, + [3666] = {.lex_state = 70, .external_lex_state = 79}, + [3667] = {.lex_state = 70, .external_lex_state = 79}, + [3668] = {.lex_state = 70, .external_lex_state = 79}, + [3669] = {.lex_state = 548, .external_lex_state = 63}, + [3670] = {.lex_state = 71, .external_lex_state = 60}, + [3671] = {.lex_state = 447, .external_lex_state = 86}, + [3672] = {.lex_state = 447, .external_lex_state = 86}, + [3673] = {.lex_state = 546, .external_lex_state = 63}, + [3674] = {.lex_state = 548, .external_lex_state = 63}, + [3675] = {.lex_state = 447, .external_lex_state = 86}, + [3676] = {.lex_state = 546, .external_lex_state = 63}, + [3677] = {.lex_state = 546, .external_lex_state = 63}, + [3678] = {.lex_state = 70, .external_lex_state = 60}, + [3679] = {.lex_state = 546, .external_lex_state = 63}, + [3680] = {.lex_state = 70, .external_lex_state = 60}, + [3681] = {.lex_state = 546, .external_lex_state = 63}, + [3682] = {.lex_state = 71, .external_lex_state = 63}, + [3683] = {.lex_state = 546, .external_lex_state = 63}, + [3684] = {.lex_state = 546, .external_lex_state = 63}, + [3685] = {.lex_state = 546, .external_lex_state = 63}, + [3686] = {.lex_state = 546, .external_lex_state = 63}, + [3687] = {.lex_state = 464, .external_lex_state = 87}, + [3688] = {.lex_state = 70, .external_lex_state = 60}, + [3689] = {.lex_state = 546, .external_lex_state = 63}, + [3690] = {.lex_state = 546, .external_lex_state = 63}, + [3691] = {.lex_state = 546, .external_lex_state = 63}, + [3692] = {.lex_state = 70, .external_lex_state = 60}, + [3693] = {.lex_state = 546, .external_lex_state = 63}, + [3694] = {.lex_state = 546, .external_lex_state = 63}, + [3695] = {.lex_state = 70, .external_lex_state = 60}, + [3696] = {.lex_state = 70, .external_lex_state = 60}, + [3697] = {.lex_state = 70, .external_lex_state = 63}, + [3698] = {.lex_state = 546, .external_lex_state = 63}, + [3699] = {.lex_state = 545, .external_lex_state = 63}, + [3700] = {.lex_state = 546, .external_lex_state = 63}, + [3701] = {.lex_state = 546, .external_lex_state = 63}, + [3702] = {.lex_state = 70, .external_lex_state = 60}, + [3703] = {.lex_state = 546, .external_lex_state = 63}, + [3704] = {.lex_state = 71, .external_lex_state = 63}, + [3705] = {.lex_state = 546, .external_lex_state = 63}, + [3706] = {.lex_state = 70, .external_lex_state = 60}, + [3707] = {.lex_state = 571, .external_lex_state = 83}, + [3708] = {.lex_state = 70, .external_lex_state = 60}, + [3709] = {.lex_state = 70, .external_lex_state = 63}, + [3710] = {.lex_state = 492, .external_lex_state = 88}, + [3711] = {.lex_state = 71, .external_lex_state = 63}, + [3712] = {.lex_state = 545, .external_lex_state = 63}, + [3713] = {.lex_state = 546, .external_lex_state = 63}, + [3714] = {.lex_state = 546, .external_lex_state = 63}, + [3715] = {.lex_state = 546, .external_lex_state = 63}, + [3716] = {.lex_state = 71, .external_lex_state = 63}, + [3717] = {.lex_state = 70, .external_lex_state = 60}, + [3718] = {.lex_state = 71, .external_lex_state = 63}, + [3719] = {.lex_state = 71, .external_lex_state = 63}, + [3720] = {.lex_state = 70, .external_lex_state = 60}, + [3721] = {.lex_state = 545, .external_lex_state = 63}, + [3722] = {.lex_state = 70, .external_lex_state = 60}, + [3723] = {.lex_state = 545, .external_lex_state = 63}, + [3724] = {.lex_state = 545, .external_lex_state = 63}, + [3725] = {.lex_state = 71, .external_lex_state = 63}, + [3726] = {.lex_state = 71, .external_lex_state = 63}, + [3727] = {.lex_state = 70, .external_lex_state = 60}, + [3728] = {.lex_state = 70, .external_lex_state = 63}, + [3729] = {.lex_state = 71, .external_lex_state = 63}, + [3730] = {.lex_state = 70, .external_lex_state = 60}, + [3731] = {.lex_state = 70, .external_lex_state = 60}, + [3732] = {.lex_state = 70, .external_lex_state = 60}, + [3733] = {.lex_state = 70, .external_lex_state = 60}, + [3734] = {.lex_state = 70, .external_lex_state = 60}, + [3735] = {.lex_state = 71, .external_lex_state = 63}, + [3736] = {.lex_state = 545, .external_lex_state = 63}, + [3737] = {.lex_state = 70, .external_lex_state = 60}, + [3738] = {.lex_state = 70, .external_lex_state = 60}, + [3739] = {.lex_state = 70, .external_lex_state = 60}, + [3740] = {.lex_state = 546, .external_lex_state = 63}, + [3741] = {.lex_state = 70, .external_lex_state = 60}, + [3742] = {.lex_state = 545, .external_lex_state = 63}, + [3743] = {.lex_state = 464, .external_lex_state = 87}, + [3744] = {.lex_state = 70, .external_lex_state = 60}, + [3745] = {.lex_state = 70, .external_lex_state = 60}, + [3746] = {.lex_state = 71, .external_lex_state = 63}, + [3747] = {.lex_state = 464, .external_lex_state = 87}, + [3748] = {.lex_state = 70, .external_lex_state = 60}, + [3749] = {.lex_state = 71, .external_lex_state = 63}, + [3750] = {.lex_state = 71, .external_lex_state = 63}, + [3751] = {.lex_state = 546, .external_lex_state = 63}, + [3752] = {.lex_state = 70, .external_lex_state = 60}, + [3753] = {.lex_state = 70, .external_lex_state = 63}, + [3754] = {.lex_state = 70, .external_lex_state = 60}, + [3755] = {.lex_state = 464, .external_lex_state = 87}, + [3756] = {.lex_state = 70, .external_lex_state = 60}, + [3757] = {.lex_state = 70, .external_lex_state = 60}, + [3758] = {.lex_state = 546, .external_lex_state = 63}, + [3759] = {.lex_state = 546, .external_lex_state = 63}, + [3760] = {.lex_state = 71, .external_lex_state = 63}, + [3761] = {.lex_state = 70, .external_lex_state = 60}, + [3762] = {.lex_state = 546, .external_lex_state = 63}, + [3763] = {.lex_state = 71, .external_lex_state = 63}, + [3764] = {.lex_state = 70, .external_lex_state = 63}, + [3765] = {.lex_state = 546, .external_lex_state = 63}, + [3766] = {.lex_state = 546, .external_lex_state = 63}, + [3767] = {.lex_state = 546, .external_lex_state = 63}, + [3768] = {.lex_state = 546, .external_lex_state = 63}, + [3769] = {.lex_state = 546, .external_lex_state = 63}, + [3770] = {.lex_state = 546, .external_lex_state = 63}, + [3771] = {.lex_state = 70, .external_lex_state = 60}, + [3772] = {.lex_state = 546, .external_lex_state = 63}, + [3773] = {.lex_state = 71, .external_lex_state = 63}, + [3774] = {.lex_state = 546, .external_lex_state = 63}, + [3775] = {.lex_state = 70, .external_lex_state = 60}, + [3776] = {.lex_state = 546, .external_lex_state = 63}, + [3777] = {.lex_state = 70, .external_lex_state = 60}, + [3778] = {.lex_state = 70, .external_lex_state = 60}, + [3779] = {.lex_state = 546, .external_lex_state = 63}, + [3780] = {.lex_state = 546, .external_lex_state = 63}, + [3781] = {.lex_state = 546, .external_lex_state = 63}, + [3782] = {.lex_state = 70, .external_lex_state = 60}, + [3783] = {.lex_state = 70, .external_lex_state = 60}, + [3784] = {.lex_state = 71, .external_lex_state = 63}, + [3785] = {.lex_state = 70, .external_lex_state = 60}, + [3786] = {.lex_state = 546, .external_lex_state = 63}, + [3787] = {.lex_state = 70, .external_lex_state = 60}, + [3788] = {.lex_state = 70, .external_lex_state = 60}, + [3789] = {.lex_state = 473, .external_lex_state = 85}, + [3790] = {.lex_state = 471, .external_lex_state = 49}, + [3791] = {.lex_state = 492, .external_lex_state = 88}, + [3792] = {.lex_state = 471, .external_lex_state = 49}, + [3793] = {.lex_state = 70, .external_lex_state = 63}, + [3794] = {.lex_state = 471, .external_lex_state = 49}, + [3795] = {.lex_state = 471, .external_lex_state = 49}, + [3796] = {.lex_state = 471, .external_lex_state = 49}, + [3797] = {.lex_state = 492, .external_lex_state = 88}, + [3798] = {.lex_state = 473, .external_lex_state = 85}, + [3799] = {.lex_state = 473, .external_lex_state = 85}, + [3800] = {.lex_state = 473, .external_lex_state = 85}, + [3801] = {.lex_state = 546, .external_lex_state = 63}, + [3802] = {.lex_state = 464, .external_lex_state = 87}, + [3803] = {.lex_state = 471, .external_lex_state = 49}, + [3804] = {.lex_state = 464, .external_lex_state = 87}, + [3805] = {.lex_state = 471, .external_lex_state = 49}, + [3806] = {.lex_state = 464, .external_lex_state = 87}, + [3807] = {.lex_state = 70, .external_lex_state = 63}, + [3808] = {.lex_state = 464, .external_lex_state = 87}, + [3809] = {.lex_state = 473, .external_lex_state = 85}, + [3810] = {.lex_state = 471, .external_lex_state = 49}, + [3811] = {.lex_state = 473, .external_lex_state = 85}, + [3812] = {.lex_state = 473, .external_lex_state = 85}, + [3813] = {.lex_state = 464, .external_lex_state = 87}, + [3814] = {.lex_state = 473, .external_lex_state = 85}, + [3815] = {.lex_state = 473, .external_lex_state = 85}, + [3816] = {.lex_state = 473, .external_lex_state = 85}, + [3817] = {.lex_state = 473, .external_lex_state = 85}, + [3818] = {.lex_state = 473, .external_lex_state = 85}, + [3819] = {.lex_state = 473, .external_lex_state = 85}, + [3820] = {.lex_state = 473, .external_lex_state = 85}, + [3821] = {.lex_state = 473, .external_lex_state = 85}, + [3822] = {.lex_state = 473, .external_lex_state = 85}, + [3823] = {.lex_state = 471, .external_lex_state = 49}, + [3824] = {.lex_state = 473, .external_lex_state = 85}, + [3825] = {.lex_state = 473, .external_lex_state = 85}, + [3826] = {.lex_state = 473, .external_lex_state = 85}, + [3827] = {.lex_state = 473, .external_lex_state = 85}, + [3828] = {.lex_state = 471, .external_lex_state = 49}, + [3829] = {.lex_state = 473, .external_lex_state = 85}, + [3830] = {.lex_state = 473, .external_lex_state = 85}, + [3831] = {.lex_state = 473, .external_lex_state = 85}, + [3832] = {.lex_state = 473, .external_lex_state = 85}, + [3833] = {.lex_state = 473, .external_lex_state = 85}, + [3834] = {.lex_state = 471, .external_lex_state = 49}, + [3835] = {.lex_state = 546, .external_lex_state = 63}, + [3836] = {.lex_state = 70, .external_lex_state = 63}, + [3837] = {.lex_state = 471, .external_lex_state = 49}, + [3838] = {.lex_state = 70, .external_lex_state = 63}, + [3839] = {.lex_state = 70, .external_lex_state = 63}, + [3840] = {.lex_state = 70, .external_lex_state = 63}, + [3841] = {.lex_state = 491, .external_lex_state = 89}, + [3842] = {.lex_state = 70, .external_lex_state = 63}, + [3843] = {.lex_state = 70, .external_lex_state = 63}, + [3844] = {.lex_state = 70, .external_lex_state = 63}, + [3845] = {.lex_state = 70, .external_lex_state = 63}, + [3846] = {.lex_state = 471, .external_lex_state = 49}, + [3847] = {.lex_state = 471, .external_lex_state = 49}, + [3848] = {.lex_state = 70, .external_lex_state = 63}, + [3849] = {.lex_state = 492, .external_lex_state = 72}, + [3850] = {.lex_state = 546, .external_lex_state = 63}, + [3851] = {.lex_state = 69, .external_lex_state = 90}, + [3852] = {.lex_state = 70, .external_lex_state = 63}, + [3853] = {.lex_state = 70, .external_lex_state = 63}, + [3854] = {.lex_state = 70, .external_lex_state = 63}, + [3855] = {.lex_state = 474, .external_lex_state = 91}, + [3856] = {.lex_state = 70, .external_lex_state = 63}, + [3857] = {.lex_state = 70, .external_lex_state = 63}, + [3858] = {.lex_state = 70, .external_lex_state = 63}, + [3859] = {.lex_state = 473, .external_lex_state = 85}, + [3860] = {.lex_state = 70, .external_lex_state = 63}, + [3861] = {.lex_state = 471, .external_lex_state = 49}, + [3862] = {.lex_state = 70, .external_lex_state = 63}, + [3863] = {.lex_state = 70, .external_lex_state = 63}, + [3864] = {.lex_state = 70, .external_lex_state = 63}, + [3865] = {.lex_state = 70, .external_lex_state = 63}, + [3866] = {.lex_state = 464, .external_lex_state = 87}, + [3867] = {.lex_state = 70, .external_lex_state = 63}, + [3868] = {.lex_state = 70, .external_lex_state = 63}, + [3869] = {.lex_state = 70, .external_lex_state = 63}, + [3870] = {.lex_state = 70, .external_lex_state = 63}, + [3871] = {.lex_state = 70, .external_lex_state = 63}, + [3872] = {.lex_state = 464, .external_lex_state = 87}, + [3873] = {.lex_state = 70, .external_lex_state = 63}, + [3874] = {.lex_state = 464, .external_lex_state = 87}, + [3875] = {.lex_state = 492, .external_lex_state = 72}, + [3876] = {.lex_state = 492, .external_lex_state = 88}, + [3877] = {.lex_state = 464, .external_lex_state = 87}, + [3878] = {.lex_state = 464, .external_lex_state = 87}, + [3879] = {.lex_state = 464, .external_lex_state = 87}, + [3880] = {.lex_state = 473, .external_lex_state = 85}, + [3881] = {.lex_state = 473, .external_lex_state = 85}, + [3882] = {.lex_state = 473, .external_lex_state = 85}, + [3883] = {.lex_state = 473, .external_lex_state = 85}, + [3884] = {.lex_state = 473, .external_lex_state = 85}, + [3885] = {.lex_state = 473, .external_lex_state = 85}, + [3886] = {.lex_state = 473, .external_lex_state = 85}, + [3887] = {.lex_state = 70, .external_lex_state = 63}, + [3888] = {.lex_state = 473, .external_lex_state = 85}, + [3889] = {.lex_state = 473, .external_lex_state = 85}, + [3890] = {.lex_state = 473, .external_lex_state = 85}, + [3891] = {.lex_state = 473, .external_lex_state = 85}, + [3892] = {.lex_state = 464, .external_lex_state = 87}, + [3893] = {.lex_state = 69, .external_lex_state = 90}, + [3894] = {.lex_state = 464, .external_lex_state = 87}, + [3895] = {.lex_state = 473, .external_lex_state = 85}, + [3896] = {.lex_state = 71, .external_lex_state = 63}, + [3897] = {.lex_state = 473, .external_lex_state = 85}, + [3898] = {.lex_state = 71, .external_lex_state = 63}, + [3899] = {.lex_state = 70, .external_lex_state = 63}, + [3900] = {.lex_state = 70, .external_lex_state = 63}, + [3901] = {.lex_state = 70, .external_lex_state = 63}, + [3902] = {.lex_state = 70, .external_lex_state = 63}, + [3903] = {.lex_state = 70, .external_lex_state = 63}, + [3904] = {.lex_state = 70, .external_lex_state = 63}, + [3905] = {.lex_state = 70, .external_lex_state = 63}, + [3906] = {.lex_state = 70, .external_lex_state = 63}, + [3907] = {.lex_state = 70, .external_lex_state = 63}, + [3908] = {.lex_state = 70, .external_lex_state = 63}, + [3909] = {.lex_state = 471, .external_lex_state = 49}, + [3910] = {.lex_state = 464, .external_lex_state = 87}, + [3911] = {.lex_state = 464, .external_lex_state = 87}, + [3912] = {.lex_state = 464, .external_lex_state = 87}, + [3913] = {.lex_state = 464, .external_lex_state = 87}, + [3914] = {.lex_state = 464, .external_lex_state = 87}, + [3915] = {.lex_state = 546, .external_lex_state = 63}, + [3916] = {.lex_state = 492, .external_lex_state = 88}, + [3917] = {.lex_state = 464, .external_lex_state = 87}, + [3918] = {.lex_state = 464, .external_lex_state = 87}, + [3919] = {.lex_state = 461, .external_lex_state = 35}, + [3920] = {.lex_state = 461, .external_lex_state = 35}, + [3921] = {.lex_state = 461, .external_lex_state = 35}, + [3922] = {.lex_state = 461, .external_lex_state = 35}, + [3923] = {.lex_state = 461, .external_lex_state = 35}, + [3924] = {.lex_state = 461, .external_lex_state = 35}, + [3925] = {.lex_state = 461, .external_lex_state = 35}, + [3926] = {.lex_state = 461, .external_lex_state = 35}, + [3927] = {.lex_state = 461, .external_lex_state = 35}, + [3928] = {.lex_state = 461, .external_lex_state = 35}, + [3929] = {.lex_state = 461, .external_lex_state = 35}, + [3930] = {.lex_state = 461, .external_lex_state = 35}, + [3931] = {.lex_state = 461, .external_lex_state = 35}, + [3932] = {.lex_state = 545, .external_lex_state = 63}, + [3933] = {.lex_state = 461, .external_lex_state = 35}, + [3934] = {.lex_state = 461, .external_lex_state = 35}, + [3935] = {.lex_state = 461, .external_lex_state = 35}, + [3936] = {.lex_state = 443, .external_lex_state = 76}, + [3937] = {.lex_state = 461, .external_lex_state = 35}, + [3938] = {.lex_state = 492, .external_lex_state = 88}, + [3939] = {.lex_state = 494, .external_lex_state = 92}, + [3940] = {.lex_state = 491, .external_lex_state = 89}, + [3941] = {.lex_state = 461, .external_lex_state = 65}, + [3942] = {.lex_state = 492, .external_lex_state = 88}, + [3943] = {.lex_state = 461, .external_lex_state = 35}, + [3944] = {.lex_state = 461, .external_lex_state = 35}, + [3945] = {.lex_state = 443, .external_lex_state = 78}, + [3946] = {.lex_state = 461, .external_lex_state = 35}, + [3947] = {.lex_state = 461, .external_lex_state = 35}, + [3948] = {.lex_state = 492, .external_lex_state = 88}, + [3949] = {.lex_state = 492, .external_lex_state = 88}, + [3950] = {.lex_state = 443, .external_lex_state = 76}, + [3951] = {.lex_state = 492, .external_lex_state = 88}, + [3952] = {.lex_state = 492, .external_lex_state = 88}, + [3953] = {.lex_state = 493, .external_lex_state = 89}, + [3954] = {.lex_state = 545, .external_lex_state = 63}, + [3955] = {.lex_state = 491, .external_lex_state = 89}, + [3956] = {.lex_state = 560, .external_lex_state = 61}, + [3957] = {.lex_state = 492, .external_lex_state = 88}, + [3958] = {.lex_state = 461, .external_lex_state = 35}, + [3959] = {.lex_state = 461, .external_lex_state = 35}, + [3960] = {.lex_state = 492, .external_lex_state = 88}, + [3961] = {.lex_state = 492, .external_lex_state = 88}, + [3962] = {.lex_state = 492, .external_lex_state = 88}, + [3963] = {.lex_state = 461, .external_lex_state = 35}, + [3964] = {.lex_state = 492, .external_lex_state = 88}, + [3965] = {.lex_state = 492, .external_lex_state = 88}, + [3966] = {.lex_state = 461, .external_lex_state = 35}, + [3967] = {.lex_state = 461, .external_lex_state = 35}, + [3968] = {.lex_state = 491, .external_lex_state = 89}, + [3969] = {.lex_state = 443, .external_lex_state = 78}, + [3970] = {.lex_state = 461, .external_lex_state = 35}, + [3971] = {.lex_state = 492, .external_lex_state = 88}, + [3972] = {.lex_state = 492, .external_lex_state = 88}, + [3973] = {.lex_state = 492, .external_lex_state = 88}, + [3974] = {.lex_state = 492, .external_lex_state = 88}, + [3975] = {.lex_state = 443, .external_lex_state = 78}, + [3976] = {.lex_state = 461, .external_lex_state = 35}, + [3977] = {.lex_state = 461, .external_lex_state = 35}, + [3978] = {.lex_state = 461, .external_lex_state = 35}, + [3979] = {.lex_state = 461, .external_lex_state = 35}, + [3980] = {.lex_state = 461, .external_lex_state = 35}, + [3981] = {.lex_state = 461, .external_lex_state = 35}, + [3982] = {.lex_state = 545, .external_lex_state = 63}, + [3983] = {.lex_state = 492, .external_lex_state = 88}, + [3984] = {.lex_state = 461, .external_lex_state = 35}, + [3985] = {.lex_state = 492, .external_lex_state = 88}, + [3986] = {.lex_state = 461, .external_lex_state = 35}, + [3987] = {.lex_state = 492, .external_lex_state = 72}, + [3988] = {.lex_state = 491, .external_lex_state = 89}, + [3989] = {.lex_state = 492, .external_lex_state = 88}, + [3990] = {.lex_state = 461, .external_lex_state = 65}, + [3991] = {.lex_state = 461, .external_lex_state = 35}, + [3992] = {.lex_state = 461, .external_lex_state = 35}, + [3993] = {.lex_state = 461, .external_lex_state = 35}, + [3994] = {.lex_state = 461, .external_lex_state = 35}, + [3995] = {.lex_state = 492, .external_lex_state = 72}, + [3996] = {.lex_state = 461, .external_lex_state = 35}, + [3997] = {.lex_state = 491, .external_lex_state = 89}, + [3998] = {.lex_state = 461, .external_lex_state = 35}, + [3999] = {.lex_state = 492, .external_lex_state = 72}, + [4000] = {.lex_state = 461, .external_lex_state = 35}, + [4001] = {.lex_state = 491, .external_lex_state = 89}, + [4002] = {.lex_state = 461, .external_lex_state = 35}, + [4003] = {.lex_state = 461, .external_lex_state = 35}, + [4004] = {.lex_state = 492, .external_lex_state = 88}, + [4005] = {.lex_state = 491, .external_lex_state = 89}, + [4006] = {.lex_state = 473, .external_lex_state = 76}, + [4007] = {.lex_state = 473, .external_lex_state = 76}, + [4008] = {.lex_state = 473, .external_lex_state = 76}, + [4009] = {.lex_state = 443, .external_lex_state = 78}, + [4010] = {.lex_state = 491, .external_lex_state = 92}, + [4011] = {.lex_state = 493, .external_lex_state = 89}, + [4012] = {.lex_state = 491, .external_lex_state = 92}, + [4013] = {.lex_state = 560, .external_lex_state = 61}, + [4014] = {.lex_state = 491, .external_lex_state = 89}, + [4015] = {.lex_state = 69, .external_lex_state = 90}, + [4016] = {.lex_state = 443, .external_lex_state = 76}, + [4017] = {.lex_state = 473, .external_lex_state = 76}, + [4018] = {.lex_state = 491, .external_lex_state = 89}, + [4019] = {.lex_state = 491, .external_lex_state = 92}, + [4020] = {.lex_state = 491, .external_lex_state = 89}, + [4021] = {.lex_state = 491, .external_lex_state = 92}, + [4022] = {.lex_state = 443, .external_lex_state = 76}, + [4023] = {.lex_state = 491, .external_lex_state = 89}, + [4024] = {.lex_state = 491, .external_lex_state = 89}, + [4025] = {.lex_state = 473, .external_lex_state = 76}, + [4026] = {.lex_state = 491, .external_lex_state = 89}, + [4027] = {.lex_state = 443, .external_lex_state = 78}, + [4028] = {.lex_state = 491, .external_lex_state = 89}, + [4029] = {.lex_state = 473, .external_lex_state = 76}, + [4030] = {.lex_state = 473, .external_lex_state = 76}, + [4031] = {.lex_state = 491, .external_lex_state = 89}, + [4032] = {.lex_state = 491, .external_lex_state = 89}, + [4033] = {.lex_state = 491, .external_lex_state = 89}, + [4034] = {.lex_state = 493, .external_lex_state = 89}, + [4035] = {.lex_state = 491, .external_lex_state = 89}, + [4036] = {.lex_state = 491, .external_lex_state = 89}, + [4037] = {.lex_state = 491, .external_lex_state = 89}, + [4038] = {.lex_state = 473, .external_lex_state = 76}, + [4039] = {.lex_state = 491, .external_lex_state = 89}, + [4040] = {.lex_state = 474, .external_lex_state = 93}, + [4041] = {.lex_state = 491, .external_lex_state = 89}, + [4042] = {.lex_state = 492, .external_lex_state = 92}, + [4043] = {.lex_state = 491, .external_lex_state = 92}, + [4044] = {.lex_state = 545, .external_lex_state = 63}, + [4045] = {.lex_state = 545, .external_lex_state = 63}, + [4046] = {.lex_state = 443, .external_lex_state = 76}, + [4047] = {.lex_state = 491, .external_lex_state = 92}, + [4048] = {.lex_state = 493, .external_lex_state = 89}, + [4049] = {.lex_state = 491, .external_lex_state = 89}, + [4050] = {.lex_state = 491, .external_lex_state = 89}, + [4051] = {.lex_state = 491, .external_lex_state = 89}, + [4052] = {.lex_state = 473, .external_lex_state = 76}, + [4053] = {.lex_state = 443, .external_lex_state = 76}, + [4054] = {.lex_state = 491, .external_lex_state = 89}, + [4055] = {.lex_state = 493, .external_lex_state = 89}, + [4056] = {.lex_state = 473, .external_lex_state = 76}, + [4057] = {.lex_state = 443, .external_lex_state = 76}, + [4058] = {.lex_state = 493, .external_lex_state = 89}, + [4059] = {.lex_state = 493, .external_lex_state = 89}, + [4060] = {.lex_state = 491, .external_lex_state = 92}, + [4061] = {.lex_state = 491, .external_lex_state = 92}, + [4062] = {.lex_state = 494, .external_lex_state = 78}, + [4063] = {.lex_state = 492, .external_lex_state = 72}, + [4064] = {.lex_state = 494, .external_lex_state = 78}, + [4065] = {.lex_state = 473, .external_lex_state = 78}, + [4066] = {.lex_state = 443, .external_lex_state = 78}, + [4067] = {.lex_state = 473, .external_lex_state = 76}, + [4068] = {.lex_state = 493, .external_lex_state = 89}, + [4069] = {.lex_state = 492, .external_lex_state = 92}, + [4070] = {.lex_state = 493, .external_lex_state = 89}, + [4071] = {.lex_state = 493, .external_lex_state = 89}, + [4072] = {.lex_state = 493, .external_lex_state = 89}, + [4073] = {.lex_state = 473, .external_lex_state = 78}, + [4074] = {.lex_state = 493, .external_lex_state = 89}, + [4075] = {.lex_state = 491, .external_lex_state = 92}, + [4076] = {.lex_state = 492, .external_lex_state = 92}, + [4077] = {.lex_state = 491, .external_lex_state = 92}, + [4078] = {.lex_state = 491, .external_lex_state = 92}, + [4079] = {.lex_state = 473, .external_lex_state = 76}, + [4080] = {.lex_state = 492, .external_lex_state = 92}, + [4081] = {.lex_state = 491, .external_lex_state = 92}, + [4082] = {.lex_state = 491, .external_lex_state = 92}, + [4083] = {.lex_state = 473, .external_lex_state = 78}, + [4084] = {.lex_state = 473, .external_lex_state = 78}, + [4085] = {.lex_state = 492, .external_lex_state = 92}, + [4086] = {.lex_state = 473, .external_lex_state = 78}, + [4087] = {.lex_state = 492, .external_lex_state = 72}, + [4088] = {.lex_state = 491, .external_lex_state = 92}, + [4089] = {.lex_state = 493, .external_lex_state = 89}, + [4090] = {.lex_state = 491, .external_lex_state = 92}, + [4091] = {.lex_state = 493, .external_lex_state = 89}, + [4092] = {.lex_state = 491, .external_lex_state = 92}, + [4093] = {.lex_state = 494, .external_lex_state = 78}, + [4094] = {.lex_state = 491, .external_lex_state = 92}, + [4095] = {.lex_state = 69, .external_lex_state = 90}, + [4096] = {.lex_state = 473, .external_lex_state = 76}, + [4097] = {.lex_state = 491, .external_lex_state = 92}, + [4098] = {.lex_state = 491, .external_lex_state = 92}, + [4099] = {.lex_state = 491, .external_lex_state = 92}, + [4100] = {.lex_state = 491, .external_lex_state = 92}, + [4101] = {.lex_state = 493, .external_lex_state = 89}, + [4102] = {.lex_state = 473, .external_lex_state = 76}, + [4103] = {.lex_state = 493, .external_lex_state = 89}, + [4104] = {.lex_state = 443, .external_lex_state = 78}, + [4105] = {.lex_state = 493, .external_lex_state = 89}, + [4106] = {.lex_state = 492, .external_lex_state = 92}, + [4107] = {.lex_state = 69, .external_lex_state = 90}, + [4108] = {.lex_state = 493, .external_lex_state = 89}, + [4109] = {.lex_state = 493, .external_lex_state = 89}, + [4110] = {.lex_state = 493, .external_lex_state = 89}, + [4111] = {.lex_state = 491, .external_lex_state = 92}, + [4112] = {.lex_state = 493, .external_lex_state = 89}, + [4113] = {.lex_state = 493, .external_lex_state = 89}, + [4114] = {.lex_state = 493, .external_lex_state = 89}, + [4115] = {.lex_state = 491, .external_lex_state = 92}, + [4116] = {.lex_state = 443, .external_lex_state = 78}, + [4117] = {.lex_state = 494, .external_lex_state = 78}, + [4118] = {.lex_state = 443, .external_lex_state = 66}, + [4119] = {.lex_state = 493, .external_lex_state = 89}, + [4120] = {.lex_state = 492, .external_lex_state = 72}, + [4121] = {.lex_state = 493, .external_lex_state = 89}, + [4122] = {.lex_state = 493, .external_lex_state = 89}, + [4123] = {.lex_state = 494, .external_lex_state = 78}, + [4124] = {.lex_state = 493, .external_lex_state = 89}, + [4125] = {.lex_state = 492, .external_lex_state = 92}, + [4126] = {.lex_state = 491, .external_lex_state = 92}, + [4127] = {.lex_state = 491, .external_lex_state = 92}, + [4128] = {.lex_state = 473, .external_lex_state = 76}, + [4129] = {.lex_state = 473, .external_lex_state = 78}, + [4130] = {.lex_state = 492, .external_lex_state = 72}, + [4131] = {.lex_state = 491, .external_lex_state = 92}, + [4132] = {.lex_state = 492, .external_lex_state = 78}, + [4133] = {.lex_state = 492, .external_lex_state = 92}, + [4134] = {.lex_state = 492, .external_lex_state = 92}, + [4135] = {.lex_state = 492, .external_lex_state = 92}, + [4136] = {.lex_state = 492, .external_lex_state = 92}, + [4137] = {.lex_state = 69, .external_lex_state = 84}, + [4138] = {.lex_state = 492, .external_lex_state = 78}, + [4139] = {.lex_state = 69, .external_lex_state = 84}, + [4140] = {.lex_state = 492, .external_lex_state = 92}, + [4141] = {.lex_state = 69, .external_lex_state = 84}, + [4142] = {.lex_state = 492, .external_lex_state = 92}, + [4143] = {.lex_state = 443, .external_lex_state = 76}, + [4144] = {.lex_state = 492, .external_lex_state = 92}, + [4145] = {.lex_state = 492, .external_lex_state = 92}, + [4146] = {.lex_state = 492, .external_lex_state = 92}, + [4147] = {.lex_state = 69, .external_lex_state = 84}, + [4148] = {.lex_state = 69, .external_lex_state = 84}, + [4149] = {.lex_state = 492, .external_lex_state = 92}, + [4150] = {.lex_state = 545, .external_lex_state = 63}, + [4151] = {.lex_state = 545, .external_lex_state = 63}, + [4152] = {.lex_state = 72, .external_lex_state = 94}, + [4153] = {.lex_state = 492, .external_lex_state = 78}, + [4154] = {.lex_state = 492, .external_lex_state = 92}, + [4155] = {.lex_state = 492, .external_lex_state = 92}, + [4156] = {.lex_state = 69, .external_lex_state = 84}, + [4157] = {.lex_state = 443, .external_lex_state = 76}, + [4158] = {.lex_state = 492, .external_lex_state = 92}, + [4159] = {.lex_state = 492, .external_lex_state = 92}, + [4160] = {.lex_state = 492, .external_lex_state = 92}, + [4161] = {.lex_state = 69, .external_lex_state = 84}, + [4162] = {.lex_state = 443, .external_lex_state = 76}, + [4163] = {.lex_state = 443, .external_lex_state = 76}, + [4164] = {.lex_state = 492, .external_lex_state = 92}, + [4165] = {.lex_state = 492, .external_lex_state = 78}, + [4166] = {.lex_state = 69, .external_lex_state = 84}, + [4167] = {.lex_state = 69, .external_lex_state = 84}, + [4168] = {.lex_state = 492, .external_lex_state = 92}, + [4169] = {.lex_state = 492, .external_lex_state = 92}, + [4170] = {.lex_state = 492, .external_lex_state = 92}, + [4171] = {.lex_state = 492, .external_lex_state = 92}, + [4172] = {.lex_state = 492, .external_lex_state = 78}, + [4173] = {.lex_state = 69, .external_lex_state = 84}, + [4174] = {.lex_state = 473, .external_lex_state = 78}, + [4175] = {.lex_state = 443, .external_lex_state = 78}, + [4176] = {.lex_state = 473, .external_lex_state = 78}, + [4177] = {.lex_state = 473, .external_lex_state = 76}, + [4178] = {.lex_state = 443, .external_lex_state = 78}, + [4179] = {.lex_state = 443, .external_lex_state = 78}, + [4180] = {.lex_state = 443, .external_lex_state = 78}, + [4181] = {.lex_state = 443, .external_lex_state = 78}, + [4182] = {.lex_state = 473, .external_lex_state = 76}, + [4183] = {.lex_state = 473, .external_lex_state = 76}, + [4184] = {.lex_state = 72, .external_lex_state = 94}, + [4185] = {.lex_state = 473, .external_lex_state = 76}, + [4186] = {.lex_state = 72, .external_lex_state = 94}, + [4187] = {.lex_state = 443, .external_lex_state = 78}, + [4188] = {.lex_state = 473, .external_lex_state = 76}, + [4189] = {.lex_state = 443, .external_lex_state = 78}, + [4190] = {.lex_state = 473, .external_lex_state = 78}, + [4191] = {.lex_state = 443, .external_lex_state = 78}, + [4192] = {.lex_state = 72, .external_lex_state = 94}, + [4193] = {.lex_state = 473, .external_lex_state = 78}, + [4194] = {.lex_state = 443, .external_lex_state = 78}, + [4195] = {.lex_state = 473, .external_lex_state = 78}, + [4196] = {.lex_state = 69, .external_lex_state = 84}, + [4197] = {.lex_state = 473, .external_lex_state = 78}, + [4198] = {.lex_state = 72, .external_lex_state = 94}, + [4199] = {.lex_state = 473, .external_lex_state = 78}, + [4200] = {.lex_state = 473, .external_lex_state = 78}, + [4201] = {.lex_state = 443, .external_lex_state = 78}, + [4202] = {.lex_state = 473, .external_lex_state = 76}, + [4203] = {.lex_state = 473, .external_lex_state = 76}, + [4204] = {.lex_state = 72, .external_lex_state = 94}, + [4205] = {.lex_state = 473, .external_lex_state = 76}, + [4206] = {.lex_state = 443, .external_lex_state = 78}, + [4207] = {.lex_state = 473, .external_lex_state = 76}, + [4208] = {.lex_state = 443, .external_lex_state = 78}, + [4209] = {.lex_state = 72, .external_lex_state = 94}, + [4210] = {.lex_state = 473, .external_lex_state = 76}, + [4211] = {.lex_state = 473, .external_lex_state = 76}, + [4212] = {.lex_state = 473, .external_lex_state = 76}, + [4213] = {.lex_state = 443, .external_lex_state = 78}, + [4214] = {.lex_state = 443, .external_lex_state = 78}, + [4215] = {.lex_state = 443, .external_lex_state = 78}, + [4216] = {.lex_state = 473, .external_lex_state = 76}, + [4217] = {.lex_state = 443, .external_lex_state = 78}, + [4218] = {.lex_state = 473, .external_lex_state = 78}, + [4219] = {.lex_state = 473, .external_lex_state = 76}, + [4220] = {.lex_state = 443, .external_lex_state = 78}, + [4221] = {.lex_state = 473, .external_lex_state = 76}, + [4222] = {.lex_state = 473, .external_lex_state = 78}, + [4223] = {.lex_state = 72, .external_lex_state = 94}, + [4224] = {.lex_state = 72, .external_lex_state = 94}, + [4225] = {.lex_state = 72, .external_lex_state = 94}, + [4226] = {.lex_state = 72, .external_lex_state = 94}, + [4227] = {.lex_state = 72, .external_lex_state = 84}, + [4228] = {.lex_state = 473, .external_lex_state = 78}, + [4229] = {.lex_state = 72, .external_lex_state = 84}, + [4230] = {.lex_state = 72, .external_lex_state = 94}, + [4231] = {.lex_state = 64, .external_lex_state = 95}, + [4232] = {.lex_state = 72, .external_lex_state = 84}, + [4233] = {.lex_state = 72, .external_lex_state = 94}, + [4234] = {.lex_state = 72, .external_lex_state = 94}, + [4235] = {.lex_state = 72, .external_lex_state = 94}, + [4236] = {.lex_state = 473, .external_lex_state = 78}, + [4237] = {.lex_state = 72, .external_lex_state = 94}, + [4238] = {.lex_state = 72, .external_lex_state = 84}, + [4239] = {.lex_state = 72, .external_lex_state = 94}, + [4240] = {.lex_state = 72, .external_lex_state = 94}, + [4241] = {.lex_state = 473, .external_lex_state = 78}, + [4242] = {.lex_state = 72, .external_lex_state = 94}, + [4243] = {.lex_state = 72, .external_lex_state = 94}, + [4244] = {.lex_state = 473, .external_lex_state = 78}, + [4245] = {.lex_state = 72, .external_lex_state = 94}, + [4246] = {.lex_state = 72, .external_lex_state = 94}, + [4247] = {.lex_state = 72, .external_lex_state = 84}, + [4248] = {.lex_state = 72, .external_lex_state = 94}, + [4249] = {.lex_state = 72, .external_lex_state = 94}, + [4250] = {.lex_state = 72, .external_lex_state = 94}, + [4251] = {.lex_state = 473, .external_lex_state = 78}, + [4252] = {.lex_state = 473, .external_lex_state = 78}, + [4253] = {.lex_state = 473, .external_lex_state = 78}, + [4254] = {.lex_state = 473, .external_lex_state = 78}, + [4255] = {.lex_state = 473, .external_lex_state = 78}, + [4256] = {.lex_state = 473, .external_lex_state = 78}, + [4257] = {.lex_state = 473, .external_lex_state = 78}, + [4258] = {.lex_state = 473, .external_lex_state = 78}, + [4259] = {.lex_state = 473, .external_lex_state = 78}, + [4260] = {.lex_state = 473, .external_lex_state = 78}, + [4261] = {.lex_state = 473, .external_lex_state = 78}, + [4262] = {.lex_state = 473, .external_lex_state = 78}, + [4263] = {.lex_state = 473, .external_lex_state = 78}, + [4264] = {.lex_state = 473, .external_lex_state = 78}, + [4265] = {.lex_state = 473, .external_lex_state = 78}, + [4266] = {.lex_state = 473, .external_lex_state = 78}, + [4267] = {.lex_state = 473, .external_lex_state = 78}, + [4268] = {.lex_state = 473, .external_lex_state = 78}, + [4269] = {.lex_state = 473, .external_lex_state = 78}, + [4270] = {.lex_state = 473, .external_lex_state = 78}, + [4271] = {.lex_state = 473, .external_lex_state = 78}, + [4272] = {.lex_state = 473, .external_lex_state = 78}, + [4273] = {.lex_state = 473, .external_lex_state = 78}, + [4274] = {.lex_state = 473, .external_lex_state = 78}, + [4275] = {.lex_state = 72, .external_lex_state = 94}, + [4276] = {.lex_state = 473, .external_lex_state = 78}, + [4277] = {.lex_state = 473, .external_lex_state = 78}, + [4278] = {.lex_state = 473, .external_lex_state = 78}, + [4279] = {.lex_state = 72, .external_lex_state = 94}, + [4280] = {.lex_state = 473, .external_lex_state = 78}, + [4281] = {.lex_state = 473, .external_lex_state = 78}, + [4282] = {.lex_state = 473, .external_lex_state = 78}, + [4283] = {.lex_state = 473, .external_lex_state = 78}, + [4284] = {.lex_state = 473, .external_lex_state = 78}, + [4285] = {.lex_state = 473, .external_lex_state = 78}, + [4286] = {.lex_state = 473, .external_lex_state = 78}, + [4287] = {.lex_state = 446, .external_lex_state = 96}, + [4288] = {.lex_state = 446, .external_lex_state = 96}, + [4289] = {.lex_state = 68, .external_lex_state = 77}, + [4290] = {.lex_state = 488}, + [4291] = {.lex_state = 488}, + [4292] = {.lex_state = 488}, + [4293] = {.lex_state = 488}, + [4294] = {.lex_state = 488}, + [4295] = {.lex_state = 488}, + [4296] = {.lex_state = 488}, + [4297] = {.lex_state = 488}, + [4298] = {.lex_state = 488}, + [4299] = {.lex_state = 488}, + [4300] = {.lex_state = 488}, + [4301] = {.lex_state = 488}, + [4302] = {.lex_state = 488}, + [4303] = {.lex_state = 488}, + [4304] = {.lex_state = 488}, + [4305] = {.lex_state = 488}, + [4306] = {.lex_state = 488}, + [4307] = {.lex_state = 488}, + [4308] = {.lex_state = 488}, + [4309] = {.lex_state = 488}, + [4310] = {.lex_state = 488}, + [4311] = {.lex_state = 69, .external_lex_state = 84}, + [4312] = {.lex_state = 488}, + [4313] = {.lex_state = 488}, + [4314] = {.lex_state = 488}, + [4315] = {.lex_state = 488}, + [4316] = {.lex_state = 488}, + [4317] = {.lex_state = 488}, + [4318] = {.lex_state = 488}, + [4319] = {.lex_state = 69, .external_lex_state = 84}, + [4320] = {.lex_state = 488}, + [4321] = {.lex_state = 488}, + [4322] = {.lex_state = 488}, + [4323] = {.lex_state = 488}, + [4324] = {.lex_state = 488}, + [4325] = {.lex_state = 488}, + [4326] = {.lex_state = 488}, + [4327] = {.lex_state = 488}, + [4328] = {.lex_state = 488}, + [4329] = {.lex_state = 488}, + [4330] = {.lex_state = 488}, + [4331] = {.lex_state = 488}, + [4332] = {.lex_state = 488}, + [4333] = {.lex_state = 488}, + [4334] = {.lex_state = 488}, + [4335] = {.lex_state = 488}, + [4336] = {.lex_state = 488}, + [4337] = {.lex_state = 488}, + [4338] = {.lex_state = 488}, + [4339] = {.lex_state = 488}, + [4340] = {.lex_state = 488}, + [4341] = {.lex_state = 488}, + [4342] = {.lex_state = 488}, + [4343] = {.lex_state = 488}, + [4344] = {.lex_state = 488}, + [4345] = {.lex_state = 488}, + [4346] = {.lex_state = 488}, + [4347] = {.lex_state = 69, .external_lex_state = 84}, + [4348] = {.lex_state = 488}, + [4349] = {.lex_state = 488}, + [4350] = {.lex_state = 488}, + [4351] = {.lex_state = 488}, + [4352] = {.lex_state = 488}, + [4353] = {.lex_state = 488}, + [4354] = {.lex_state = 488}, + [4355] = {.lex_state = 488}, + [4356] = {.lex_state = 488}, + [4357] = {.lex_state = 488}, + [4358] = {.lex_state = 488}, + [4359] = {.lex_state = 488}, + [4360] = {.lex_state = 488}, + [4361] = {.lex_state = 488}, + [4362] = {.lex_state = 488}, + [4363] = {.lex_state = 488}, + [4364] = {.lex_state = 488}, + [4365] = {.lex_state = 488}, + [4366] = {.lex_state = 488}, + [4367] = {.lex_state = 488}, + [4368] = {.lex_state = 488}, + [4369] = {.lex_state = 488}, + [4370] = {.lex_state = 488}, + [4371] = {.lex_state = 488}, + [4372] = {.lex_state = 488}, + [4373] = {.lex_state = 488}, + [4374] = {.lex_state = 488}, + [4375] = {.lex_state = 488}, + [4376] = {.lex_state = 488}, + [4377] = {.lex_state = 488}, + [4378] = {.lex_state = 488}, + [4379] = {.lex_state = 488}, + [4380] = {.lex_state = 69, .external_lex_state = 84}, + [4381] = {.lex_state = 488}, + [4382] = {.lex_state = 488}, + [4383] = {.lex_state = 488}, + [4384] = {.lex_state = 488}, + [4385] = {.lex_state = 488}, + [4386] = {.lex_state = 488}, + [4387] = {.lex_state = 488}, + [4388] = {.lex_state = 488}, + [4389] = {.lex_state = 488}, + [4390] = {.lex_state = 488}, + [4391] = {.lex_state = 488}, + [4392] = {.lex_state = 488}, + [4393] = {.lex_state = 488}, + [4394] = {.lex_state = 488}, + [4395] = {.lex_state = 488}, + [4396] = {.lex_state = 488}, + [4397] = {.lex_state = 488}, + [4398] = {.lex_state = 488}, + [4399] = {.lex_state = 488}, + [4400] = {.lex_state = 488}, + [4401] = {.lex_state = 488}, + [4402] = {.lex_state = 488}, + [4403] = {.lex_state = 488}, + [4404] = {.lex_state = 488}, + [4405] = {.lex_state = 488}, + [4406] = {.lex_state = 488}, + [4407] = {.lex_state = 488}, + [4408] = {.lex_state = 488}, + [4409] = {.lex_state = 488}, + [4410] = {.lex_state = 488}, + [4411] = {.lex_state = 488}, + [4412] = {.lex_state = 488}, + [4413] = {.lex_state = 488}, + [4414] = {.lex_state = 488}, + [4415] = {.lex_state = 488}, + [4416] = {.lex_state = 488}, + [4417] = {.lex_state = 488}, + [4418] = {.lex_state = 488}, + [4419] = {.lex_state = 488}, + [4420] = {.lex_state = 488}, + [4421] = {.lex_state = 440}, + [4422] = {.lex_state = 488}, + [4423] = {.lex_state = 488}, + [4424] = {.lex_state = 488}, + [4425] = {.lex_state = 488}, + [4426] = {.lex_state = 488}, + [4427] = {.lex_state = 488}, + [4428] = {.lex_state = 488}, + [4429] = {.lex_state = 488}, + [4430] = {.lex_state = 488}, + [4431] = {.lex_state = 488}, + [4432] = {.lex_state = 488}, + [4433] = {.lex_state = 488}, + [4434] = {.lex_state = 488}, + [4435] = {.lex_state = 488}, + [4436] = {.lex_state = 473, .external_lex_state = 85}, + [4437] = {.lex_state = 443, .external_lex_state = 97}, + [4438] = {.lex_state = 69, .external_lex_state = 90}, + [4439] = {.lex_state = 443, .external_lex_state = 97}, + [4440] = {.lex_state = 443, .external_lex_state = 97}, + [4441] = {.lex_state = 69, .external_lex_state = 90}, + [4442] = {.lex_state = 69, .external_lex_state = 90}, + [4443] = {.lex_state = 443, .external_lex_state = 97}, + [4444] = {.lex_state = 443, .external_lex_state = 97}, + [4445] = {.lex_state = 441}, + [4446] = {.lex_state = 441}, + [4447] = {.lex_state = 441}, + [4448] = {.lex_state = 441}, + [4449] = {.lex_state = 439}, + [4450] = {.lex_state = 439}, + [4451] = {.lex_state = 441}, + [4452] = {.lex_state = 473, .external_lex_state = 97}, + [4453] = {.lex_state = 441}, + [4454] = {.lex_state = 439}, + [4455] = {.lex_state = 441}, + [4456] = {.lex_state = 441}, + [4457] = {.lex_state = 441}, + [4458] = {.lex_state = 441}, + [4459] = {.lex_state = 439}, + [4460] = {.lex_state = 441}, + [4461] = {.lex_state = 439}, + [4462] = {.lex_state = 441}, + [4463] = {.lex_state = 441}, + [4464] = {.lex_state = 473, .external_lex_state = 97}, + [4465] = {.lex_state = 441}, + [4466] = {.lex_state = 441}, + [4467] = {.lex_state = 441}, + [4468] = {.lex_state = 439}, + [4469] = {.lex_state = 441}, + [4470] = {.lex_state = 439}, + [4471] = {.lex_state = 441}, + [4472] = {.lex_state = 439}, + [4473] = {.lex_state = 473, .external_lex_state = 97}, + [4474] = {.lex_state = 441}, + [4475] = {.lex_state = 441}, + [4476] = {.lex_state = 439}, + [4477] = {.lex_state = 441}, + [4478] = {.lex_state = 441}, + [4479] = {.lex_state = 439}, + [4480] = {.lex_state = 441}, + [4481] = {.lex_state = 439}, + [4482] = {.lex_state = 441}, + [4483] = {.lex_state = 441}, + [4484] = {.lex_state = 441}, + [4485] = {.lex_state = 448, .external_lex_state = 98}, + [4486] = {.lex_state = 441}, + [4487] = {.lex_state = 441}, + [4488] = {.lex_state = 441}, + [4489] = {.lex_state = 439}, + [4490] = {.lex_state = 441}, + [4491] = {.lex_state = 441}, + [4492] = {.lex_state = 439}, + [4493] = {.lex_state = 441}, + [4494] = {.lex_state = 439}, + [4495] = {.lex_state = 441}, + [4496] = {.lex_state = 441}, + [4497] = {.lex_state = 441}, + [4498] = {.lex_state = 441}, + [4499] = {.lex_state = 439}, + [4500] = {.lex_state = 441}, + [4501] = {.lex_state = 441}, + [4502] = {.lex_state = 439}, + [4503] = {.lex_state = 441}, + [4504] = {.lex_state = 441}, + [4505] = {.lex_state = 441}, + [4506] = {.lex_state = 441}, + [4507] = {.lex_state = 441}, + [4508] = {.lex_state = 441}, + [4509] = {.lex_state = 439}, + [4510] = {.lex_state = 441}, + [4511] = {.lex_state = 441}, + [4512] = {.lex_state = 441}, + [4513] = {.lex_state = 441}, + [4514] = {.lex_state = 441}, + [4515] = {.lex_state = 439}, + [4516] = {.lex_state = 441}, + [4517] = {.lex_state = 439}, + [4518] = {.lex_state = 441}, + [4519] = {.lex_state = 441}, + [4520] = {.lex_state = 441}, + [4521] = {.lex_state = 441}, + [4522] = {.lex_state = 441}, + [4523] = {.lex_state = 441}, + [4524] = {.lex_state = 441}, + [4525] = {.lex_state = 441}, + [4526] = {.lex_state = 439}, + [4527] = {.lex_state = 439}, + [4528] = {.lex_state = 441}, + [4529] = {.lex_state = 441}, + [4530] = {.lex_state = 439}, + [4531] = {.lex_state = 441}, + [4532] = {.lex_state = 439}, + [4533] = {.lex_state = 441}, + [4534] = {.lex_state = 441}, + [4535] = {.lex_state = 441}, + [4536] = {.lex_state = 441}, + [4537] = {.lex_state = 441}, + [4538] = {.lex_state = 441}, + [4539] = {.lex_state = 439}, + [4540] = {.lex_state = 439}, + [4541] = {.lex_state = 441}, + [4542] = {.lex_state = 441}, + [4543] = {.lex_state = 441}, + [4544] = {.lex_state = 473, .external_lex_state = 97}, + [4545] = {.lex_state = 441}, + [4546] = {.lex_state = 439}, + [4547] = {.lex_state = 441}, + [4548] = {.lex_state = 441}, + [4549] = {.lex_state = 473, .external_lex_state = 97}, + [4550] = {.lex_state = 441}, + [4551] = {.lex_state = 441}, + [4552] = {.lex_state = 441}, + [4553] = {.lex_state = 439}, + [4554] = {.lex_state = 439}, + [4555] = {.lex_state = 441}, + [4556] = {.lex_state = 441}, + [4557] = {.lex_state = 441}, + [4558] = {.lex_state = 439}, + [4559] = {.lex_state = 441}, + [4560] = {.lex_state = 439}, + [4561] = {.lex_state = 441}, + [4562] = {.lex_state = 441}, + [4563] = {.lex_state = 441}, + [4564] = {.lex_state = 441}, + [4565] = {.lex_state = 473, .external_lex_state = 97}, + [4566] = {.lex_state = 439}, + [4567] = {.lex_state = 441}, + [4568] = {.lex_state = 441}, + [4569] = {.lex_state = 441}, + [4570] = {.lex_state = 441}, + [4571] = {.lex_state = 439}, + [4572] = {.lex_state = 441}, + [4573] = {.lex_state = 441}, + [4574] = {.lex_state = 439}, + [4575] = {.lex_state = 441}, + [4576] = {.lex_state = 441}, + [4577] = {.lex_state = 441}, + [4578] = {.lex_state = 441}, + [4579] = {.lex_state = 439}, + [4580] = {.lex_state = 441}, + [4581] = {.lex_state = 441}, + [4582] = {.lex_state = 441}, + [4583] = {.lex_state = 441}, + [4584] = {.lex_state = 441}, + [4585] = {.lex_state = 439}, + [4586] = {.lex_state = 439}, + [4587] = {.lex_state = 439}, + [4588] = {.lex_state = 441}, + [4589] = {.lex_state = 441}, + [4590] = {.lex_state = 441}, + [4591] = {.lex_state = 441}, + [4592] = {.lex_state = 441}, + [4593] = {.lex_state = 441}, + [4594] = {.lex_state = 439}, + [4595] = {.lex_state = 441}, + [4596] = {.lex_state = 439}, + [4597] = {.lex_state = 441}, + [4598] = {.lex_state = 441}, + [4599] = {.lex_state = 441}, + [4600] = {.lex_state = 441}, + [4601] = {.lex_state = 441}, + [4602] = {.lex_state = 439}, + [4603] = {.lex_state = 441}, + [4604] = {.lex_state = 439}, + [4605] = {.lex_state = 441}, + [4606] = {.lex_state = 441}, + [4607] = {.lex_state = 439}, + [4608] = {.lex_state = 441}, + [4609] = {.lex_state = 441}, + [4610] = {.lex_state = 441}, + [4611] = {.lex_state = 439}, + [4612] = {.lex_state = 439}, + [4613] = {.lex_state = 448, .external_lex_state = 98}, + [4614] = {.lex_state = 441}, + [4615] = {.lex_state = 441}, + [4616] = {.lex_state = 441}, + [4617] = {.lex_state = 441}, + [4618] = {.lex_state = 439}, + [4619] = {.lex_state = 439}, + [4620] = {.lex_state = 439}, + [4621] = {.lex_state = 441}, + [4622] = {.lex_state = 441}, + [4623] = {.lex_state = 441}, + [4624] = {.lex_state = 441}, + [4625] = {.lex_state = 439}, + [4626] = {.lex_state = 439}, + [4627] = {.lex_state = 441}, + [4628] = {.lex_state = 441}, + [4629] = {.lex_state = 439}, + [4630] = {.lex_state = 441}, + [4631] = {.lex_state = 439}, + [4632] = {.lex_state = 441}, + [4633] = {.lex_state = 441}, + [4634] = {.lex_state = 441}, + [4635] = {.lex_state = 441}, + [4636] = {.lex_state = 441}, + [4637] = {.lex_state = 439}, + [4638] = {.lex_state = 439}, + [4639] = {.lex_state = 441}, + [4640] = {.lex_state = 439}, + [4641] = {.lex_state = 441}, + [4642] = {.lex_state = 448, .external_lex_state = 98}, + [4643] = {.lex_state = 439}, + [4644] = {.lex_state = 439}, + [4645] = {.lex_state = 441}, + [4646] = {.lex_state = 439}, + [4647] = {.lex_state = 441}, + [4648] = {.lex_state = 441}, + [4649] = {.lex_state = 441}, + [4650] = {.lex_state = 441}, + [4651] = {.lex_state = 488, .external_lex_state = 99}, + [4652] = {.lex_state = 495}, + [4653] = {.lex_state = 495}, + [4654] = {.lex_state = 488, .external_lex_state = 99}, + [4655] = {.lex_state = 495}, + [4656] = {.lex_state = 444}, + [4657] = {.lex_state = 495}, + [4658] = {.lex_state = 495}, + [4659] = {.lex_state = 488, .external_lex_state = 99}, + [4660] = {.lex_state = 495}, + [4661] = {.lex_state = 474, .external_lex_state = 100}, + [4662] = {.lex_state = 488, .external_lex_state = 99}, + [4663] = {.lex_state = 488, .external_lex_state = 99}, + [4664] = {.lex_state = 495}, + [4665] = {.lex_state = 488, .external_lex_state = 99}, + [4666] = {.lex_state = 495}, + [4667] = {.lex_state = 495}, + [4668] = {.lex_state = 495}, + [4669] = {.lex_state = 488, .external_lex_state = 99}, + [4670] = {.lex_state = 495}, + [4671] = {.lex_state = 495}, + [4672] = {.lex_state = 495}, + [4673] = {.lex_state = 495}, + [4674] = {.lex_state = 488, .external_lex_state = 99}, + [4675] = {.lex_state = 488, .external_lex_state = 99}, + [4676] = {.lex_state = 488, .external_lex_state = 99}, + [4677] = {.lex_state = 488, .external_lex_state = 99}, + [4678] = {.lex_state = 495}, + [4679] = {.lex_state = 495}, + [4680] = {.lex_state = 488, .external_lex_state = 99}, + [4681] = {.lex_state = 495}, + [4682] = {.lex_state = 495}, + [4683] = {.lex_state = 474}, + [4684] = {.lex_state = 495, .external_lex_state = 85}, + [4685] = {.lex_state = 495, .external_lex_state = 85}, + [4686] = {.lex_state = 495, .external_lex_state = 85}, + [4687] = {.lex_state = 492}, + [4688] = {.lex_state = 495, .external_lex_state = 85}, + [4689] = {.lex_state = 439}, + [4690] = {.lex_state = 439}, + [4691] = {.lex_state = 495, .external_lex_state = 85}, + [4692] = {.lex_state = 495, .external_lex_state = 85}, + [4693] = {.lex_state = 495, .external_lex_state = 85}, + [4694] = {.lex_state = 439}, + [4695] = {.lex_state = 439}, + [4696] = {.lex_state = 495, .external_lex_state = 85}, + [4697] = {.lex_state = 488}, + [4698] = {.lex_state = 495, .external_lex_state = 85}, + [4699] = {.lex_state = 495, .external_lex_state = 85}, + [4700] = {.lex_state = 495, .external_lex_state = 85}, + [4701] = {.lex_state = 439}, + [4702] = {.lex_state = 439}, + [4703] = {.lex_state = 495, .external_lex_state = 85}, + [4704] = {.lex_state = 495, .external_lex_state = 85}, + [4705] = {.lex_state = 439}, + [4706] = {.lex_state = 439}, + [4707] = {.lex_state = 495, .external_lex_state = 85}, + [4708] = {.lex_state = 439}, + [4709] = {.lex_state = 488}, + [4710] = {.lex_state = 495, .external_lex_state = 85}, + [4711] = {.lex_state = 475, .external_lex_state = 101}, + [4712] = {.lex_state = 73, .external_lex_state = 102}, + [4713] = {.lex_state = 491}, + [4714] = {.lex_state = 491}, + [4715] = {.lex_state = 485, .external_lex_state = 103}, + [4716] = {.lex_state = 448, .external_lex_state = 98}, + [4717] = {.lex_state = 73, .external_lex_state = 102}, + [4718] = {.lex_state = 448, .external_lex_state = 98}, + [4719] = {.lex_state = 448, .external_lex_state = 98}, + [4720] = {.lex_state = 485, .external_lex_state = 103}, + [4721] = {.lex_state = 73, .external_lex_state = 102}, + [4722] = {.lex_state = 448, .external_lex_state = 98}, + [4723] = {.lex_state = 448, .external_lex_state = 98}, + [4724] = {.lex_state = 448, .external_lex_state = 98}, + [4725] = {.lex_state = 485, .external_lex_state = 103}, + [4726] = {.lex_state = 73, .external_lex_state = 102}, + [4727] = {.lex_state = 73, .external_lex_state = 102}, + [4728] = {.lex_state = 73, .external_lex_state = 102}, + [4729] = {.lex_state = 448, .external_lex_state = 98}, + [4730] = {.lex_state = 448, .external_lex_state = 98}, + [4731] = {.lex_state = 73, .external_lex_state = 102}, + [4732] = {.lex_state = 475, .external_lex_state = 100}, + [4733] = {.lex_state = 73, .external_lex_state = 102}, + [4734] = {.lex_state = 73, .external_lex_state = 102}, + [4735] = {.lex_state = 475, .external_lex_state = 100}, + [4736] = {.lex_state = 73, .external_lex_state = 102}, + [4737] = {.lex_state = 475, .external_lex_state = 100}, + [4738] = {.lex_state = 73, .external_lex_state = 102}, + [4739] = {.lex_state = 496, .external_lex_state = 99}, + [4740] = {.lex_state = 73, .external_lex_state = 102}, + [4741] = {.lex_state = 73, .external_lex_state = 102}, + [4742] = {.lex_state = 475, .external_lex_state = 100}, + [4743] = {.lex_state = 73, .external_lex_state = 102}, + [4744] = {.lex_state = 73, .external_lex_state = 95}, + [4745] = {.lex_state = 73, .external_lex_state = 102}, + [4746] = {.lex_state = 475, .external_lex_state = 100}, + [4747] = {.lex_state = 73, .external_lex_state = 102}, + [4748] = {.lex_state = 475, .external_lex_state = 100}, + [4749] = {.lex_state = 73, .external_lex_state = 95}, + [4750] = {.lex_state = 475, .external_lex_state = 100}, + [4751] = {.lex_state = 475, .external_lex_state = 100}, + [4752] = {.lex_state = 73, .external_lex_state = 95}, + [4753] = {.lex_state = 73, .external_lex_state = 102}, + [4754] = {.lex_state = 475, .external_lex_state = 100}, + [4755] = {.lex_state = 73, .external_lex_state = 102}, + [4756] = {.lex_state = 475, .external_lex_state = 100}, + [4757] = {.lex_state = 73, .external_lex_state = 102}, + [4758] = {.lex_state = 73, .external_lex_state = 102}, + [4759] = {.lex_state = 73, .external_lex_state = 102}, + [4760] = {.lex_state = 475, .external_lex_state = 100}, + [4761] = {.lex_state = 73, .external_lex_state = 102}, + [4762] = {.lex_state = 73, .external_lex_state = 102}, + [4763] = {.lex_state = 73, .external_lex_state = 102}, + [4764] = {.lex_state = 73, .external_lex_state = 102}, + [4765] = {.lex_state = 73, .external_lex_state = 95}, + [4766] = {.lex_state = 73, .external_lex_state = 95}, + [4767] = {.lex_state = 73, .external_lex_state = 102}, + [4768] = {.lex_state = 73, .external_lex_state = 102}, + [4769] = {.lex_state = 492}, + [4770] = {.lex_state = 448}, + [4771] = {.lex_state = 448}, + [4772] = {.lex_state = 448}, + [4773] = {.lex_state = 448}, + [4774] = {.lex_state = 448}, + [4775] = {.lex_state = 448}, + [4776] = {.lex_state = 68, .external_lex_state = 95}, + [4777] = {.lex_state = 448}, + [4778] = {.lex_state = 448}, + [4779] = {.lex_state = 68, .external_lex_state = 95}, + [4780] = {.lex_state = 448}, + [4781] = {.lex_state = 448}, + [4782] = {.lex_state = 448}, + [4783] = {.lex_state = 492}, + [4784] = {.lex_state = 478, .external_lex_state = 99}, + [4785] = {.lex_state = 448}, + [4786] = {.lex_state = 448}, + [4787] = {.lex_state = 448}, + [4788] = {.lex_state = 496, .external_lex_state = 99}, + [4789] = {.lex_state = 448}, + [4790] = {.lex_state = 68, .external_lex_state = 95}, + [4791] = {.lex_state = 448}, + [4792] = {.lex_state = 496, .external_lex_state = 99}, + [4793] = {.lex_state = 492}, + [4794] = {.lex_state = 448}, + [4795] = {.lex_state = 478, .external_lex_state = 99}, + [4796] = {.lex_state = 475, .external_lex_state = 100}, + [4797] = {.lex_state = 448}, + [4798] = {.lex_state = 492}, + [4799] = {.lex_state = 448}, + [4800] = {.lex_state = 448}, + [4801] = {.lex_state = 448}, + [4802] = {.lex_state = 448}, + [4803] = {.lex_state = 495}, + [4804] = {.lex_state = 448}, + [4805] = {.lex_state = 448}, + [4806] = {.lex_state = 478, .external_lex_state = 99}, + [4807] = {.lex_state = 448}, + [4808] = {.lex_state = 495}, + [4809] = {.lex_state = 448}, + [4810] = {.lex_state = 448}, + [4811] = {.lex_state = 448}, + [4812] = {.lex_state = 497, .external_lex_state = 104}, + [4813] = {.lex_state = 448}, + [4814] = {.lex_state = 475, .external_lex_state = 100}, + [4815] = {.lex_state = 497, .external_lex_state = 104}, + [4816] = {.lex_state = 448}, + [4817] = {.lex_state = 475, .external_lex_state = 100}, + [4818] = {.lex_state = 492}, + [4819] = {.lex_state = 492}, + [4820] = {.lex_state = 448}, + [4821] = {.lex_state = 448}, + [4822] = {.lex_state = 448}, + [4823] = {.lex_state = 448}, + [4824] = {.lex_state = 448}, + [4825] = {.lex_state = 495, .external_lex_state = 85}, + [4826] = {.lex_state = 448}, + [4827] = {.lex_state = 68, .external_lex_state = 95}, + [4828] = {.lex_state = 485, .external_lex_state = 103}, + [4829] = {.lex_state = 448}, + [4830] = {.lex_state = 448}, + [4831] = {.lex_state = 448}, + [4832] = {.lex_state = 448}, + [4833] = {.lex_state = 492}, + [4834] = {.lex_state = 448}, + [4835] = {.lex_state = 448}, + [4836] = {.lex_state = 495}, + [4837] = {.lex_state = 68, .external_lex_state = 95}, + [4838] = {.lex_state = 475, .external_lex_state = 100}, + [4839] = {.lex_state = 448}, + [4840] = {.lex_state = 68, .external_lex_state = 95}, + [4841] = {.lex_state = 448}, + [4842] = {.lex_state = 448}, + [4843] = {.lex_state = 448}, + [4844] = {.lex_state = 448}, + [4845] = {.lex_state = 448}, + [4846] = {.lex_state = 448}, + [4847] = {.lex_state = 448}, + [4848] = {.lex_state = 448}, + [4849] = {.lex_state = 68, .external_lex_state = 95}, + [4850] = {.lex_state = 448}, + [4851] = {.lex_state = 448}, + [4852] = {.lex_state = 448}, + [4853] = {.lex_state = 448}, + [4854] = {.lex_state = 497, .external_lex_state = 104}, + [4855] = {.lex_state = 492}, + [4856] = {.lex_state = 68, .external_lex_state = 95}, + [4857] = {.lex_state = 448}, + [4858] = {.lex_state = 448}, + [4859] = {.lex_state = 485, .external_lex_state = 103}, + [4860] = {.lex_state = 478, .external_lex_state = 99}, + [4861] = {.lex_state = 448}, + [4862] = {.lex_state = 448}, + [4863] = {.lex_state = 495}, + [4864] = {.lex_state = 448}, + [4865] = {.lex_state = 448}, + [4866] = {.lex_state = 485, .external_lex_state = 103}, + [4867] = {.lex_state = 448}, + [4868] = {.lex_state = 448}, + [4869] = {.lex_state = 477}, + [4870] = {.lex_state = 581, .external_lex_state = 105}, + [4871] = {.lex_state = 455, .external_lex_state = 106}, + [4872] = {.lex_state = 73, .external_lex_state = 95}, + [4873] = {.lex_state = 496}, + [4874] = {.lex_state = 73, .external_lex_state = 95}, + [4875] = {.lex_state = 581, .external_lex_state = 105}, + [4876] = {.lex_state = 495}, + [4877] = {.lex_state = 496, .external_lex_state = 99}, + [4878] = {.lex_state = 581, .external_lex_state = 105}, + [4879] = {.lex_state = 73, .external_lex_state = 95}, + [4880] = {.lex_state = 581, .external_lex_state = 105}, + [4881] = {.lex_state = 497, .external_lex_state = 107}, + [4882] = {.lex_state = 496, .external_lex_state = 99}, + [4883] = {.lex_state = 581, .external_lex_state = 105}, + [4884] = {.lex_state = 73, .external_lex_state = 95}, + [4885] = {.lex_state = 581, .external_lex_state = 105}, + [4886] = {.lex_state = 492}, + [4887] = {.lex_state = 496, .external_lex_state = 99}, + [4888] = {.lex_state = 581, .external_lex_state = 105}, + [4889] = {.lex_state = 496, .external_lex_state = 99}, + [4890] = {.lex_state = 496, .external_lex_state = 99}, + [4891] = {.lex_state = 455, .external_lex_state = 108}, + [4892] = {.lex_state = 68, .external_lex_state = 95}, + [4893] = {.lex_state = 496, .external_lex_state = 99}, + [4894] = {.lex_state = 581, .external_lex_state = 105}, + [4895] = {.lex_state = 496, .external_lex_state = 99}, + [4896] = {.lex_state = 581, .external_lex_state = 105}, + [4897] = {.lex_state = 496, .external_lex_state = 99}, + [4898] = {.lex_state = 581, .external_lex_state = 105}, + [4899] = {.lex_state = 581, .external_lex_state = 105}, + [4900] = {.lex_state = 581, .external_lex_state = 105}, + [4901] = {.lex_state = 581, .external_lex_state = 105}, + [4902] = {.lex_state = 455, .external_lex_state = 106}, + [4903] = {.lex_state = 495}, + [4904] = {.lex_state = 581, .external_lex_state = 105}, + [4905] = {.lex_state = 497, .external_lex_state = 107}, + [4906] = {.lex_state = 581, .external_lex_state = 105}, + [4907] = {.lex_state = 581, .external_lex_state = 105}, + [4908] = {.lex_state = 496, .external_lex_state = 99}, + [4909] = {.lex_state = 477}, + [4910] = {.lex_state = 581, .external_lex_state = 105}, + [4911] = {.lex_state = 581, .external_lex_state = 105}, + [4912] = {.lex_state = 581, .external_lex_state = 105}, + [4913] = {.lex_state = 581, .external_lex_state = 105}, + [4914] = {.lex_state = 581, .external_lex_state = 105}, + [4915] = {.lex_state = 581, .external_lex_state = 105}, + [4916] = {.lex_state = 455, .external_lex_state = 106}, + [4917] = {.lex_state = 581, .external_lex_state = 105}, + [4918] = {.lex_state = 496, .external_lex_state = 99}, + [4919] = {.lex_state = 497, .external_lex_state = 107}, + [4920] = {.lex_state = 581, .external_lex_state = 105}, + [4921] = {.lex_state = 495}, + [4922] = {.lex_state = 455, .external_lex_state = 106}, + [4923] = {.lex_state = 496, .external_lex_state = 99}, + [4924] = {.lex_state = 477}, + [4925] = {.lex_state = 581, .external_lex_state = 105}, + [4926] = {.lex_state = 496, .external_lex_state = 99}, + [4927] = {.lex_state = 581, .external_lex_state = 105}, + [4928] = {.lex_state = 73, .external_lex_state = 95}, + [4929] = {.lex_state = 581, .external_lex_state = 105}, + [4930] = {.lex_state = 496, .external_lex_state = 99}, + [4931] = {.lex_state = 581, .external_lex_state = 105}, + [4932] = {.lex_state = 581, .external_lex_state = 105}, + [4933] = {.lex_state = 455, .external_lex_state = 106}, + [4934] = {.lex_state = 496, .external_lex_state = 99}, + [4935] = {.lex_state = 455, .external_lex_state = 106}, + [4936] = {.lex_state = 581, .external_lex_state = 105}, + [4937] = {.lex_state = 455, .external_lex_state = 106}, + [4938] = {.lex_state = 581, .external_lex_state = 105}, + [4939] = {.lex_state = 496, .external_lex_state = 99}, + [4940] = {.lex_state = 581, .external_lex_state = 105}, + [4941] = {.lex_state = 581, .external_lex_state = 105}, + [4942] = {.lex_state = 581, .external_lex_state = 105}, + [4943] = {.lex_state = 477}, + [4944] = {.lex_state = 73, .external_lex_state = 95}, + [4945] = {.lex_state = 495}, + [4946] = {.lex_state = 581, .external_lex_state = 105}, + [4947] = {.lex_state = 496, .external_lex_state = 99}, + [4948] = {.lex_state = 496, .external_lex_state = 99}, + [4949] = {.lex_state = 496, .external_lex_state = 99}, + [4950] = {.lex_state = 73, .external_lex_state = 95}, + [4951] = {.lex_state = 581, .external_lex_state = 105}, + [4952] = {.lex_state = 497, .external_lex_state = 104}, + [4953] = {.lex_state = 581, .external_lex_state = 105}, + [4954] = {.lex_state = 73, .external_lex_state = 95}, + [4955] = {.lex_state = 497, .external_lex_state = 107}, + [4956] = {.lex_state = 455, .external_lex_state = 108}, + [4957] = {.lex_state = 497, .external_lex_state = 107}, + [4958] = {.lex_state = 496, .external_lex_state = 99}, + [4959] = {.lex_state = 455, .external_lex_state = 106}, + [4960] = {.lex_state = 478, .external_lex_state = 99}, + [4961] = {.lex_state = 581, .external_lex_state = 105}, + [4962] = {.lex_state = 494}, + [4963] = {.lex_state = 497, .external_lex_state = 104}, + [4964] = {.lex_state = 581, .external_lex_state = 105}, + [4965] = {.lex_state = 497, .external_lex_state = 104}, + [4966] = {.lex_state = 581, .external_lex_state = 105}, + [4967] = {.lex_state = 455, .external_lex_state = 106}, + [4968] = {.lex_state = 496, .external_lex_state = 99}, + [4969] = {.lex_state = 452, .external_lex_state = 99}, + [4970] = {.lex_state = 452, .external_lex_state = 99}, + [4971] = {.lex_state = 452, .external_lex_state = 99}, + [4972] = {.lex_state = 452, .external_lex_state = 99}, + [4973] = {.lex_state = 475, .external_lex_state = 100}, + [4974] = {.lex_state = 452, .external_lex_state = 99}, + [4975] = {.lex_state = 455, .external_lex_state = 106}, + [4976] = {.lex_state = 452, .external_lex_state = 99}, + [4977] = {.lex_state = 455, .external_lex_state = 106}, + [4978] = {.lex_state = 455, .external_lex_state = 106}, + [4979] = {.lex_state = 452, .external_lex_state = 99}, + [4980] = {.lex_state = 452, .external_lex_state = 99}, + [4981] = {.lex_state = 452, .external_lex_state = 99}, + [4982] = {.lex_state = 452, .external_lex_state = 99}, + [4983] = {.lex_state = 452, .external_lex_state = 99}, + [4984] = {.lex_state = 455, .external_lex_state = 106}, + [4985] = {.lex_state = 452, .external_lex_state = 99}, + [4986] = {.lex_state = 452, .external_lex_state = 99}, + [4987] = {.lex_state = 452, .external_lex_state = 99}, + [4988] = {.lex_state = 497, .external_lex_state = 107}, + [4989] = {.lex_state = 497, .external_lex_state = 107}, + [4990] = {.lex_state = 452, .external_lex_state = 99}, + [4991] = {.lex_state = 452, .external_lex_state = 99}, + [4992] = {.lex_state = 497, .external_lex_state = 107}, + [4993] = {.lex_state = 448, .external_lex_state = 109}, + [4994] = {.lex_state = 477}, + [4995] = {.lex_state = 452, .external_lex_state = 99}, + [4996] = {.lex_state = 452, .external_lex_state = 99}, + [4997] = {.lex_state = 497, .external_lex_state = 107}, + [4998] = {.lex_state = 497, .external_lex_state = 107}, + [4999] = {.lex_state = 452, .external_lex_state = 99}, + [5000] = {.lex_state = 452, .external_lex_state = 99}, + [5001] = {.lex_state = 452, .external_lex_state = 99}, + [5002] = {.lex_state = 497, .external_lex_state = 107}, + [5003] = {.lex_state = 452, .external_lex_state = 99}, + [5004] = {.lex_state = 452, .external_lex_state = 99}, + [5005] = {.lex_state = 452, .external_lex_state = 99}, + [5006] = {.lex_state = 448, .external_lex_state = 109}, + [5007] = {.lex_state = 452, .external_lex_state = 99}, + [5008] = {.lex_state = 452, .external_lex_state = 99}, + [5009] = {.lex_state = 452, .external_lex_state = 99}, + [5010] = {.lex_state = 452, .external_lex_state = 99}, + [5011] = {.lex_state = 448, .external_lex_state = 109}, + [5012] = {.lex_state = 448, .external_lex_state = 109}, + [5013] = {.lex_state = 452, .external_lex_state = 99}, + [5014] = {.lex_state = 448, .external_lex_state = 109}, + [5015] = {.lex_state = 497, .external_lex_state = 107}, + [5016] = {.lex_state = 497, .external_lex_state = 107}, + [5017] = {.lex_state = 452, .external_lex_state = 99}, + [5018] = {.lex_state = 497, .external_lex_state = 107}, + [5019] = {.lex_state = 448, .external_lex_state = 109}, + [5020] = {.lex_state = 452, .external_lex_state = 99}, + [5021] = {.lex_state = 452, .external_lex_state = 99}, + [5022] = {.lex_state = 448, .external_lex_state = 109}, + [5023] = {.lex_state = 452, .external_lex_state = 99}, + [5024] = {.lex_state = 497, .external_lex_state = 107}, + [5025] = {.lex_state = 497, .external_lex_state = 107}, + [5026] = {.lex_state = 455, .external_lex_state = 106}, + [5027] = {.lex_state = 455, .external_lex_state = 106}, + [5028] = {.lex_state = 475, .external_lex_state = 100}, + [5029] = {.lex_state = 452, .external_lex_state = 99}, + [5030] = {.lex_state = 452, .external_lex_state = 99}, + [5031] = {.lex_state = 452, .external_lex_state = 99}, + [5032] = {.lex_state = 455, .external_lex_state = 107}, + [5033] = {.lex_state = 452, .external_lex_state = 99}, + [5034] = {.lex_state = 452, .external_lex_state = 99}, + [5035] = {.lex_state = 452, .external_lex_state = 99}, + [5036] = {.lex_state = 68, .external_lex_state = 95}, + [5037] = {.lex_state = 452, .external_lex_state = 99}, + [5038] = {.lex_state = 68, .external_lex_state = 95}, + [5039] = {.lex_state = 452, .external_lex_state = 99}, + [5040] = {.lex_state = 497, .external_lex_state = 107}, + [5041] = {.lex_state = 452, .external_lex_state = 99}, + [5042] = {.lex_state = 452, .external_lex_state = 99}, + [5043] = {.lex_state = 452, .external_lex_state = 99}, + [5044] = {.lex_state = 68, .external_lex_state = 95}, + [5045] = {.lex_state = 452, .external_lex_state = 99}, + [5046] = {.lex_state = 452, .external_lex_state = 99}, + [5047] = {.lex_state = 475, .external_lex_state = 100}, + [5048] = {.lex_state = 452, .external_lex_state = 99}, + [5049] = {.lex_state = 452, .external_lex_state = 99}, + [5050] = {.lex_state = 475, .external_lex_state = 100}, + [5051] = {.lex_state = 452, .external_lex_state = 99}, + [5052] = {.lex_state = 448, .external_lex_state = 109}, + [5053] = {.lex_state = 452, .external_lex_state = 99}, + [5054] = {.lex_state = 497, .external_lex_state = 107}, + [5055] = {.lex_state = 497, .external_lex_state = 107}, + [5056] = {.lex_state = 497, .external_lex_state = 107}, + [5057] = {.lex_state = 452, .external_lex_state = 99}, + [5058] = {.lex_state = 452, .external_lex_state = 99}, + [5059] = {.lex_state = 452, .external_lex_state = 99}, + [5060] = {.lex_state = 452, .external_lex_state = 99}, + [5061] = {.lex_state = 452, .external_lex_state = 99}, + [5062] = {.lex_state = 452, .external_lex_state = 99}, + [5063] = {.lex_state = 452, .external_lex_state = 99}, + [5064] = {.lex_state = 450}, + [5065] = {.lex_state = 475, .external_lex_state = 101}, + [5066] = {.lex_state = 452}, + [5067] = {.lex_state = 450}, + [5068] = {.lex_state = 581}, + [5069] = {.lex_state = 581}, + [5070] = {.lex_state = 450}, + [5071] = {.lex_state = 581}, + [5072] = {.lex_state = 581}, + [5073] = {.lex_state = 497}, + [5074] = {.lex_state = 448}, + [5075] = {.lex_state = 493}, + [5076] = {.lex_state = 450}, + [5077] = {.lex_state = 581}, + [5078] = {.lex_state = 452}, + [5079] = {.lex_state = 450}, + [5080] = {.lex_state = 452}, + [5081] = {.lex_state = 452}, + [5082] = {.lex_state = 581}, + [5083] = {.lex_state = 450}, + [5084] = {.lex_state = 450}, + [5085] = {.lex_state = 450}, + [5086] = {.lex_state = 452}, + [5087] = {.lex_state = 450}, + [5088] = {.lex_state = 581}, + [5089] = {.lex_state = 450}, + [5090] = {.lex_state = 497}, + [5091] = {.lex_state = 581}, + [5092] = {.lex_state = 493}, + [5093] = {.lex_state = 581}, + [5094] = {.lex_state = 448}, + [5095] = {.lex_state = 452}, + [5096] = {.lex_state = 452}, + [5097] = {.lex_state = 450}, + [5098] = {.lex_state = 450}, + [5099] = {.lex_state = 452}, + [5100] = {.lex_state = 450}, + [5101] = {.lex_state = 497}, + [5102] = {.lex_state = 452}, + [5103] = {.lex_state = 493}, + [5104] = {.lex_state = 450}, + [5105] = {.lex_state = 452}, + [5106] = {.lex_state = 452}, + [5107] = {.lex_state = 450}, + [5108] = {.lex_state = 450}, + [5109] = {.lex_state = 452}, + [5110] = {.lex_state = 450}, + [5111] = {.lex_state = 429}, + [5112] = {.lex_state = 497}, + [5113] = {.lex_state = 452}, + [5114] = {.lex_state = 452}, + [5115] = {.lex_state = 450}, + [5116] = {.lex_state = 450}, + [5117] = {.lex_state = 450}, + [5118] = {.lex_state = 497}, + [5119] = {.lex_state = 452}, + [5120] = {.lex_state = 450}, + [5121] = {.lex_state = 452}, + [5122] = {.lex_state = 450}, + [5123] = {.lex_state = 497}, + [5124] = {.lex_state = 452}, + [5125] = {.lex_state = 450}, + [5126] = {.lex_state = 448}, + [5127] = {.lex_state = 448}, + [5128] = {.lex_state = 497}, + [5129] = {.lex_state = 452}, + [5130] = {.lex_state = 452}, + [5131] = {.lex_state = 497}, + [5132] = {.lex_state = 452}, + [5133] = {.lex_state = 450}, + [5134] = {.lex_state = 450}, + [5135] = {.lex_state = 452}, + [5136] = {.lex_state = 497}, + [5137] = {.lex_state = 450}, + [5138] = {.lex_state = 452}, + [5139] = {.lex_state = 581}, + [5140] = {.lex_state = 450}, + [5141] = {.lex_state = 497}, + [5142] = {.lex_state = 497}, + [5143] = {.lex_state = 452}, + [5144] = {.lex_state = 497}, + [5145] = {.lex_state = 452}, + [5146] = {.lex_state = 493}, + [5147] = {.lex_state = 450}, + [5148] = {.lex_state = 497}, + [5149] = {.lex_state = 450}, + [5150] = {.lex_state = 448}, + [5151] = {.lex_state = 450}, + [5152] = {.lex_state = 452}, + [5153] = {.lex_state = 450}, + [5154] = {.lex_state = 452}, + [5155] = {.lex_state = 450}, + [5156] = {.lex_state = 450}, + [5157] = {.lex_state = 450}, + [5158] = {.lex_state = 581, .external_lex_state = 110}, + [5159] = {.lex_state = 450}, + [5160] = {.lex_state = 450}, + [5161] = {.lex_state = 475, .external_lex_state = 101}, + [5162] = {.lex_state = 452}, + [5163] = {.lex_state = 450}, + [5164] = {.lex_state = 452}, + [5165] = {.lex_state = 581, .external_lex_state = 110}, + [5166] = {.lex_state = 450}, + [5167] = {.lex_state = 411, .external_lex_state = 99}, + [5168] = {.lex_state = 475, .external_lex_state = 101}, + [5169] = {.lex_state = 473, .external_lex_state = 99}, + [5170] = {.lex_state = 452}, + [5171] = {.lex_state = 452}, + [5172] = {.lex_state = 450}, + [5173] = {.lex_state = 581, .external_lex_state = 110}, + [5174] = {.lex_state = 581}, + [5175] = {.lex_state = 450}, + [5176] = {.lex_state = 452}, + [5177] = {.lex_state = 450}, + [5178] = {.lex_state = 581}, + [5179] = {.lex_state = 473, .external_lex_state = 99}, + [5180] = {.lex_state = 450}, + [5181] = {.lex_state = 448}, + [5182] = {.lex_state = 452}, + [5183] = {.lex_state = 450}, + [5184] = {.lex_state = 452}, + [5185] = {.lex_state = 450}, + [5186] = {.lex_state = 452}, + [5187] = {.lex_state = 450}, + [5188] = {.lex_state = 450}, + [5189] = {.lex_state = 452}, + [5190] = {.lex_state = 452}, + [5191] = {.lex_state = 581}, + [5192] = {.lex_state = 581}, + [5193] = {.lex_state = 450}, + [5194] = {.lex_state = 581, .external_lex_state = 110}, + [5195] = {.lex_state = 450}, + [5196] = {.lex_state = 452}, + [5197] = {.lex_state = 450}, + [5198] = {.lex_state = 450}, + [5199] = {.lex_state = 581}, + [5200] = {.lex_state = 475, .external_lex_state = 100}, + [5201] = {.lex_state = 452}, + [5202] = {.lex_state = 450}, + [5203] = {.lex_state = 452}, + [5204] = {.lex_state = 452}, + [5205] = {.lex_state = 452}, + [5206] = {.lex_state = 450}, + [5207] = {.lex_state = 581}, + [5208] = {.lex_state = 581, .external_lex_state = 110}, + [5209] = {.lex_state = 452}, + [5210] = {.lex_state = 452}, + [5211] = {.lex_state = 450}, + [5212] = {.lex_state = 450}, + [5213] = {.lex_state = 581}, + [5214] = {.lex_state = 450}, + [5215] = {.lex_state = 450}, + [5216] = {.lex_state = 429}, + [5217] = {.lex_state = 581}, + [5218] = {.lex_state = 450}, + [5219] = {.lex_state = 581}, + [5220] = {.lex_state = 450}, + [5221] = {.lex_state = 581}, + [5222] = {.lex_state = 452}, + [5223] = {.lex_state = 450}, + [5224] = {.lex_state = 452}, + [5225] = {.lex_state = 452}, + [5226] = {.lex_state = 581}, + [5227] = {.lex_state = 450}, + [5228] = {.lex_state = 452}, + [5229] = {.lex_state = 450}, + [5230] = {.lex_state = 452}, + [5231] = {.lex_state = 450}, + [5232] = {.lex_state = 450}, + [5233] = {.lex_state = 475, .external_lex_state = 100}, + [5234] = {.lex_state = 450}, + [5235] = {.lex_state = 581, .external_lex_state = 110}, + [5236] = {.lex_state = 581, .external_lex_state = 110}, + [5237] = {.lex_state = 581}, + [5238] = {.lex_state = 452}, + [5239] = {.lex_state = 450}, + [5240] = {.lex_state = 581, .external_lex_state = 110}, + [5241] = {.lex_state = 581}, + [5242] = {.lex_state = 450}, + [5243] = {.lex_state = 452}, + [5244] = {.lex_state = 450}, + [5245] = {.lex_state = 452}, + [5246] = {.lex_state = 450}, + [5247] = {.lex_state = 450}, + [5248] = {.lex_state = 581}, + [5249] = {.lex_state = 450}, + [5250] = {.lex_state = 452}, + [5251] = {.lex_state = 452}, + [5252] = {.lex_state = 452}, + [5253] = {.lex_state = 450}, + [5254] = {.lex_state = 450}, + [5255] = {.lex_state = 448}, + [5256] = {.lex_state = 452}, + [5257] = {.lex_state = 450}, + [5258] = {.lex_state = 429}, + [5259] = {.lex_state = 450}, + [5260] = {.lex_state = 475, .external_lex_state = 101}, + [5261] = {.lex_state = 450}, + [5262] = {.lex_state = 452}, + [5263] = {.lex_state = 450}, + [5264] = {.lex_state = 450}, + [5265] = {.lex_state = 450}, + [5266] = {.lex_state = 450}, + [5267] = {.lex_state = 581}, + [5268] = {.lex_state = 493}, + [5269] = {.lex_state = 452}, + [5270] = {.lex_state = 429}, + [5271] = {.lex_state = 450}, + [5272] = {.lex_state = 450}, + [5273] = {.lex_state = 450}, + [5274] = {.lex_state = 429}, + [5275] = {.lex_state = 581, .external_lex_state = 110}, + [5276] = {.lex_state = 475, .external_lex_state = 100}, + [5277] = {.lex_state = 473}, + [5278] = {.lex_state = 430, .external_lex_state = 111}, + [5279] = {.lex_state = 473}, + [5280] = {.lex_state = 475, .external_lex_state = 100}, + [5281] = {.lex_state = 475, .external_lex_state = 100}, + [5282] = {.lex_state = 475, .external_lex_state = 100}, + [5283] = {.lex_state = 430, .external_lex_state = 111}, + [5284] = {.lex_state = 475, .external_lex_state = 100}, + [5285] = {.lex_state = 430, .external_lex_state = 111}, + [5286] = {.lex_state = 450}, + [5287] = {.lex_state = 475, .external_lex_state = 100}, + [5288] = {.lex_state = 455, .external_lex_state = 100}, + [5289] = {.lex_state = 492}, + [5290] = {.lex_state = 473}, + [5291] = {.lex_state = 475, .external_lex_state = 100}, + [5292] = {.lex_state = 492}, + [5293] = {.lex_state = 492}, + [5294] = {.lex_state = 430, .external_lex_state = 111}, + [5295] = {.lex_state = 430, .external_lex_state = 111}, + [5296] = {.lex_state = 475, .external_lex_state = 100}, + [5297] = {.lex_state = 475, .external_lex_state = 100}, + [5298] = {.lex_state = 473}, + [5299] = {.lex_state = 473}, + [5300] = {.lex_state = 475, .external_lex_state = 100}, + [5301] = {.lex_state = 455, .external_lex_state = 100}, + [5302] = {.lex_state = 475, .external_lex_state = 100}, + [5303] = {.lex_state = 492}, + [5304] = {.lex_state = 492}, + [5305] = {.lex_state = 581}, + [5306] = {.lex_state = 492}, + [5307] = {.lex_state = 448}, + [5308] = {.lex_state = 473}, + [5309] = {.lex_state = 450}, + [5310] = {.lex_state = 430, .external_lex_state = 111}, + [5311] = {.lex_state = 473}, + [5312] = {.lex_state = 475, .external_lex_state = 100}, + [5313] = {.lex_state = 475, .external_lex_state = 100}, + [5314] = {.lex_state = 430, .external_lex_state = 111}, + [5315] = {.lex_state = 450}, + [5316] = {.lex_state = 430, .external_lex_state = 111}, + [5317] = {.lex_state = 473}, + [5318] = {.lex_state = 450}, + [5319] = {.lex_state = 473}, + [5320] = {.lex_state = 473}, + [5321] = {.lex_state = 473}, + [5322] = {.lex_state = 455, .external_lex_state = 103}, + [5323] = {.lex_state = 448}, + [5324] = {.lex_state = 430, .external_lex_state = 111}, + [5325] = {.lex_state = 450}, + [5326] = {.lex_state = 473}, + [5327] = {.lex_state = 492}, + [5328] = {.lex_state = 492}, + [5329] = {.lex_state = 430, .external_lex_state = 111}, + [5330] = {.lex_state = 473}, + [5331] = {.lex_state = 473}, + [5332] = {.lex_state = 450}, + [5333] = {.lex_state = 581}, + [5334] = {.lex_state = 473}, + [5335] = {.lex_state = 450}, + [5336] = {.lex_state = 475, .external_lex_state = 100}, + [5337] = {.lex_state = 448}, + [5338] = {.lex_state = 448}, + [5339] = {.lex_state = 178, .external_lex_state = 95}, + [5340] = {.lex_state = 430, .external_lex_state = 112}, + [5341] = {.lex_state = 581}, + [5342] = {.lex_state = 178, .external_lex_state = 95}, + [5343] = {.lex_state = 456}, + [5344] = {.lex_state = 178, .external_lex_state = 95}, + [5345] = {.lex_state = 581}, + [5346] = {.lex_state = 178, .external_lex_state = 95}, + [5347] = {.lex_state = 430, .external_lex_state = 112}, + [5348] = {.lex_state = 581}, + [5349] = {.lex_state = 456}, + [5350] = {.lex_state = 455, .external_lex_state = 100}, + [5351] = {.lex_state = 581}, + [5352] = {.lex_state = 455, .external_lex_state = 100}, + [5353] = {.lex_state = 581}, + [5354] = {.lex_state = 581}, + [5355] = {.lex_state = 455, .external_lex_state = 100}, + [5356] = {.lex_state = 581}, + [5357] = {.lex_state = 581}, + [5358] = {.lex_state = 581}, + [5359] = {.lex_state = 455, .external_lex_state = 100}, + [5360] = {.lex_state = 581}, + [5361] = {.lex_state = 581}, + [5362] = {.lex_state = 455, .external_lex_state = 100}, + [5363] = {.lex_state = 581}, + [5364] = {.lex_state = 581}, + [5365] = {.lex_state = 581}, + [5366] = {.lex_state = 581}, + [5367] = {.lex_state = 450}, + [5368] = {.lex_state = 581}, + [5369] = {.lex_state = 450}, + [5370] = {.lex_state = 450}, + [5371] = {.lex_state = 581}, + [5372] = {.lex_state = 581}, + [5373] = {.lex_state = 448}, + [5374] = {.lex_state = 456}, + [5375] = {.lex_state = 429}, + [5376] = {.lex_state = 581, .external_lex_state = 113}, + [5377] = {.lex_state = 448}, + [5378] = {.lex_state = 450}, + [5379] = {.lex_state = 581}, + [5380] = {.lex_state = 581}, + [5381] = {.lex_state = 455, .external_lex_state = 100}, + [5382] = {.lex_state = 581}, + [5383] = {.lex_state = 455, .external_lex_state = 100}, + [5384] = {.lex_state = 178, .external_lex_state = 95}, + [5385] = {.lex_state = 581}, + [5386] = {.lex_state = 581}, + [5387] = {.lex_state = 178, .external_lex_state = 95}, + [5388] = {.lex_state = 581}, + [5389] = {.lex_state = 178, .external_lex_state = 95}, + [5390] = {.lex_state = 455, .external_lex_state = 100}, + [5391] = {.lex_state = 178, .external_lex_state = 95}, + [5392] = {.lex_state = 456}, + [5393] = {.lex_state = 581}, + [5394] = {.lex_state = 581}, + [5395] = {.lex_state = 456}, + [5396] = {.lex_state = 581}, + [5397] = {.lex_state = 581}, + [5398] = {.lex_state = 581}, + [5399] = {.lex_state = 581}, + [5400] = {.lex_state = 581}, + [5401] = {.lex_state = 581}, + [5402] = {.lex_state = 581}, + [5403] = {.lex_state = 448}, + [5404] = {.lex_state = 581}, + [5405] = {.lex_state = 450}, + [5406] = {.lex_state = 450}, + [5407] = {.lex_state = 456}, + [5408] = {.lex_state = 581}, + [5409] = {.lex_state = 414}, + [5410] = {.lex_state = 450}, + [5411] = {.lex_state = 456}, + [5412] = {.lex_state = 455, .external_lex_state = 100}, + [5413] = {.lex_state = 581}, + [5414] = {.lex_state = 581}, + [5415] = {.lex_state = 581}, + [5416] = {.lex_state = 448}, + [5417] = {.lex_state = 429}, + [5418] = {.lex_state = 448}, + [5419] = {.lex_state = 448}, + [5420] = {.lex_state = 581}, + [5421] = {.lex_state = 430, .external_lex_state = 112}, + [5422] = {.lex_state = 581}, + [5423] = {.lex_state = 581}, + [5424] = {.lex_state = 456}, + [5425] = {.lex_state = 178, .external_lex_state = 95}, + [5426] = {.lex_state = 455, .external_lex_state = 100}, + [5427] = {.lex_state = 581}, + [5428] = {.lex_state = 178, .external_lex_state = 95}, + [5429] = {.lex_state = 455, .external_lex_state = 100}, + [5430] = {.lex_state = 178, .external_lex_state = 95}, + [5431] = {.lex_state = 581}, + [5432] = {.lex_state = 178, .external_lex_state = 95}, + [5433] = {.lex_state = 581}, + [5434] = {.lex_state = 450}, + [5435] = {.lex_state = 581}, + [5436] = {.lex_state = 581}, + [5437] = {.lex_state = 581}, + [5438] = {.lex_state = 448}, + [5439] = {.lex_state = 581}, + [5440] = {.lex_state = 450}, + [5441] = {.lex_state = 456}, + [5442] = {.lex_state = 456}, + [5443] = {.lex_state = 456}, + [5444] = {.lex_state = 456}, + [5445] = {.lex_state = 456}, + [5446] = {.lex_state = 492}, + [5447] = {.lex_state = 448}, + [5448] = {.lex_state = 430, .external_lex_state = 112}, + [5449] = {.lex_state = 456}, + [5450] = {.lex_state = 178, .external_lex_state = 95}, + [5451] = {.lex_state = 414}, + [5452] = {.lex_state = 178, .external_lex_state = 95}, + [5453] = {.lex_state = 450}, + [5454] = {.lex_state = 178, .external_lex_state = 95}, + [5455] = {.lex_state = 178, .external_lex_state = 95}, + [5456] = {.lex_state = 450}, + [5457] = {.lex_state = 581, .external_lex_state = 114}, + [5458] = {.lex_state = 581, .external_lex_state = 114}, + [5459] = {.lex_state = 455, .external_lex_state = 100}, + [5460] = {.lex_state = 492}, + [5461] = {.lex_state = 455, .external_lex_state = 100}, + [5462] = {.lex_state = 581}, + [5463] = {.lex_state = 581}, + [5464] = {.lex_state = 581}, + [5465] = {.lex_state = 581}, + [5466] = {.lex_state = 581}, + [5467] = {.lex_state = 455, .external_lex_state = 100}, + [5468] = {.lex_state = 581}, + [5469] = {.lex_state = 450}, + [5470] = {.lex_state = 448}, + [5471] = {.lex_state = 414}, + [5472] = {.lex_state = 581}, + [5473] = {.lex_state = 581}, + [5474] = {.lex_state = 581}, + [5475] = {.lex_state = 456}, + [5476] = {.lex_state = 455, .external_lex_state = 100}, + [5477] = {.lex_state = 450}, + [5478] = {.lex_state = 430, .external_lex_state = 112}, + [5479] = {.lex_state = 456}, + [5480] = {.lex_state = 581}, + [5481] = {.lex_state = 455, .external_lex_state = 100}, + [5482] = {.lex_state = 455, .external_lex_state = 100}, + [5483] = {.lex_state = 581}, + [5484] = {.lex_state = 448}, + [5485] = {.lex_state = 581}, + [5486] = {.lex_state = 455, .external_lex_state = 100}, + [5487] = {.lex_state = 581}, + [5488] = {.lex_state = 455, .external_lex_state = 100}, + [5489] = {.lex_state = 581}, + [5490] = {.lex_state = 581}, + [5491] = {.lex_state = 492}, + [5492] = {.lex_state = 456}, + [5493] = {.lex_state = 581}, + [5494] = {.lex_state = 581}, + [5495] = {.lex_state = 581}, + [5496] = {.lex_state = 581}, + [5497] = {.lex_state = 581}, + [5498] = {.lex_state = 448}, + [5499] = {.lex_state = 581}, + [5500] = {.lex_state = 450}, + [5501] = {.lex_state = 581}, + [5502] = {.lex_state = 581}, + [5503] = {.lex_state = 581}, + [5504] = {.lex_state = 456}, + [5505] = {.lex_state = 581}, + [5506] = {.lex_state = 450}, + [5507] = {.lex_state = 450}, + [5508] = {.lex_state = 455, .external_lex_state = 100}, + [5509] = {.lex_state = 448, .external_lex_state = 109}, + [5510] = {.lex_state = 448}, + [5511] = {.lex_state = 581}, + [5512] = {.lex_state = 581}, + [5513] = {.lex_state = 581}, + [5514] = {.lex_state = 448, .external_lex_state = 109}, + [5515] = {.lex_state = 581}, + [5516] = {.lex_state = 492}, + [5517] = {.lex_state = 581}, + [5518] = {.lex_state = 448, .external_lex_state = 109}, + [5519] = {.lex_state = 581}, + [5520] = {.lex_state = 448}, + [5521] = {.lex_state = 581}, + [5522] = {.lex_state = 456}, + [5523] = {.lex_state = 455, .external_lex_state = 100}, + [5524] = {.lex_state = 581}, + [5525] = {.lex_state = 581}, + [5526] = {.lex_state = 581}, + [5527] = {.lex_state = 581}, + [5528] = {.lex_state = 581}, + [5529] = {.lex_state = 456}, + [5530] = {.lex_state = 448}, + [5531] = {.lex_state = 450}, + [5532] = {.lex_state = 581}, + [5533] = {.lex_state = 581}, + [5534] = {.lex_state = 455, .external_lex_state = 100}, + [5535] = {.lex_state = 450}, + [5536] = {.lex_state = 581}, + [5537] = {.lex_state = 456}, + [5538] = {.lex_state = 581}, + [5539] = {.lex_state = 581}, + [5540] = {.lex_state = 448}, + [5541] = {.lex_state = 456}, + [5542] = {.lex_state = 455, .external_lex_state = 100}, + [5543] = {.lex_state = 581}, + [5544] = {.lex_state = 456}, + [5545] = {.lex_state = 581}, + [5546] = {.lex_state = 455, .external_lex_state = 100}, + [5547] = {.lex_state = 581}, + [5548] = {.lex_state = 581}, + [5549] = {.lex_state = 581}, + [5550] = {.lex_state = 448}, + [5551] = {.lex_state = 455, .external_lex_state = 100}, + [5552] = {.lex_state = 455, .external_lex_state = 100}, + [5553] = {.lex_state = 581}, + [5554] = {.lex_state = 581}, + [5555] = {.lex_state = 581}, + [5556] = {.lex_state = 492}, + [5557] = {.lex_state = 581}, + [5558] = {.lex_state = 448}, + [5559] = {.lex_state = 581}, + [5560] = {.lex_state = 455, .external_lex_state = 100}, + [5561] = {.lex_state = 581}, + [5562] = {.lex_state = 455, .external_lex_state = 100}, + [5563] = {.lex_state = 581}, + [5564] = {.lex_state = 581}, + [5565] = {.lex_state = 581}, + [5566] = {.lex_state = 448}, + [5567] = {.lex_state = 581}, + [5568] = {.lex_state = 450}, + [5569] = {.lex_state = 581}, + [5570] = {.lex_state = 581}, + [5571] = {.lex_state = 492}, + [5572] = {.lex_state = 456}, + [5573] = {.lex_state = 414}, + [5574] = {.lex_state = 448}, + [5575] = {.lex_state = 448, .external_lex_state = 109}, + [5576] = {.lex_state = 456}, + [5577] = {.lex_state = 450}, + [5578] = {.lex_state = 455, .external_lex_state = 100}, + [5579] = {.lex_state = 581}, + [5580] = {.lex_state = 581}, + [5581] = {.lex_state = 455, .external_lex_state = 100}, + [5582] = {.lex_state = 448}, + [5583] = {.lex_state = 581}, + [5584] = {.lex_state = 581}, + [5585] = {.lex_state = 581}, + [5586] = {.lex_state = 581}, + [5587] = {.lex_state = 455, .external_lex_state = 100}, + [5588] = {.lex_state = 581}, + [5589] = {.lex_state = 581}, + [5590] = {.lex_state = 448}, + [5591] = {.lex_state = 455, .external_lex_state = 100}, + [5592] = {.lex_state = 581}, + [5593] = {.lex_state = 450}, + [5594] = {.lex_state = 581}, + [5595] = {.lex_state = 581}, + [5596] = {.lex_state = 455, .external_lex_state = 100}, + [5597] = {.lex_state = 581}, + [5598] = {.lex_state = 448}, + [5599] = {.lex_state = 581}, + [5600] = {.lex_state = 581}, + [5601] = {.lex_state = 581}, + [5602] = {.lex_state = 450}, + [5603] = {.lex_state = 456}, + [5604] = {.lex_state = 581}, + [5605] = {.lex_state = 450}, + [5606] = {.lex_state = 448}, + [5607] = {.lex_state = 450}, + [5608] = {.lex_state = 455, .external_lex_state = 100}, + [5609] = {.lex_state = 456}, + [5610] = {.lex_state = 581}, + [5611] = {.lex_state = 581}, + [5612] = {.lex_state = 581}, + [5613] = {.lex_state = 448, .external_lex_state = 109}, + [5614] = {.lex_state = 448}, + [5615] = {.lex_state = 581}, + [5616] = {.lex_state = 456}, + [5617] = {.lex_state = 581, .external_lex_state = 114}, + [5618] = {.lex_state = 414}, + [5619] = {.lex_state = 581, .external_lex_state = 114}, + [5620] = {.lex_state = 455, .external_lex_state = 100}, + [5621] = {.lex_state = 455, .external_lex_state = 100}, + [5622] = {.lex_state = 448}, + [5623] = {.lex_state = 581}, + [5624] = {.lex_state = 456}, + [5625] = {.lex_state = 581}, + [5626] = {.lex_state = 455, .external_lex_state = 100}, + [5627] = {.lex_state = 455, .external_lex_state = 100}, + [5628] = {.lex_state = 581}, + [5629] = {.lex_state = 581}, + [5630] = {.lex_state = 448}, + [5631] = {.lex_state = 581}, + [5632] = {.lex_state = 455, .external_lex_state = 100}, + [5633] = {.lex_state = 455, .external_lex_state = 100}, + [5634] = {.lex_state = 581}, + [5635] = {.lex_state = 450}, + [5636] = {.lex_state = 448, .external_lex_state = 109}, + [5637] = {.lex_state = 581}, + [5638] = {.lex_state = 448}, + [5639] = {.lex_state = 448, .external_lex_state = 109}, + [5640] = {.lex_state = 456}, + [5641] = {.lex_state = 492}, + [5642] = {.lex_state = 448, .external_lex_state = 109}, + [5643] = {.lex_state = 455, .external_lex_state = 100}, + [5644] = {.lex_state = 581}, + [5645] = {.lex_state = 430, .external_lex_state = 112}, + [5646] = {.lex_state = 448}, + [5647] = {.lex_state = 581}, + [5648] = {.lex_state = 455, .external_lex_state = 100}, + [5649] = {.lex_state = 581}, + [5650] = {.lex_state = 581}, + [5651] = {.lex_state = 455, .external_lex_state = 100}, + [5652] = {.lex_state = 581}, + [5653] = {.lex_state = 455, .external_lex_state = 100}, + [5654] = {.lex_state = 448}, + [5655] = {.lex_state = 178, .external_lex_state = 95}, + [5656] = {.lex_state = 581}, + [5657] = {.lex_state = 581}, + [5658] = {.lex_state = 581}, + [5659] = {.lex_state = 581}, + [5660] = {.lex_state = 581}, + [5661] = {.lex_state = 581}, + [5662] = {.lex_state = 448}, + [5663] = {.lex_state = 450}, + [5664] = {.lex_state = 581}, + [5665] = {.lex_state = 455, .external_lex_state = 100}, + [5666] = {.lex_state = 581}, + [5667] = {.lex_state = 456}, + [5668] = {.lex_state = 581}, + [5669] = {.lex_state = 455, .external_lex_state = 100}, + [5670] = {.lex_state = 448}, + [5671] = {.lex_state = 581}, + [5672] = {.lex_state = 455, .external_lex_state = 100}, + [5673] = {.lex_state = 581}, + [5674] = {.lex_state = 581}, + [5675] = {.lex_state = 581}, + [5676] = {.lex_state = 450}, + [5677] = {.lex_state = 581}, + [5678] = {.lex_state = 448}, + [5679] = {.lex_state = 581}, + [5680] = {.lex_state = 581}, + [5681] = {.lex_state = 581}, + [5682] = {.lex_state = 581}, + [5683] = {.lex_state = 450}, + [5684] = {.lex_state = 455, .external_lex_state = 100}, + [5685] = {.lex_state = 581}, + [5686] = {.lex_state = 448}, + [5687] = {.lex_state = 456}, + [5688] = {.lex_state = 450}, + [5689] = {.lex_state = 581}, + [5690] = {.lex_state = 581}, + [5691] = {.lex_state = 455, .external_lex_state = 100}, + [5692] = {.lex_state = 581}, + [5693] = {.lex_state = 581}, + [5694] = {.lex_state = 448}, + [5695] = {.lex_state = 450}, + [5696] = {.lex_state = 581}, + [5697] = {.lex_state = 456}, + [5698] = {.lex_state = 455, .external_lex_state = 100}, + [5699] = {.lex_state = 456}, + [5700] = {.lex_state = 581}, + [5701] = {.lex_state = 456}, + [5702] = {.lex_state = 448}, + [5703] = {.lex_state = 581, .external_lex_state = 114}, + [5704] = {.lex_state = 456}, + [5705] = {.lex_state = 581}, + [5706] = {.lex_state = 581, .external_lex_state = 114}, + [5707] = {.lex_state = 581}, + [5708] = {.lex_state = 581}, + [5709] = {.lex_state = 448}, + [5710] = {.lex_state = 448}, + [5711] = {.lex_state = 581}, + [5712] = {.lex_state = 581}, + [5713] = {.lex_state = 448, .external_lex_state = 109}, + [5714] = {.lex_state = 455, .external_lex_state = 100}, + [5715] = {.lex_state = 581}, + [5716] = {.lex_state = 455}, + [5717] = {.lex_state = 581}, + [5718] = {.lex_state = 448}, + [5719] = {.lex_state = 581}, + [5720] = {.lex_state = 581}, + [5721] = {.lex_state = 581}, + [5722] = {.lex_state = 581}, + [5723] = {.lex_state = 450}, + [5724] = {.lex_state = 455, .external_lex_state = 100}, + [5725] = {.lex_state = 429}, + [5726] = {.lex_state = 448}, + [5727] = {.lex_state = 581}, + [5728] = {.lex_state = 581}, + [5729] = {.lex_state = 450}, + [5730] = {.lex_state = 456}, + [5731] = {.lex_state = 581}, + [5732] = {.lex_state = 456}, + [5733] = {.lex_state = 178, .external_lex_state = 95}, + [5734] = {.lex_state = 448}, + [5735] = {.lex_state = 581, .external_lex_state = 114}, + [5736] = {.lex_state = 492}, + [5737] = {.lex_state = 448, .external_lex_state = 109}, + [5738] = {.lex_state = 581}, + [5739] = {.lex_state = 581}, + [5740] = {.lex_state = 581, .external_lex_state = 114}, + [5741] = {.lex_state = 450}, + [5742] = {.lex_state = 448}, + [5743] = {.lex_state = 455, .external_lex_state = 100}, + [5744] = {.lex_state = 581}, + [5745] = {.lex_state = 455, .external_lex_state = 100}, + [5746] = {.lex_state = 581}, + [5747] = {.lex_state = 492}, + [5748] = {.lex_state = 581}, + [5749] = {.lex_state = 581}, + [5750] = {.lex_state = 448}, + [5751] = {.lex_state = 456}, + [5752] = {.lex_state = 450}, + [5753] = {.lex_state = 492}, + [5754] = {.lex_state = 455, .external_lex_state = 100}, + [5755] = {.lex_state = 581}, + [5756] = {.lex_state = 456}, + [5757] = {.lex_state = 581}, + [5758] = {.lex_state = 448}, + [5759] = {.lex_state = 581}, + [5760] = {.lex_state = 581}, + [5761] = {.lex_state = 581}, + [5762] = {.lex_state = 455, .external_lex_state = 100}, + [5763] = {.lex_state = 450}, + [5764] = {.lex_state = 581}, + [5765] = {.lex_state = 450}, + [5766] = {.lex_state = 448}, + [5767] = {.lex_state = 581}, + [5768] = {.lex_state = 448, .external_lex_state = 109}, + [5769] = {.lex_state = 448, .external_lex_state = 109}, + [5770] = {.lex_state = 455, .external_lex_state = 100}, + [5771] = {.lex_state = 581, .external_lex_state = 113}, + [5772] = {.lex_state = 581}, + [5773] = {.lex_state = 581}, + [5774] = {.lex_state = 448}, + [5775] = {.lex_state = 581}, + [5776] = {.lex_state = 456}, + [5777] = {.lex_state = 581}, + [5778] = {.lex_state = 581}, + [5779] = {.lex_state = 581}, + [5780] = {.lex_state = 581}, + [5781] = {.lex_state = 450}, + [5782] = {.lex_state = 448}, + [5783] = {.lex_state = 581}, + [5784] = {.lex_state = 581}, + [5785] = {.lex_state = 450}, + [5786] = {.lex_state = 456}, + [5787] = {.lex_state = 455, .external_lex_state = 100}, + [5788] = {.lex_state = 455, .external_lex_state = 100}, + [5789] = {.lex_state = 581}, + [5790] = {.lex_state = 448}, + [5791] = {.lex_state = 456}, + [5792] = {.lex_state = 492}, + [5793] = {.lex_state = 581}, + [5794] = {.lex_state = 414}, + [5795] = {.lex_state = 581}, + [5796] = {.lex_state = 455, .external_lex_state = 100}, + [5797] = {.lex_state = 581}, + [5798] = {.lex_state = 448}, + [5799] = {.lex_state = 448, .external_lex_state = 109}, + [5800] = {.lex_state = 450}, + [5801] = {.lex_state = 581}, + [5802] = {.lex_state = 455, .external_lex_state = 100}, + [5803] = {.lex_state = 581}, + [5804] = {.lex_state = 581}, + [5805] = {.lex_state = 456}, + [5806] = {.lex_state = 448}, + [5807] = {.lex_state = 581}, + [5808] = {.lex_state = 581}, + [5809] = {.lex_state = 581}, + [5810] = {.lex_state = 581}, + [5811] = {.lex_state = 581}, + [5812] = {.lex_state = 450}, + [5813] = {.lex_state = 455, .external_lex_state = 100}, + [5814] = {.lex_state = 448}, + [5815] = {.lex_state = 455, .external_lex_state = 100}, + [5816] = {.lex_state = 581}, + [5817] = {.lex_state = 581}, + [5818] = {.lex_state = 456}, + [5819] = {.lex_state = 581}, + [5820] = {.lex_state = 581}, + [5821] = {.lex_state = 455, .external_lex_state = 100}, + [5822] = {.lex_state = 448}, + [5823] = {.lex_state = 581}, + [5824] = {.lex_state = 581}, + [5825] = {.lex_state = 581}, + [5826] = {.lex_state = 581}, + [5827] = {.lex_state = 581}, + [5828] = {.lex_state = 581}, + [5829] = {.lex_state = 455, .external_lex_state = 100}, + [5830] = {.lex_state = 448}, + [5831] = {.lex_state = 581}, + [5832] = {.lex_state = 450}, + [5833] = {.lex_state = 581}, + [5834] = {.lex_state = 581}, + [5835] = {.lex_state = 581}, + [5836] = {.lex_state = 581}, + [5837] = {.lex_state = 581}, + [5838] = {.lex_state = 448}, + [5839] = {.lex_state = 450}, + [5840] = {.lex_state = 455, .external_lex_state = 100}, + [5841] = {.lex_state = 581}, + [5842] = {.lex_state = 455, .external_lex_state = 100}, + [5843] = {.lex_state = 581}, + [5844] = {.lex_state = 455, .external_lex_state = 100}, + [5845] = {.lex_state = 456}, + [5846] = {.lex_state = 448}, + [5847] = {.lex_state = 581}, + [5848] = {.lex_state = 414}, + [5849] = {.lex_state = 456}, + [5850] = {.lex_state = 581}, + [5851] = {.lex_state = 581}, + [5852] = {.lex_state = 581}, + [5853] = {.lex_state = 455, .external_lex_state = 100}, + [5854] = {.lex_state = 448}, + [5855] = {.lex_state = 455, .external_lex_state = 100}, + [5856] = {.lex_state = 581}, + [5857] = {.lex_state = 455, .external_lex_state = 100}, + [5858] = {.lex_state = 581}, + [5859] = {.lex_state = 581}, + [5860] = {.lex_state = 581}, + [5861] = {.lex_state = 581}, + [5862] = {.lex_state = 448}, + [5863] = {.lex_state = 178, .external_lex_state = 95}, + [5864] = {.lex_state = 581}, + [5865] = {.lex_state = 581}, + [5866] = {.lex_state = 450}, + [5867] = {.lex_state = 581}, + [5868] = {.lex_state = 581}, + [5869] = {.lex_state = 455, .external_lex_state = 100}, + [5870] = {.lex_state = 448}, + [5871] = {.lex_state = 456}, + [5872] = {.lex_state = 581}, + [5873] = {.lex_state = 581, .external_lex_state = 114}, + [5874] = {.lex_state = 581}, + [5875] = {.lex_state = 448, .external_lex_state = 109}, + [5876] = {.lex_state = 581}, + [5877] = {.lex_state = 581, .external_lex_state = 114}, + [5878] = {.lex_state = 448}, + [5879] = {.lex_state = 581}, + [5880] = {.lex_state = 581}, + [5881] = {.lex_state = 455, .external_lex_state = 100}, + [5882] = {.lex_state = 581}, + [5883] = {.lex_state = 581}, + [5884] = {.lex_state = 581}, + [5885] = {.lex_state = 455, .external_lex_state = 100}, + [5886] = {.lex_state = 448}, + [5887] = {.lex_state = 581}, + [5888] = {.lex_state = 455, .external_lex_state = 100}, + [5889] = {.lex_state = 450}, + [5890] = {.lex_state = 581}, + [5891] = {.lex_state = 581}, + [5892] = {.lex_state = 178, .external_lex_state = 95}, + [5893] = {.lex_state = 450}, + [5894] = {.lex_state = 448}, + [5895] = {.lex_state = 581}, + [5896] = {.lex_state = 581}, + [5897] = {.lex_state = 581}, + [5898] = {.lex_state = 450}, + [5899] = {.lex_state = 581}, + [5900] = {.lex_state = 455, .external_lex_state = 100}, + [5901] = {.lex_state = 581}, + [5902] = {.lex_state = 448}, + [5903] = {.lex_state = 581}, + [5904] = {.lex_state = 456}, + [5905] = {.lex_state = 581}, + [5906] = {.lex_state = 455, .external_lex_state = 100}, + [5907] = {.lex_state = 581}, + [5908] = {.lex_state = 450}, + [5909] = {.lex_state = 581}, + [5910] = {.lex_state = 581}, + [5911] = {.lex_state = 581}, + [5912] = {.lex_state = 581}, + [5913] = {.lex_state = 450}, + [5914] = {.lex_state = 581}, + [5915] = {.lex_state = 450}, + [5916] = {.lex_state = 455, .external_lex_state = 100}, + [5917] = {.lex_state = 581}, + [5918] = {.lex_state = 581}, + [5919] = {.lex_state = 581}, + [5920] = {.lex_state = 581}, + [5921] = {.lex_state = 581}, + [5922] = {.lex_state = 581}, + [5923] = {.lex_state = 450}, + [5924] = {.lex_state = 450}, + [5925] = {.lex_state = 456}, + [5926] = {.lex_state = 581}, + [5927] = {.lex_state = 450}, + [5928] = {.lex_state = 456}, + [5929] = {.lex_state = 450}, + [5930] = {.lex_state = 455, .external_lex_state = 100}, + [5931] = {.lex_state = 581}, + [5932] = {.lex_state = 581}, + [5933] = {.lex_state = 450}, + [5934] = {.lex_state = 456}, + [5935] = {.lex_state = 456}, + [5936] = {.lex_state = 414}, + [5937] = {.lex_state = 456}, + [5938] = {.lex_state = 492}, + [5939] = {.lex_state = 581}, + [5940] = {.lex_state = 448, .external_lex_state = 109}, + [5941] = {.lex_state = 414}, + [5942] = {.lex_state = 455, .external_lex_state = 100}, + [5943] = {.lex_state = 581}, + [5944] = {.lex_state = 455, .external_lex_state = 100}, + [5945] = {.lex_state = 581}, + [5946] = {.lex_state = 581}, + [5947] = {.lex_state = 581}, + [5948] = {.lex_state = 581}, + [5949] = {.lex_state = 581}, + [5950] = {.lex_state = 448}, + [5951] = {.lex_state = 581}, + [5952] = {.lex_state = 429}, + [5953] = {.lex_state = 450}, + [5954] = {.lex_state = 455, .external_lex_state = 100}, + [5955] = {.lex_state = 448}, + [5956] = {.lex_state = 448}, + [5957] = {.lex_state = 581}, + [5958] = {.lex_state = 581, .external_lex_state = 113}, + [5959] = {.lex_state = 448, .external_lex_state = 109}, + [5960] = {.lex_state = 581}, + [5961] = {.lex_state = 581}, + [5962] = {.lex_state = 581, .external_lex_state = 113}, + [5963] = {.lex_state = 581}, + [5964] = {.lex_state = 581}, + [5965] = {.lex_state = 456}, + [5966] = {.lex_state = 581}, + [5967] = {.lex_state = 448}, + [5968] = {.lex_state = 456}, + [5969] = {.lex_state = 581, .external_lex_state = 113}, + [5970] = {.lex_state = 456}, + [5971] = {.lex_state = 581, .external_lex_state = 113}, + [5972] = {.lex_state = 455, .external_lex_state = 100}, + [5973] = {.lex_state = 450}, + [5974] = {.lex_state = 581}, + [5975] = {.lex_state = 455, .external_lex_state = 100}, + [5976] = {.lex_state = 448}, + [5977] = {.lex_state = 455, .external_lex_state = 100}, + [5978] = {.lex_state = 581, .external_lex_state = 113}, + [5979] = {.lex_state = 581}, + [5980] = {.lex_state = 581, .external_lex_state = 113}, + [5981] = {.lex_state = 448}, + [5982] = {.lex_state = 581, .external_lex_state = 113}, + [5983] = {.lex_state = 581, .external_lex_state = 113}, + [5984] = {.lex_state = 448}, + [5985] = {.lex_state = 448}, + [5986] = {.lex_state = 448}, + [5987] = {.lex_state = 448}, + [5988] = {.lex_state = 448}, + [5989] = {.lex_state = 448}, + [5990] = {.lex_state = 448}, + [5991] = {.lex_state = 448}, + [5992] = {.lex_state = 448}, + [5993] = {.lex_state = 448}, + [5994] = {.lex_state = 448}, + [5995] = {.lex_state = 448}, + [5996] = {.lex_state = 448}, + [5997] = {.lex_state = 448}, + [5998] = {.lex_state = 448}, + [5999] = {.lex_state = 448}, + [6000] = {.lex_state = 448}, + [6001] = {.lex_state = 448}, + [6002] = {.lex_state = 448}, + [6003] = {.lex_state = 448}, + [6004] = {.lex_state = 448}, + [6005] = {.lex_state = 448}, + [6006] = {.lex_state = 448}, + [6007] = {.lex_state = 448}, + [6008] = {.lex_state = 448}, + [6009] = {.lex_state = 448}, + [6010] = {.lex_state = 448}, + [6011] = {.lex_state = 448}, + [6012] = {.lex_state = 448}, + [6013] = {.lex_state = 448}, + [6014] = {.lex_state = 448}, + [6015] = {.lex_state = 448}, + [6016] = {.lex_state = 448}, + [6017] = {.lex_state = 448}, + [6018] = {.lex_state = 448}, + [6019] = {.lex_state = 448}, + [6020] = {.lex_state = 448}, + [6021] = {.lex_state = 448}, + [6022] = {.lex_state = 448}, + [6023] = {.lex_state = 448}, + [6024] = {.lex_state = 448}, + [6025] = {.lex_state = 450}, + [6026] = {.lex_state = 448}, + [6027] = {.lex_state = 448}, + [6028] = {.lex_state = 448}, + [6029] = {.lex_state = 448}, + [6030] = {.lex_state = 448}, + [6031] = {.lex_state = 448}, + [6032] = {.lex_state = 448}, + [6033] = {.lex_state = 448}, + [6034] = {.lex_state = 448}, + [6035] = {.lex_state = 448}, + [6036] = {.lex_state = 448}, + [6037] = {.lex_state = 581}, + [6038] = {.lex_state = 448}, + [6039] = {.lex_state = 448}, + [6040] = {.lex_state = 448}, + [6041] = {.lex_state = 448}, + [6042] = {.lex_state = 448}, + [6043] = {.lex_state = 448}, + [6044] = {.lex_state = 448}, + [6045] = {.lex_state = 448}, + [6046] = {.lex_state = 448}, + [6047] = {.lex_state = 448}, + [6048] = {.lex_state = 448}, + [6049] = {.lex_state = 448}, + [6050] = {.lex_state = 448}, + [6051] = {.lex_state = 448}, + [6052] = {.lex_state = 448}, + [6053] = {.lex_state = 448}, + [6054] = {.lex_state = 448}, + [6055] = {.lex_state = 448}, + [6056] = {.lex_state = 448}, + [6057] = {.lex_state = 448}, + [6058] = {.lex_state = 448}, + [6059] = {.lex_state = 448}, + [6060] = {.lex_state = 448}, + [6061] = {.lex_state = 448}, + [6062] = {.lex_state = 448}, + [6063] = {.lex_state = 448}, + [6064] = {.lex_state = 448}, + [6065] = {.lex_state = 448}, + [6066] = {.lex_state = 448}, + [6067] = {.lex_state = 448}, + [6068] = {.lex_state = 448}, + [6069] = {.lex_state = 448}, + [6070] = {.lex_state = 448}, + [6071] = {.lex_state = 448}, + [6072] = {.lex_state = 448}, + [6073] = {.lex_state = 448}, + [6074] = {.lex_state = 448}, + [6075] = {.lex_state = 448}, + [6076] = {.lex_state = 448}, + [6077] = {.lex_state = 448}, + [6078] = {.lex_state = 448}, + [6079] = {.lex_state = 448}, + [6080] = {.lex_state = 448}, + [6081] = {.lex_state = 448}, + [6082] = {.lex_state = 448}, + [6083] = {.lex_state = 448}, + [6084] = {.lex_state = 448}, + [6085] = {.lex_state = 448}, + [6086] = {.lex_state = 448}, + [6087] = {.lex_state = 448}, + [6088] = {.lex_state = 448}, + [6089] = {.lex_state = 448}, + [6090] = {.lex_state = 448}, + [6091] = {.lex_state = 448}, + [6092] = {.lex_state = 448}, + [6093] = {.lex_state = 455, .external_lex_state = 100}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [STATE(0)] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_word] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_SEMI_SEMI] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_select] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_PIPE_PIPE] = ACTIONS(1), + [anon_sym_AMP_AMP] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_until] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), + [anon_sym_done] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_then] = ACTIONS(1), + [anon_sym_fi] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_esac] = ACTIONS(1), + [anon_sym_SEMI_AMP] = ACTIONS(1), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1), + [anon_sym_function] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_PIPE_AMP] = ACTIONS(1), + [anon_sym_BANG] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1), + [anon_sym_declare] = ACTIONS(1), + [anon_sym_typeset] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_readonly] = ACTIONS(1), + [anon_sym_local] = ACTIONS(1), + [anon_sym_unset] = ACTIONS(1), + [anon_sym_unsetenv] = ACTIONS(1), + [anon_sym_AMP_GT] = ACTIONS(1), + [anon_sym_AMP_GT_GT] = ACTIONS(1), + [anon_sym_LT_AMP] = ACTIONS(1), + [anon_sym_GT_AMP] = ACTIONS(1), + [anon_sym_GT_PIPE] = ACTIONS(1), + [anon_sym_LT_AMP_DASH] = ACTIONS(1), + [anon_sym_GT_AMP_DASH] = ACTIONS(1), + [anon_sym_LT_LT_DASH] = ACTIONS(1), + [anon_sym_LT_LT_LT] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_DASH2] = ACTIONS(1), + [anon_sym_PLUS2] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1), + [aux_sym_brace_expression_token1] = ACTIONS(1), + [anon_sym_DOT_DOT] = ACTIONS(1), + [anon_sym_RBRACE2] = ACTIONS(1), + [aux_sym_concatenation_token1] = ACTIONS(1), + [anon_sym_DOLLAR] = ACTIONS(1), + [sym_special_character] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_raw_string] = ACTIONS(1), + [sym_ansi_c_string] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_POUND] = ACTIONS(1), + [anon_sym__] = ACTIONS(1), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE3] = ACTIONS(1), + [anon_sym_BANG2] = ACTIONS(1), + [anon_sym_AT2] = ACTIONS(1), + [anon_sym_STAR2] = ACTIONS(1), + [anon_sym_POUND2] = ACTIONS(1), + [anon_sym_EQ2] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_DASH3] = ACTIONS(1), + [anon_sym_COLON_DASH] = ACTIONS(1), + [anon_sym_PLUS3] = ACTIONS(1), + [anon_sym_COLON_PLUS] = ACTIONS(1), + [anon_sym_QMARK2] = ACTIONS(1), + [anon_sym_COLON_QMARK] = 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_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_DOLLAR_LPAREN] = ACTIONS(1), + [anon_sym_BQUOTE] = ACTIONS(1), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1), + [anon_sym_LT_LPAREN] = ACTIONS(1), + [anon_sym_GT_LPAREN] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym_comment_word] = ACTIONS(1), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1), + [sym_semgrep_named_ellipsis] = ACTIONS(1), + [sym_semgrep_metavariable] = ACTIONS(1), + [sym_semgrep_metavar_eq] = ACTIONS(1), + [sym_semgrep_metavar_pluseq] = ACTIONS(1), + [sym_heredoc_start] = ACTIONS(1), + [sym_simple_heredoc_body_] = ACTIONS(1), + [sym_heredoc_body_beginning] = ACTIONS(1), + [sym_heredoc_content] = 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_test_operator] = ACTIONS(1), + [sym_regex] = ACTIONS(1), + [sym_regex_no_slash] = ACTIONS(1), + [sym_regex_no_space] = ACTIONS(1), + [sym_expansion_word] = ACTIONS(1), + [sym_extglob_pattern] = ACTIONS(1), + [sym_bare_dollar] = ACTIONS(1), + [sym_brace_start] = ACTIONS(1), + [sym_immediate_double_hash] = ACTIONS(1), + [sym_external_expansion_sym_hash] = ACTIONS(1), + [sym_external_expansion_sym_bang] = ACTIONS(1), + [sym_external_expansion_sym_equal] = ACTIONS(1), + [sym_error_recovery] = ACTIONS(1), + }, + [STATE(1)] = { + [sym_program] = STATE(5543), + [sym_statements] = STATE(5548), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(2)] = { + [sym_statements] = STATE(6037), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_expression] = STATE(2317), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(414), + [sym_brace_expression] = STATE(414), + [sym_concatenation] = STATE(440), + [sym_string] = STATE(414), + [sym_translated_string] = STATE(414), + [sym_number] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [sym_semgrep_deep_expression] = STATE(414), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(438), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(85), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(87), + [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(89), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_PLUS_PLUS2] = ACTIONS(91), + [anon_sym_DASH_DASH2] = ACTIONS(91), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym_special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [aux_sym_number_token1] = ACTIONS(109), + [aux_sym_number_token2] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), + [anon_sym_BQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(119), + [anon_sym_LT_LPAREN] = ACTIONS(121), + [anon_sym_GT_LPAREN] = ACTIONS(121), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(123), + [sym_semgrep_named_ellipsis] = ACTIONS(125), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(127), + [sym_brace_start] = ACTIONS(129), + }, + [STATE(3)] = { + [sym_statements] = STATE(5521), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_expression] = STATE(2199), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(414), + [sym_brace_expression] = STATE(414), + [sym_concatenation] = STATE(440), + [sym_string] = STATE(414), + [sym_translated_string] = STATE(414), + [sym_number] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [sym_semgrep_deep_expression] = STATE(414), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(438), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(85), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(87), + [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(89), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_PLUS_PLUS2] = ACTIONS(91), + [anon_sym_DASH_DASH2] = ACTIONS(91), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym_special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [aux_sym_number_token1] = ACTIONS(109), + [aux_sym_number_token2] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), + [anon_sym_BQUOTE] = ACTIONS(117), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(119), + [anon_sym_LT_LPAREN] = ACTIONS(121), + [anon_sym_GT_LPAREN] = ACTIONS(121), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(123), + [sym_semgrep_named_ellipsis] = ACTIONS(125), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(127), + [sym_brace_start] = ACTIONS(129), + }, + [STATE(4)] = { + [sym_statements] = STATE(5525), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_expression] = STATE(2199), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(414), + [sym_brace_expression] = STATE(414), + [sym_concatenation] = STATE(440), + [sym_string] = STATE(414), + [sym_translated_string] = STATE(414), + [sym_number] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [sym_semgrep_deep_expression] = STATE(414), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(438), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(85), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(87), + [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(89), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_PLUS_PLUS2] = ACTIONS(91), + [anon_sym_DASH_DASH2] = ACTIONS(91), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym_special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [aux_sym_number_token1] = ACTIONS(109), + [aux_sym_number_token2] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(119), + [anon_sym_LT_LPAREN] = ACTIONS(121), + [anon_sym_GT_LPAREN] = ACTIONS(121), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(123), + [sym_semgrep_named_ellipsis] = ACTIONS(125), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(127), + [sym_brace_start] = ACTIONS(129), + }, + [STATE(5)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4006), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2190), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(159), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(6)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4029), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2192), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(217), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(7)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4056), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2233), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(219), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(8)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4038), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2254), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(9)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4025), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2215), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(223), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(10)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4017), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2247), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(11)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4052), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2241), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(227), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(12)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4007), + [sym_for_statement] = STATE(4129), + [sym_c_style_for_statement] = STATE(4129), + [sym_while_statement] = STATE(3945), + [sym_if_statement] = STATE(3945), + [sym_case_statement] = STATE(4129), + [sym_function_definition] = STATE(4129), + [sym_compound_statement] = STATE(4129), + [sym_subshell] = STATE(4129), + [sym_pipeline] = STATE(4195), + [sym_list] = STATE(4129), + [sym_negated_command] = STATE(4129), + [sym_test_command] = STATE(4129), + [sym_declaration_command] = STATE(4129), + [sym_unset_command] = STATE(4129), + [sym_command] = STATE(4129), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1220), + [sym_variable_assignments] = STATE(4129), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1756), + [sym_herestring_redirect] = STATE(1759), + [sym_expression] = STATE(2262), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_redirected_statement_repeat2] = STATE(3936), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(131), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(139), + [anon_sym_GT] = ACTIONS(139), + [anon_sym_GT_GT] = ACTIONS(141), + [anon_sym_LPAREN] = ACTIONS(143), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(155), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(139), + [anon_sym_AMP_GT_GT] = ACTIONS(141), + [anon_sym_LT_AMP] = ACTIONS(139), + [anon_sym_GT_AMP] = ACTIONS(139), + [anon_sym_GT_PIPE] = ACTIONS(141), + [anon_sym_LT_AMP_DASH] = ACTIONS(167), + [anon_sym_GT_AMP_DASH] = ACTIONS(167), + [anon_sym_LT_LT_LT] = ACTIONS(169), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(209), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(13)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4855), + [sym_else_clause] = STATE(5491), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(14), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4855), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(231), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(14)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4783), + [sym_else_clause] = STATE(5747), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4783), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(237), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(15)] = { + [sym_expression] = STATE(2210), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(1771), + [sym_brace_expression] = STATE(1771), + [sym_concatenation] = STATE(1974), + [sym_string] = STATE(1771), + [sym_translated_string] = STATE(1771), + [sym_number] = STATE(1771), + [sym_simple_expansion] = STATE(1771), + [sym_expansion] = STATE(1771), + [sym_command_substitution] = STATE(1771), + [sym_process_substitution] = STATE(1771), + [sym_semgrep_deep_expression] = STATE(1771), + [aux_sym_for_statement_repeat1] = STATE(1881), + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_word] = ACTIONS(239), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [aux_sym_statements_token1] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(246), + [anon_sym_GT_GT_EQ] = ACTIONS(246), + [anon_sym_AMP_EQ] = ACTIONS(246), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(246), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(246), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(248), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(252), + [anon_sym_DASH_DASH2] = ACTIONS(252), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(93), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(256), + [aux_sym_concatenation_token1] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(260), + [sym_special_character] = ACTIONS(262), + [anon_sym_DQUOTE] = ACTIONS(264), + [sym_raw_string] = ACTIONS(239), + [sym_ansi_c_string] = ACTIONS(239), + [aux_sym_number_token1] = ACTIONS(266), + [aux_sym_number_token2] = ACTIONS(268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(276), + [anon_sym_LT_LPAREN] = ACTIONS(278), + [anon_sym_GT_LPAREN] = ACTIONS(278), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(280), + [sym_semgrep_named_ellipsis] = ACTIONS(282), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(286), + [sym_test_operator] = ACTIONS(288), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(290), + }, + [STATE(16)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4819), + [sym_else_clause] = STATE(5571), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4819), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(292), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(17)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4818), + [sym_else_clause] = STATE(5753), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(20), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4818), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(294), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(18)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4793), + [sym_else_clause] = STATE(5556), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4793), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(296), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(19)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4833), + [sym_else_clause] = STATE(5460), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(18), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4833), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(298), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(20)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4798), + [sym_else_clause] = STATE(5516), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4798), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(300), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(21)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_elif_clause] = STATE(4769), + [sym_else_clause] = STATE(5446), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(16), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_if_statement_repeat1] = STATE(4769), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(302), + [anon_sym_elif] = ACTIONS(233), + [anon_sym_else] = ACTIONS(235), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(22)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(304), + [anon_sym_for] = ACTIONS(307), + [anon_sym_select] = ACTIONS(310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_while] = ACTIONS(325), + [anon_sym_until] = ACTIONS(325), + [anon_sym_do] = ACTIONS(328), + [anon_sym_if] = ACTIONS(330), + [anon_sym_then] = ACTIONS(328), + [anon_sym_fi] = ACTIONS(328), + [anon_sym_elif] = ACTIONS(328), + [anon_sym_else] = ACTIONS(328), + [anon_sym_case] = ACTIONS(333), + [anon_sym_function] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(348), + [anon_sym_declare] = ACTIONS(351), + [anon_sym_typeset] = ACTIONS(351), + [anon_sym_export] = ACTIONS(351), + [anon_sym_readonly] = ACTIONS(351), + [anon_sym_local] = ACTIONS(351), + [anon_sym_unset] = ACTIONS(354), + [anon_sym_unsetenv] = ACTIONS(354), + [anon_sym_AMP_GT] = ACTIONS(316), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(316), + [anon_sym_GT_AMP] = ACTIONS(316), + [anon_sym_GT_PIPE] = ACTIONS(319), + [anon_sym_LT_AMP_DASH] = ACTIONS(357), + [anon_sym_GT_AMP_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_special_character] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(378), + [sym_ansi_c_string] = ACTIONS(378), + [aux_sym_number_token1] = ACTIONS(381), + [aux_sym_number_token2] = ACTIONS(384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(396), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(402), + [sym_semgrep_named_ellipsis] = ACTIONS(405), + [sym_semgrep_metavar_eq] = ACTIONS(408), + [sym_semgrep_metavar_pluseq] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(411), + [sym_variable_name] = ACTIONS(414), + [sym_test_operator] = ACTIONS(378), + [sym_brace_start] = ACTIONS(417), + }, + [STATE(23)] = { + [sym_statements] = STATE(5012), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(422), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(442), + [anon_sym_SEMI_AMP] = ACTIONS(444), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(444), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(24)] = { + [sym_statements] = STATE(5006), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(502), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(504), + [anon_sym_SEMI_AMP] = ACTIONS(506), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(508), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(25)] = { + [sym_statements] = STATE(5019), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(510), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(512), + [anon_sym_SEMI_AMP] = ACTIONS(514), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(514), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(26)] = { + [sym_statements] = STATE(5052), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(516), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(504), + [anon_sym_SEMI_AMP] = ACTIONS(518), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(520), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(27)] = { + [sym_statements] = STATE(4993), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(522), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(504), + [anon_sym_SEMI_AMP] = ACTIONS(524), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(526), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(28)] = { + [sym_statements] = STATE(5011), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(528), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(530), + [anon_sym_SEMI_AMP] = ACTIONS(532), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(534), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(29)] = { + [sym_statements] = STATE(5014), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(536), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(530), + [anon_sym_SEMI_AMP] = ACTIONS(538), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(540), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(30)] = { + [sym_statements] = STATE(5022), + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3306), + [sym_for_statement] = STATE(3306), + [sym_c_style_for_statement] = STATE(3306), + [sym_while_statement] = STATE(3176), + [sym_if_statement] = STATE(3176), + [sym_case_statement] = STATE(3306), + [sym_function_definition] = STATE(3306), + [sym_compound_statement] = STATE(3306), + [sym_subshell] = STATE(3306), + [sym_pipeline] = STATE(3616), + [sym_list] = STATE(3306), + [sym_negated_command] = STATE(3306), + [sym_test_command] = STATE(3306), + [sym_declaration_command] = STATE(3306), + [sym_unset_command] = STATE(3306), + [sym_command] = STATE(3306), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(611), + [sym_variable_assignments] = STATE(3306), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(384), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_SEMI_SEMI] = ACTIONS(542), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(530), + [anon_sym_SEMI_AMP] = ACTIONS(544), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(546), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), + }, + [STATE(31)] = { + [sym_statements] = STATE(5088), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(550), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(532), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(534), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(32)] = { + [sym_statements] = STATE(5221), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(506), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(508), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(33)] = { + [sym_statements] = STATE(5178), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(628), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(444), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(444), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(34)] = { + [sym_statements] = STATE(5241), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(630), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(514), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(514), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(35)] = { + [sym_statements] = STATE(5077), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(632), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(524), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(526), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(36)] = { + [sym_statements] = STATE(5072), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(634), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(518), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(520), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(37)] = { + [sym_statements] = STATE(5091), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(636), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(538), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(540), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(38)] = { + [sym_statements] = STATE(5093), + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3470), + [sym_for_statement] = STATE(3470), + [sym_c_style_for_statement] = STATE(3470), + [sym_while_statement] = STATE(3274), + [sym_if_statement] = STATE(3274), + [sym_case_statement] = STATE(3470), + [sym_function_definition] = STATE(3470), + [sym_compound_statement] = STATE(3470), + [sym_subshell] = STATE(3470), + [sym_pipeline] = STATE(3728), + [sym_list] = STATE(3470), + [sym_negated_command] = STATE(3470), + [sym_test_command] = STATE(3470), + [sym_declaration_command] = STATE(3470), + [sym_unset_command] = STATE(3470), + [sym_command] = STATE(3470), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(636), + [sym_variable_assignments] = STATE(3470), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(385), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_SEMI_SEMI] = ACTIONS(638), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_SEMI_AMP] = ACTIONS(544), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(546), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), + }, + [STATE(39)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(40), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(640), + [anon_sym_elif] = ACTIONS(640), + [anon_sym_else] = ACTIONS(640), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(40)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(642), + [anon_sym_elif] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(41)] = { + [sym_expression] = STATE(2316), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(1903), + [sym_brace_expression] = STATE(1903), + [sym_concatenation] = STATE(2197), + [sym_string] = STATE(1903), + [sym_translated_string] = STATE(1903), + [sym_number] = STATE(1903), + [sym_simple_expansion] = STATE(1903), + [sym_expansion] = STATE(1903), + [sym_command_substitution] = STATE(1903), + [sym_process_substitution] = STATE(1903), + [sym_semgrep_deep_expression] = STATE(1903), + [aux_sym_for_statement_repeat1] = STATE(1979), + [aux_sym_concatenation_repeat1] = STATE(442), + [sym_word] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(284), + [anon_sym_LT_AMP_DASH] = ACTIONS(284), + [anon_sym_GT_AMP_DASH] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_LT_LT_LT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(659), + [sym_test_operator] = ACTIONS(687), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(689), + }, + [STATE(42)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_do_group] = STATE(3617), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(691), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(43)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_do_group] = STATE(3561), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(693), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(44)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_do_group] = STATE(3704), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(695), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(45)] = { + [sym_statements] = STATE(5497), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(697), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(46)] = { + [sym_statements] = STATE(5497), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(699), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(47)] = { + [sym_statements] = STATE(5820), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(701), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(48)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_do_group] = STATE(4214), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_do] = ACTIONS(703), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(49)] = { + [sym_statements] = STATE(5580), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(705), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(50)] = { + [sym_statements] = STATE(5586), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_RPAREN] = ACTIONS(707), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(51)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(709), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(52)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(711), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(53)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(55), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(713), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(54)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_then] = ACTIONS(715), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(55)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_fi] = ACTIONS(717), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(56)] = { + [sym_statements] = STATE(5738), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1381), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(57)] = { + [sym_statements] = STATE(5801), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(58)] = { + [sym_statements] = STATE(5804), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(59)] = { + [sym_statements] = STATE(5810), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(60)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(62), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(729), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(61)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_then] = ACTIONS(731), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(62)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(733), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(63)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(304), + [anon_sym_for] = ACTIONS(307), + [anon_sym_select] = ACTIONS(310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_while] = ACTIONS(325), + [anon_sym_until] = ACTIONS(325), + [anon_sym_if] = ACTIONS(330), + [anon_sym_case] = ACTIONS(333), + [anon_sym_function] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_RBRACE] = ACTIONS(735), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(348), + [anon_sym_declare] = ACTIONS(351), + [anon_sym_typeset] = ACTIONS(351), + [anon_sym_export] = ACTIONS(351), + [anon_sym_readonly] = ACTIONS(351), + [anon_sym_local] = ACTIONS(351), + [anon_sym_unset] = ACTIONS(354), + [anon_sym_unsetenv] = ACTIONS(354), + [anon_sym_AMP_GT] = ACTIONS(316), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(316), + [anon_sym_GT_AMP] = ACTIONS(316), + [anon_sym_GT_PIPE] = ACTIONS(319), + [anon_sym_LT_AMP_DASH] = ACTIONS(357), + [anon_sym_GT_AMP_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_special_character] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(378), + [sym_ansi_c_string] = ACTIONS(378), + [aux_sym_number_token1] = ACTIONS(381), + [aux_sym_number_token2] = ACTIONS(384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(396), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(402), + [sym_semgrep_named_ellipsis] = ACTIONS(405), + [sym_semgrep_metavar_eq] = ACTIONS(408), + [sym_semgrep_metavar_pluseq] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(411), + [sym_variable_name] = ACTIONS(414), + [sym_test_operator] = ACTIONS(378), + [sym_brace_start] = ACTIONS(417), + }, + [STATE(64)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(304), + [anon_sym_for] = ACTIONS(307), + [anon_sym_select] = ACTIONS(310), + [anon_sym_LPAREN_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(316), + [anon_sym_GT] = ACTIONS(316), + [anon_sym_GT_GT] = ACTIONS(319), + [anon_sym_LPAREN] = ACTIONS(322), + [anon_sym_while] = ACTIONS(325), + [anon_sym_until] = ACTIONS(325), + [anon_sym_done] = ACTIONS(328), + [anon_sym_if] = ACTIONS(330), + [anon_sym_case] = ACTIONS(333), + [anon_sym_function] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(339), + [anon_sym_BANG] = ACTIONS(342), + [anon_sym_LBRACK] = ACTIONS(345), + [anon_sym_LBRACK_LBRACK] = ACTIONS(348), + [anon_sym_declare] = ACTIONS(351), + [anon_sym_typeset] = ACTIONS(351), + [anon_sym_export] = ACTIONS(351), + [anon_sym_readonly] = ACTIONS(351), + [anon_sym_local] = ACTIONS(351), + [anon_sym_unset] = ACTIONS(354), + [anon_sym_unsetenv] = ACTIONS(354), + [anon_sym_AMP_GT] = ACTIONS(316), + [anon_sym_AMP_GT_GT] = ACTIONS(319), + [anon_sym_LT_AMP] = ACTIONS(316), + [anon_sym_GT_AMP] = ACTIONS(316), + [anon_sym_GT_PIPE] = ACTIONS(319), + [anon_sym_LT_AMP_DASH] = ACTIONS(357), + [anon_sym_GT_AMP_DASH] = ACTIONS(357), + [anon_sym_LT_LT_LT] = ACTIONS(360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(363), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym_special_character] = ACTIONS(372), + [anon_sym_DQUOTE] = ACTIONS(375), + [sym_raw_string] = ACTIONS(378), + [sym_ansi_c_string] = ACTIONS(378), + [aux_sym_number_token1] = ACTIONS(381), + [aux_sym_number_token2] = ACTIONS(384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(387), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(390), + [anon_sym_BQUOTE] = ACTIONS(393), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(396), + [anon_sym_LT_LPAREN] = ACTIONS(399), + [anon_sym_GT_LPAREN] = ACTIONS(399), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(402), + [sym_semgrep_named_ellipsis] = ACTIONS(405), + [sym_semgrep_metavar_eq] = ACTIONS(408), + [sym_semgrep_metavar_pluseq] = ACTIONS(408), + [sym_file_descriptor] = ACTIONS(411), + [sym_variable_name] = ACTIONS(414), + [sym_test_operator] = ACTIONS(378), + [sym_brace_start] = ACTIONS(417), + }, + [STATE(65)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(66), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(737), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(66)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(739), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(67)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(68), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(741), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(68)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(743), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(69)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(70), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(745), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(70)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(747), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(71)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(72), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(749), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(72)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(751), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(73)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(74), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(753), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(74)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(755), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(75)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(76), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(757), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(76)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(759), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(77)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(78), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(761), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(78)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(763), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(79)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(80), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(765), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(80)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(767), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(81)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(82), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(769), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(82)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(771), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(83)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(84), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(773), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(84)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(775), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(85)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(86), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(777), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(86)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(779), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(87)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(88), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(781), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(88)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(783), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(89)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(90), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(785), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(90)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(63), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(787), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(91)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(92), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(789), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(92)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(64), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(791), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(93)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3699), + [sym_for_statement] = STATE(3699), + [sym_c_style_for_statement] = STATE(3699), + [sym_while_statement] = STATE(3517), + [sym_if_statement] = STATE(3517), + [sym_case_statement] = STATE(3699), + [sym_function_definition] = STATE(3699), + [sym_compound_statement] = STATE(3699), + [sym_subshell] = STATE(3699), + [sym_pipeline] = STATE(3982), + [sym_list] = STATE(3699), + [sym_negated_command] = STATE(3699), + [sym_test_command] = STATE(3699), + [sym_declaration_command] = STATE(3699), + [sym_unset_command] = STATE(3699), + [sym_command] = STATE(3699), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(674), + [sym_variable_assignments] = STATE(3699), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(51), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_RBRACE] = ACTIONS(793), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(94)] = { + [sym_statements] = STATE(5521), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(95)] = { + [sym_statements] = STATE(6037), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(96)] = { + [sym_statements] = STATE(5420), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1297), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(97)] = { + [sym_statements] = STATE(5480), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(98)] = { + [sym_statements] = STATE(5545), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(99)] = { + [sym_statements] = STATE(5728), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(100)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_then] = ACTIONS(795), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(101)] = { + [sym_statements] = STATE(5497), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(102)] = { + [sym_statements] = STATE(5856), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1300), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(103)] = { + [sym_statements] = STATE(5939), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(104)] = { + [sym_statements] = STATE(5961), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(105)] = { + [sym_statements] = STATE(5966), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(106)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_then] = ACTIONS(797), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(107)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3712), + [sym_for_statement] = STATE(3712), + [sym_c_style_for_statement] = STATE(3712), + [sym_while_statement] = STATE(3456), + [sym_if_statement] = STATE(3456), + [sym_case_statement] = STATE(3712), + [sym_function_definition] = STATE(3712), + [sym_compound_statement] = STATE(3712), + [sym_subshell] = STATE(3712), + [sym_pipeline] = STATE(3954), + [sym_list] = STATE(3712), + [sym_negated_command] = STATE(3712), + [sym_test_command] = STATE(3712), + [sym_declaration_command] = STATE(3712), + [sym_unset_command] = STATE(3712), + [sym_command] = STATE(3712), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(704), + [sym_variable_assignments] = STATE(3712), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(52), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN] = ACTIONS(19), + [anon_sym_while] = ACTIONS(21), + [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(799), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(108)] = { + [sym_statements] = STATE(5820), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(109)] = { + [sym_statements] = STATE(5549), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1302), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(110)] = { + [sym_statements] = STATE(5708), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(111)] = { + [sym_statements] = STATE(5711), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(112)] = { + [sym_statements] = STATE(5717), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(113)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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_then] = ACTIONS(801), + [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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(114)] = { + [sym_statements] = STATE(5836), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(115)] = { + [sym_statements] = STATE(5408), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1304), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(116)] = { + [sym_statements] = STATE(5597), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(117)] = { + [sym_statements] = STATE(5634), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(118)] = { + [sym_statements] = STATE(5722), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(119)] = { + [sym_statements] = STATE(5817), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(120)] = { + [sym_statements] = STATE(5353), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1306), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(121)] = { + [sym_statements] = STATE(5356), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(122)] = { + [sym_statements] = STATE(5357), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(123)] = { + [sym_statements] = STATE(5358), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(124)] = { + [sym_statements] = STATE(5580), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(125)] = { + [sym_statements] = STATE(5644), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1309), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(126)] = { + [sym_statements] = STATE(5647), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(127)] = { + [sym_statements] = STATE(5649), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(128)] = { + [sym_statements] = STATE(5650), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(129)] = { + [sym_statements] = STATE(5586), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(130)] = { + [sym_statements] = STATE(5874), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1311), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(131)] = { + [sym_statements] = STATE(5879), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(132)] = { + [sym_statements] = STATE(5883), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(133)] = { + [sym_statements] = STATE(5901), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(134)] = { + [sym_statements] = STATE(5637), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1312), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(135)] = { + [sym_statements] = STATE(5784), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(136)] = { + [sym_statements] = STATE(5811), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(137)] = { + [sym_statements] = STATE(5932), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(138)] = { + [sym_statements] = STATE(5547), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1313), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(139)] = { + [sym_statements] = STATE(5559), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(140)] = { + [sym_statements] = STATE(5601), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(141)] = { + [sym_statements] = STATE(5604), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(142)] = { + [sym_statements] = STATE(5841), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1314), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(143)] = { + [sym_statements] = STATE(5850), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(144)] = { + [sym_statements] = STATE(5922), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(145)] = { + [sym_statements] = STATE(5926), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(146)] = { + [sym_statements] = STATE(5382), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1315), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(147)] = { + [sym_statements] = STATE(5385), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(148)] = { + [sym_statements] = STATE(5386), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(149)] = { + [sym_statements] = STATE(5388), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(150)] = { + [sym_statements] = STATE(5483), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1316), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(151)] = { + [sym_statements] = STATE(5487), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(152)] = { + [sym_statements] = STATE(5490), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(153)] = { + [sym_statements] = STATE(5503), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(154)] = { + [sym_statements] = STATE(5579), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1317), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(155)] = { + [sym_statements] = STATE(5583), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(156)] = { + [sym_statements] = STATE(5584), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(157)] = { + [sym_statements] = STATE(5588), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(158)] = { + [sym_statements] = STATE(5673), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1318), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(159)] = { + [sym_statements] = STATE(5677), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(160)] = { + [sym_statements] = STATE(5680), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(161)] = { + [sym_statements] = STATE(5681), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(162)] = { + [sym_statements] = STATE(5755), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1319), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(163)] = { + [sym_statements] = STATE(5759), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(164)] = { + [sym_statements] = STATE(5760), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(165)] = { + [sym_statements] = STATE(5761), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(166)] = { + [sym_statements] = STATE(5823), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1320), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(167)] = { + [sym_statements] = STATE(5825), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(168)] = { + [sym_statements] = STATE(5826), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(169)] = { + [sym_statements] = STATE(5827), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(170)] = { + [sym_statements] = STATE(5907), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1321), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(171)] = { + [sym_statements] = STATE(5910), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(172)] = { + [sym_statements] = STATE(5911), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(173)] = { + [sym_statements] = STATE(5912), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(174)] = { + [sym_statements] = STATE(5979), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1322), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(175)] = { + [sym_statements] = STATE(5380), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(176)] = { + [sym_statements] = STATE(5865), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(177)] = { + [sym_statements] = STATE(5623), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(178)] = { + [sym_statements] = STATE(5931), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1323), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(179)] = { + [sym_statements] = STATE(5404), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(180)] = { + [sym_statements] = STATE(5433), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(181)] = { + [sym_statements] = STATE(5439), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(182)] = { + [sym_statements] = STATE(5797), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1324), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(183)] = { + [sym_statements] = STATE(5819), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(184)] = { + [sym_statements] = STATE(5837), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(185)] = { + [sym_statements] = STATE(5843), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(186)] = { + [sym_statements] = STATE(5394), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1325), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(187)] = { + [sym_statements] = STATE(5396), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(188)] = { + [sym_statements] = STATE(5398), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(189)] = { + [sym_statements] = STATE(5399), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(190)] = { + [sym_statements] = STATE(5496), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1326), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(191)] = { + [sym_statements] = STATE(5499), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(192)] = { + [sym_statements] = STATE(5501), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(193)] = { + [sym_statements] = STATE(5502), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(194)] = { + [sym_statements] = STATE(5554), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1327), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(195)] = { + [sym_statements] = STATE(5567), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(196)] = { + [sym_statements] = STATE(5569), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(197)] = { + [sym_statements] = STATE(5570), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(198)] = { + [sym_statements] = STATE(5664), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1328), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(199)] = { + [sym_statements] = STATE(5666), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(200)] = { + [sym_statements] = STATE(5668), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(201)] = { + [sym_statements] = STATE(5671), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(202)] = { + [sym_statements] = STATE(5757), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1329), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(203)] = { + [sym_statements] = STATE(5775), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(204)] = { + [sym_statements] = STATE(5780), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(205)] = { + [sym_statements] = STATE(5783), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(206)] = { + [sym_statements] = STATE(5876), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1330), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(207)] = { + [sym_statements] = STATE(5897), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(208)] = { + [sym_statements] = STATE(5899), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(209)] = { + [sym_statements] = STATE(5903), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(210)] = { + [sym_statements] = STATE(5951), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1331), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(211)] = { + [sym_statements] = STATE(5960), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(212)] = { + [sym_statements] = STATE(5963), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(213)] = { + [sym_statements] = STATE(5964), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(214)] = { + [sym_statements] = STATE(5360), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1332), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(215)] = { + [sym_statements] = STATE(5363), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(216)] = { + [sym_statements] = STATE(5364), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(217)] = { + [sym_statements] = STATE(5365), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(218)] = { + [sym_statements] = STATE(5393), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1333), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(219)] = { + [sym_statements] = STATE(5397), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(220)] = { + [sym_statements] = STATE(5400), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(221)] = { + [sym_statements] = STATE(5402), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(222)] = { + [sym_statements] = STATE(5431), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1334), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(223)] = { + [sym_statements] = STATE(5435), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(224)] = { + [sym_statements] = STATE(5436), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(225)] = { + [sym_statements] = STATE(5437), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(226)] = { + [sym_statements] = STATE(5462), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1335), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(227)] = { + [sym_statements] = STATE(5464), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(228)] = { + [sym_statements] = STATE(5465), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(229)] = { + [sym_statements] = STATE(5466), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(230)] = { + [sym_statements] = STATE(5489), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1336), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(231)] = { + [sym_statements] = STATE(5882), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(232)] = { + [sym_statements] = STATE(5494), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(233)] = { + [sym_statements] = STATE(5495), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(234)] = { + [sym_statements] = STATE(5524), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1337), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(235)] = { + [sym_statements] = STATE(5526), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(236)] = { + [sym_statements] = STATE(5527), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(237)] = { + [sym_statements] = STATE(5528), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(238)] = { + [sym_statements] = STATE(5561), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1338), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(239)] = { + [sym_statements] = STATE(5563), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(240)] = { + [sym_statements] = STATE(5564), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(241)] = { + [sym_statements] = STATE(5565), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(242)] = { + [sym_statements] = STATE(5592), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1339), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(243)] = { + [sym_statements] = STATE(5594), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(244)] = { + [sym_statements] = STATE(5599), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(245)] = { + [sym_statements] = STATE(5600), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(246)] = { + [sym_statements] = STATE(5625), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1340), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(247)] = { + [sym_statements] = STATE(5628), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(248)] = { + [sym_statements] = STATE(5629), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(249)] = { + [sym_statements] = STATE(5631), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(250)] = { + [sym_statements] = STATE(5656), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1341), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(251)] = { + [sym_statements] = STATE(5658), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(252)] = { + [sym_statements] = STATE(5659), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(253)] = { + [sym_statements] = STATE(5660), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(254)] = { + [sym_statements] = STATE(5685), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1342), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(255)] = { + [sym_statements] = STATE(5689), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(256)] = { + [sym_statements] = STATE(5690), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(257)] = { + [sym_statements] = STATE(5692), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(258)] = { + [sym_statements] = STATE(5715), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1343), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(259)] = { + [sym_statements] = STATE(5719), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(260)] = { + [sym_statements] = STATE(5720), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(261)] = { + [sym_statements] = STATE(5721), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(262)] = { + [sym_statements] = STATE(5744), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1344), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(263)] = { + [sym_statements] = STATE(5746), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(264)] = { + [sym_statements] = STATE(5748), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(265)] = { + [sym_statements] = STATE(5749), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(266)] = { + [sym_statements] = STATE(5773), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1345), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(267)] = { + [sym_statements] = STATE(5777), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(268)] = { + [sym_statements] = STATE(5778), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(269)] = { + [sym_statements] = STATE(5779), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(270)] = { + [sym_statements] = STATE(5803), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1346), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(271)] = { + [sym_statements] = STATE(5807), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(272)] = { + [sym_statements] = STATE(5808), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(273)] = { + [sym_statements] = STATE(5809), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(274)] = { + [sym_statements] = STATE(5831), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1347), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(275)] = { + [sym_statements] = STATE(5833), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(276)] = { + [sym_statements] = STATE(5834), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(277)] = { + [sym_statements] = STATE(5835), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(278)] = { + [sym_statements] = STATE(5858), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1348), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(279)] = { + [sym_statements] = STATE(5860), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(280)] = { + [sym_statements] = STATE(5861), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(281)] = { + [sym_statements] = STATE(5864), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(282)] = { + [sym_statements] = STATE(5887), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1349), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(283)] = { + [sym_statements] = STATE(5890), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(284)] = { + [sym_statements] = STATE(5891), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(285)] = { + [sym_statements] = STATE(5896), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(286)] = { + [sym_statements] = STATE(5917), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1350), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(287)] = { + [sym_statements] = STATE(5919), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(288)] = { + [sym_statements] = STATE(5920), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(289)] = { + [sym_statements] = STATE(5921), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(290)] = { + [sym_statements] = STATE(5945), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1351), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(291)] = { + [sym_statements] = STATE(5947), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(292)] = { + [sym_statements] = STATE(5948), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(293)] = { + [sym_statements] = STATE(5949), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(294)] = { + [sym_statements] = STATE(5611), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1352), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(295)] = { + [sym_statements] = STATE(5895), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(296)] = { + [sym_statements] = STATE(5351), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(297)] = { + [sym_statements] = STATE(5379), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(298)] = { + [sym_statements] = STATE(5463), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1353), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(299)] = { + [sym_statements] = STATE(5519), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(300)] = { + [sym_statements] = STATE(5532), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(301)] = { + [sym_statements] = STATE(5533), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(302)] = { + [sym_statements] = STATE(5974), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1354), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(303)] = { + [sym_statements] = STATE(5341), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(304)] = { + [sym_statements] = STATE(5345), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(305)] = { + [sym_statements] = STATE(5348), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(306)] = { + [sym_statements] = STATE(5485), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1355), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(307)] = { + [sym_statements] = STATE(5505), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(308)] = { + [sym_statements] = STATE(5512), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(309)] = { + [sym_statements] = STATE(5517), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(310)] = { + [sym_statements] = STATE(5675), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1356), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(311)] = { + [sym_statements] = STATE(5693), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(312)] = { + [sym_statements] = STATE(5696), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(313)] = { + [sym_statements] = STATE(5712), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(314)] = { + [sym_statements] = STATE(5905), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1430), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(315)] = { + [sym_statements] = STATE(5909), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(316)] = { + [sym_statements] = STATE(5914), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(317)] = { + [sym_statements] = STATE(5918), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(318)] = { + [sym_statements] = STATE(5354), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1358), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(319)] = { + [sym_statements] = STATE(5361), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(320)] = { + [sym_statements] = STATE(5366), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(321)] = { + [sym_statements] = STATE(5368), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(322)] = { + [sym_statements] = STATE(5413), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1359), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(323)] = { + [sym_statements] = STATE(5422), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(324)] = { + [sym_statements] = STATE(5423), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(325)] = { + [sym_statements] = STATE(5427), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(326)] = { + [sym_statements] = STATE(5468), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1360), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(327)] = { + [sym_statements] = STATE(5472), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(328)] = { + [sym_statements] = STATE(5473), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(329)] = { + [sym_statements] = STATE(5474), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(330)] = { + [sym_statements] = STATE(5511), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1361), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(331)] = { + [sym_statements] = STATE(5513), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(332)] = { + [sym_statements] = STATE(5515), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(333)] = { + [sym_statements] = STATE(5536), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1362), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(334)] = { + [sym_statements] = STATE(5538), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(335)] = { + [sym_statements] = STATE(5539), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(336)] = { + [sym_statements] = STATE(5553), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1363), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(337)] = { + [sym_statements] = STATE(5555), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(338)] = { + [sym_statements] = STATE(5557), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(339)] = { + [sym_statements] = STATE(5585), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1364), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(340)] = { + [sym_statements] = STATE(5589), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(341)] = { + [sym_statements] = STATE(5595), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(342)] = { + [sym_statements] = STATE(5610), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1365), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(343)] = { + [sym_statements] = STATE(5612), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(344)] = { + [sym_statements] = STATE(5615), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(345)] = { + [sym_statements] = STATE(5652), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1366), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(346)] = { + [sym_statements] = STATE(5657), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(347)] = { + [sym_statements] = STATE(5661), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(348)] = { + [sym_statements] = STATE(5674), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1367), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(349)] = { + [sym_statements] = STATE(5679), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(350)] = { + [sym_statements] = STATE(5682), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(351)] = { + [sym_statements] = STATE(5700), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1368), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(352)] = { + [sym_statements] = STATE(5705), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(353)] = { + [sym_statements] = STATE(5707), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(354)] = { + [sym_statements] = STATE(5727), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1369), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(355)] = { + [sym_statements] = STATE(5731), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(356)] = { + [sym_statements] = STATE(5739), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(357)] = { + [sym_statements] = STATE(5764), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1370), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(358)] = { + [sym_statements] = STATE(5767), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(359)] = { + [sym_statements] = STATE(5772), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(360)] = { + [sym_statements] = STATE(5789), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1371), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(361)] = { + [sym_statements] = STATE(5793), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(362)] = { + [sym_statements] = STATE(5795), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(363)] = { + [sym_statements] = STATE(5816), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1372), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(364)] = { + [sym_statements] = STATE(5824), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(365)] = { + [sym_statements] = STATE(5828), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(366)] = { + [sym_statements] = STATE(5847), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1373), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(367)] = { + [sym_statements] = STATE(5851), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(368)] = { + [sym_statements] = STATE(5852), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), + }, + [STATE(369)] = { + [sym_statements] = STATE(5859), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1374), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [62] = { - [sym_statements] = STATE(3821), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(370)] = { + [sym_statements] = STATE(5867), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [63] = { - [sym_statements] = STATE(3711), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(371)] = { + [sym_statements] = STATE(5868), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [64] = { - [sym_statements] = STATE(3763), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1886), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(372)] = { + [sym_statements] = STATE(5872), + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3396), + [sym_for_statement] = STATE(3396), + [sym_c_style_for_statement] = STATE(3396), + [sym_while_statement] = STATE(3250), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3396), + [sym_function_definition] = STATE(3396), + [sym_compound_statement] = STATE(3396), + [sym_subshell] = STATE(3396), + [sym_pipeline] = STATE(3724), + [sym_list] = STATE(3396), + [sym_negated_command] = STATE(3396), + [sym_test_command] = STATE(3396), + [sym_declaration_command] = STATE(3396), + [sym_unset_command] = STATE(3396), + [sym_command] = STATE(3396), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(633), + [sym_variable_assignments] = STATE(3396), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1375), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(378), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [65] = { - [sym_statements] = STATE(3768), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(373)] = { + [sym_statements] = STATE(5880), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [66] = { - [sym_statements] = STATE(3769), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(374)] = { + [sym_statements] = STATE(5493), + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3673), + [sym_for_statement] = STATE(3673), + [sym_c_style_for_statement] = STATE(3673), + [sym_while_statement] = STATE(3353), + [sym_if_statement] = STATE(3353), + [sym_case_statement] = STATE(3673), + [sym_function_definition] = STATE(3673), + [sym_compound_statement] = STATE(3673), + [sym_subshell] = STATE(3673), + [sym_pipeline] = STATE(3915), + [sym_list] = STATE(3673), + [sym_negated_command] = STATE(3673), + [sym_test_command] = STATE(3673), + [sym_declaration_command] = STATE(3673), + [sym_unset_command] = STATE(3673), + [sym_command] = STATE(3673), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(727), + [sym_variable_assignments] = STATE(3673), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(380), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [67] = { - [sym_statements] = STATE(3630), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1901), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(375)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(44), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [68] = { - [sym_statements] = STATE(3652), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(376)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(106), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [69] = { - [sym_statements] = STATE(3660), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(377)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(54), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [70] = { - [sym_statements] = STATE(3753), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1915), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(378)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3462), + [sym_for_statement] = STATE(3462), + [sym_c_style_for_statement] = STATE(3462), + [sym_while_statement] = STATE(3270), + [sym_if_statement] = STATE(3270), + [sym_case_statement] = STATE(3462), + [sym_function_definition] = STATE(3462), + [sym_compound_statement] = STATE(3462), + [sym_subshell] = STATE(3462), + [sym_pipeline] = STATE(3736), + [sym_list] = STATE(3462), + [sym_negated_command] = STATE(3462), + [sym_test_command] = STATE(3462), + [sym_declaration_command] = STATE(3462), + [sym_unset_command] = STATE(3462), + [sym_command] = STATE(3462), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(640), + [sym_variable_assignments] = STATE(3462), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [71] = { - [sym_statements] = STATE(3633), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(379)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(61), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [72] = { - [sym_statements] = STATE(3775), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(380)] = { + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3627), + [sym_for_statement] = STATE(3627), + [sym_c_style_for_statement] = STATE(3627), + [sym_while_statement] = STATE(3308), + [sym_if_statement] = STATE(3308), + [sym_case_statement] = STATE(3627), + [sym_function_definition] = STATE(3627), + [sym_compound_statement] = STATE(3627), + [sym_subshell] = STATE(3627), + [sym_pipeline] = STATE(3850), + [sym_list] = STATE(3627), + [sym_negated_command] = STATE(3627), + [sym_test_command] = STATE(3627), + [sym_declaration_command] = STATE(3627), + [sym_unset_command] = STATE(3627), + [sym_command] = STATE(3627), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(697), + [sym_variable_assignments] = STATE(3627), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [73] = { - [sym_statements] = STATE(3638), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1893), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(381)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(48), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [74] = { - [sym_statements] = STATE(3645), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(382)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(43), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [75] = { - [sym_statements] = STATE(3661), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(383)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(42), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [76] = { - [sym_statements] = STATE(3785), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1920), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(384)] = { + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3291), + [sym_for_statement] = STATE(3291), + [sym_c_style_for_statement] = STATE(3291), + [sym_while_statement] = STATE(3191), + [sym_if_statement] = STATE(3191), + [sym_case_statement] = STATE(3291), + [sym_function_definition] = STATE(3291), + [sym_compound_statement] = STATE(3291), + [sym_subshell] = STATE(3291), + [sym_pipeline] = STATE(3546), + [sym_list] = STATE(3291), + [sym_negated_command] = STATE(3291), + [sym_test_command] = STATE(3291), + [sym_declaration_command] = STATE(3291), + [sym_unset_command] = STATE(3291), + [sym_command] = STATE(3291), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(610), + [sym_variable_assignments] = STATE(3291), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), }, - [77] = { - [sym_statements] = STATE(3636), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(385)] = { + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3474), + [sym_for_statement] = STATE(3474), + [sym_c_style_for_statement] = STATE(3474), + [sym_while_statement] = STATE(3265), + [sym_if_statement] = STATE(3265), + [sym_case_statement] = STATE(3474), + [sym_function_definition] = STATE(3474), + [sym_compound_statement] = STATE(3474), + [sym_subshell] = STATE(3474), + [sym_pipeline] = STATE(3697), + [sym_list] = STATE(3474), + [sym_negated_command] = STATE(3474), + [sym_test_command] = STATE(3474), + [sym_declaration_command] = STATE(3474), + [sym_unset_command] = STATE(3474), + [sym_command] = STATE(3474), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(627), + [sym_variable_assignments] = STATE(3474), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_statements_repeat1] = STATE(22), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), }, - [78] = { - [sym_statements] = STATE(3625), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(386)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(113), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [79] = { - [sym_statements] = STATE(3648), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1884), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(387)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3723), + [sym_for_statement] = STATE(3723), + [sym_c_style_for_statement] = STATE(3723), + [sym_while_statement] = STATE(3515), + [sym_if_statement] = STATE(3515), + [sym_case_statement] = STATE(3723), + [sym_function_definition] = STATE(3723), + [sym_compound_statement] = STATE(3723), + [sym_subshell] = STATE(3723), + [sym_pipeline] = STATE(3932), + [sym_list] = STATE(3723), + [sym_negated_command] = STATE(3723), + [sym_test_command] = STATE(3723), + [sym_declaration_command] = STATE(3723), + [sym_unset_command] = STATE(3723), + [sym_command] = STATE(3723), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(689), + [sym_variable_assignments] = STATE(3723), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_statements_repeat1] = STATE(100), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [80] = { - [sym_statements] = STATE(3666), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(388)] = { + [sym_statement_not_pipeline] = STATE(3709), + [sym_redirected_statement] = STATE(3451), + [sym_for_statement] = STATE(3451), + [sym_c_style_for_statement] = STATE(3451), + [sym_while_statement] = STATE(3243), + [sym_if_statement] = STATE(3243), + [sym_case_statement] = STATE(3451), + [sym_function_definition] = STATE(3451), + [sym_compound_statement] = STATE(3451), + [sym_subshell] = STATE(3451), + [sym_pipeline] = STATE(4174), + [sym_list] = STATE(3451), + [sym_negated_command] = STATE(3451), + [sym_test_command] = STATE(3451), + [sym_declaration_command] = STATE(3451), + [sym_unset_command] = STATE(3451), + [sym_command] = STATE(3451), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(642), + [sym_variable_assignments] = STATE(3451), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), }, - [81] = { - [sym_statements] = STATE(3669), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(389)] = { + [sym_statement_not_pipeline] = STATE(3647), + [sym_redirected_statement] = STATE(3529), + [sym_for_statement] = STATE(3529), + [sym_c_style_for_statement] = STATE(3529), + [sym_while_statement] = STATE(3344), + [sym_if_statement] = STATE(3344), + [sym_case_statement] = STATE(3529), + [sym_function_definition] = STATE(3529), + [sym_compound_statement] = STATE(3529), + [sym_subshell] = STATE(3529), + [sym_pipeline] = STATE(4200), + [sym_list] = STATE(3529), + [sym_negated_command] = STATE(3529), + [sym_test_command] = STATE(3529), + [sym_declaration_command] = STATE(3529), + [sym_unset_command] = STATE(3529), + [sym_command] = STATE(3529), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(699), + [sym_variable_assignments] = STATE(3529), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [82] = { - [sym_statements] = STATE(3825), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1896), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(390)] = { + [sym_statement_not_pipeline] = STATE(4218), + [sym_redirected_statement] = STATE(4073), + [sym_for_statement] = STATE(4073), + [sym_c_style_for_statement] = STATE(4073), + [sym_while_statement] = STATE(3969), + [sym_if_statement] = STATE(3969), + [sym_case_statement] = STATE(4073), + [sym_function_definition] = STATE(4073), + [sym_compound_statement] = STATE(4073), + [sym_subshell] = STATE(4073), + [sym_pipeline] = STATE(4193), + [sym_list] = STATE(4073), + [sym_negated_command] = STATE(4073), + [sym_test_command] = STATE(4073), + [sym_declaration_command] = STATE(4073), + [sym_unset_command] = STATE(4073), + [sym_command] = STATE(4073), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1264), + [sym_variable_assignments] = STATE(4073), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1773), + [sym_herestring_redirect] = STATE(1790), + [sym_arithmetic_expansion] = STATE(1590), + [sym_brace_expression] = STATE(1590), + [sym_concatenation] = STATE(1760), + [sym_string] = STATE(1590), + [sym_translated_string] = STATE(1590), + [sym_number] = STATE(1590), + [sym_simple_expansion] = STATE(1590), + [sym_expansion] = STATE(1590), + [sym_command_substitution] = STATE(1590), + [sym_process_substitution] = STATE(1590), + [sym_semgrep_deep_expression] = STATE(1590), + [aux_sym_redirected_statement_repeat2] = STATE(4027), + [aux_sym_for_statement_repeat1] = STATE(1679), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_GT_PIPE] = ACTIONS(807), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym_special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(843), + [sym_semgrep_named_ellipsis] = ACTIONS(845), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(847), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(827), + [sym_brace_start] = ACTIONS(849), }, - [83] = { - [sym_statements] = STATE(3650), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(391)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(3472), + [sym_for_statement] = STATE(3472), + [sym_c_style_for_statement] = STATE(3472), + [sym_while_statement] = STATE(3246), + [sym_if_statement] = STATE(3246), + [sym_case_statement] = STATE(3472), + [sym_function_definition] = STATE(3472), + [sym_compound_statement] = STATE(3472), + [sym_subshell] = STATE(3472), + [sym_pipeline] = STATE(3407), + [sym_list] = STATE(3472), + [sym_negated_command] = STATE(3472), + [sym_test_command] = STATE(3472), + [sym_declaration_command] = STATE(3472), + [sym_unset_command] = STATE(3472), + [sym_command] = STATE(3472), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(643), + [sym_variable_assignments] = STATE(3472), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [84] = { - [sym_statements] = STATE(3706), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(392)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(4044), + [sym_for_statement] = STATE(4044), + [sym_c_style_for_statement] = STATE(4044), + [sym_while_statement] = STATE(3896), + [sym_if_statement] = STATE(3896), + [sym_case_statement] = STATE(4044), + [sym_function_definition] = STATE(4044), + [sym_compound_statement] = STATE(4044), + [sym_subshell] = STATE(4044), + [sym_pipeline] = STATE(4150), + [sym_list] = STATE(4044), + [sym_negated_command] = STATE(4044), + [sym_test_command] = STATE(4044), + [sym_declaration_command] = STATE(4044), + [sym_unset_command] = STATE(4044), + [sym_command] = STATE(4044), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(1064), + [sym_variable_assignments] = STATE(4044), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [85] = { - [sym_statements] = STATE(3741), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1911), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(393)] = { + [sym_statement_not_pipeline] = STATE(5270), + [sym_redirected_statement] = STATE(4083), + [sym_for_statement] = STATE(4083), + [sym_c_style_for_statement] = STATE(4083), + [sym_while_statement] = STATE(3975), + [sym_if_statement] = STATE(3975), + [sym_case_statement] = STATE(4083), + [sym_function_definition] = STATE(4083), + [sym_compound_statement] = STATE(4083), + [sym_subshell] = STATE(4083), + [sym_pipeline] = STATE(4086), + [sym_list] = STATE(4083), + [sym_negated_command] = STATE(4083), + [sym_test_command] = STATE(4083), + [sym_declaration_command] = STATE(4083), + [sym_unset_command] = STATE(4083), + [sym_command] = STATE(4083), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1190), + [sym_variable_assignments] = STATE(4083), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(1773), + [sym_herestring_redirect] = STATE(1790), + [sym_arithmetic_expansion] = STATE(1590), + [sym_brace_expression] = STATE(1590), + [sym_concatenation] = STATE(1760), + [sym_string] = STATE(1590), + [sym_translated_string] = STATE(1590), + [sym_number] = STATE(1590), + [sym_simple_expansion] = STATE(1590), + [sym_expansion] = STATE(1590), + [sym_command_substitution] = STATE(1590), + [sym_process_substitution] = STATE(1590), + [sym_semgrep_deep_expression] = STATE(1590), + [aux_sym_redirected_statement_repeat2] = STATE(4027), + [aux_sym_for_statement_repeat1] = STATE(1679), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(803), + [anon_sym_for] = ACTIONS(133), + [anon_sym_select] = ACTIONS(135), + [anon_sym_LPAREN_LPAREN] = ACTIONS(137), + [anon_sym_LT] = ACTIONS(805), + [anon_sym_GT] = ACTIONS(805), + [anon_sym_GT_GT] = ACTIONS(807), + [anon_sym_LPAREN] = ACTIONS(809), + [anon_sym_while] = ACTIONS(145), + [anon_sym_until] = ACTIONS(145), + [anon_sym_if] = ACTIONS(147), + [anon_sym_case] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_LBRACE] = ACTIONS(153), + [anon_sym_BANG] = ACTIONS(811), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_typeset] = ACTIONS(163), + [anon_sym_export] = ACTIONS(163), + [anon_sym_readonly] = ACTIONS(163), + [anon_sym_local] = ACTIONS(163), + [anon_sym_unset] = ACTIONS(165), + [anon_sym_unsetenv] = ACTIONS(165), + [anon_sym_AMP_GT] = ACTIONS(805), + [anon_sym_AMP_GT_GT] = ACTIONS(807), + [anon_sym_LT_AMP] = ACTIONS(805), + [anon_sym_GT_AMP] = ACTIONS(805), + [anon_sym_GT_PIPE] = ACTIONS(807), + [anon_sym_LT_AMP_DASH] = ACTIONS(813), + [anon_sym_GT_AMP_DASH] = ACTIONS(813), + [anon_sym_LT_LT_LT] = ACTIONS(815), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(817), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(819), + [anon_sym_DOLLAR] = ACTIONS(821), + [sym_special_character] = ACTIONS(823), + [anon_sym_DQUOTE] = ACTIONS(825), + [sym_raw_string] = ACTIONS(827), + [sym_ansi_c_string] = ACTIONS(827), + [aux_sym_number_token1] = ACTIONS(829), + [aux_sym_number_token2] = ACTIONS(831), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(833), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(835), + [anon_sym_BQUOTE] = ACTIONS(837), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(839), + [anon_sym_LT_LPAREN] = ACTIONS(841), + [anon_sym_GT_LPAREN] = ACTIONS(841), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(843), + [sym_semgrep_named_ellipsis] = ACTIONS(845), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(847), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(827), + [sym_brace_start] = ACTIONS(849), }, - [86] = { - [sym_statements] = STATE(3801), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(394)] = { + [sym_statement_not_pipeline] = STATE(5111), + [sym_redirected_statement] = STATE(3524), + [sym_for_statement] = STATE(3524), + [sym_c_style_for_statement] = STATE(3524), + [sym_while_statement] = STATE(3363), + [sym_if_statement] = STATE(3363), + [sym_case_statement] = STATE(3524), + [sym_function_definition] = STATE(3524), + [sym_compound_statement] = STATE(3524), + [sym_subshell] = STATE(3524), + [sym_pipeline] = STATE(3525), + [sym_list] = STATE(3524), + [sym_negated_command] = STATE(3524), + [sym_test_command] = STATE(3524), + [sym_declaration_command] = STATE(3524), + [sym_unset_command] = STATE(3524), + [sym_command] = STATE(3524), + [sym_command_name] = STATE(499), + [sym_variable_assignment] = STATE(691), + [sym_variable_assignments] = STATE(3524), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1581), + [sym_herestring_redirect] = STATE(1583), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3458), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(631), + [sym_word] = ACTIONS(719), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(721), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(725), + [anon_sym_typeset] = ACTIONS(725), + [anon_sym_export] = ACTIONS(725), + [anon_sym_readonly] = ACTIONS(725), + [anon_sym_local] = ACTIONS(725), + [anon_sym_unset] = ACTIONS(727), + [anon_sym_unsetenv] = ACTIONS(727), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [87] = { - [sym_statements] = STATE(3805), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(395)] = { + [sym_statement_not_pipeline] = STATE(5258), + [sym_redirected_statement] = STATE(4045), + [sym_for_statement] = STATE(4045), + [sym_c_style_for_statement] = STATE(4045), + [sym_while_statement] = STATE(3898), + [sym_if_statement] = STATE(3898), + [sym_case_statement] = STATE(4045), + [sym_function_definition] = STATE(4045), + [sym_compound_statement] = STATE(4045), + [sym_subshell] = STATE(4045), + [sym_pipeline] = STATE(4151), + [sym_list] = STATE(4045), + [sym_negated_command] = STATE(4045), + [sym_test_command] = STATE(4045), + [sym_declaration_command] = STATE(4045), + [sym_unset_command] = STATE(4045), + [sym_command] = STATE(4045), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(1065), + [sym_variable_assignments] = STATE(4045), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [88] = { - [sym_statements] = STATE(3639), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1900), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(396)] = { + [sym_statement_not_pipeline] = STATE(5216), + [sym_redirected_statement] = STATE(3402), + [sym_for_statement] = STATE(3402), + [sym_c_style_for_statement] = STATE(3402), + [sym_while_statement] = STATE(3238), + [sym_if_statement] = STATE(3238), + [sym_case_statement] = STATE(3402), + [sym_function_definition] = STATE(3402), + [sym_compound_statement] = STATE(3402), + [sym_subshell] = STATE(3402), + [sym_pipeline] = STATE(3429), + [sym_list] = STATE(3402), + [sym_negated_command] = STATE(3402), + [sym_test_command] = STATE(3402), + [sym_declaration_command] = STATE(3402), + [sym_unset_command] = STATE(3402), + [sym_command] = STATE(3402), + [sym_command_name] = STATE(482), + [sym_variable_assignment] = STATE(641), + [sym_variable_assignments] = STATE(3402), + [sym_subscript] = STATE(5311), + [sym_file_redirect] = STATE(1201), + [sym_herestring_redirect] = STATE(1203), + [sym_arithmetic_expansion] = STATE(680), + [sym_brace_expression] = STATE(680), + [sym_concatenation] = STATE(1084), + [sym_string] = STATE(680), + [sym_translated_string] = STATE(680), + [sym_number] = STATE(680), + [sym_simple_expansion] = STATE(680), + [sym_expansion] = STATE(680), + [sym_command_substitution] = STATE(680), + [sym_process_substitution] = STATE(680), + [sym_semgrep_deep_expression] = STATE(680), + [aux_sym_redirected_statement_repeat2] = STATE(3370), + [aux_sym_for_statement_repeat1] = STATE(999), + [aux_sym_command_repeat1] = STATE(638), + [sym_word] = ACTIONS(548), + [anon_sym_for] = ACTIONS(552), + [anon_sym_select] = ACTIONS(554), + [anon_sym_LPAREN_LPAREN] = ACTIONS(556), + [anon_sym_LT] = ACTIONS(558), + [anon_sym_GT] = ACTIONS(558), + [anon_sym_GT_GT] = ACTIONS(560), + [anon_sym_LPAREN] = ACTIONS(562), + [anon_sym_while] = ACTIONS(564), + [anon_sym_until] = ACTIONS(564), + [anon_sym_if] = ACTIONS(566), + [anon_sym_case] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_LBRACE] = ACTIONS(572), + [anon_sym_BANG] = ACTIONS(574), + [anon_sym_LBRACK] = ACTIONS(576), + [anon_sym_LBRACK_LBRACK] = ACTIONS(578), + [anon_sym_declare] = ACTIONS(580), + [anon_sym_typeset] = ACTIONS(580), + [anon_sym_export] = ACTIONS(580), + [anon_sym_readonly] = ACTIONS(580), + [anon_sym_local] = ACTIONS(580), + [anon_sym_unset] = ACTIONS(582), + [anon_sym_unsetenv] = ACTIONS(582), + [anon_sym_AMP_GT] = ACTIONS(558), + [anon_sym_AMP_GT_GT] = ACTIONS(560), + [anon_sym_LT_AMP] = ACTIONS(558), + [anon_sym_GT_AMP] = ACTIONS(558), + [anon_sym_GT_PIPE] = ACTIONS(560), + [anon_sym_LT_AMP_DASH] = ACTIONS(584), + [anon_sym_GT_AMP_DASH] = ACTIONS(584), + [anon_sym_LT_LT_LT] = ACTIONS(586), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(588), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(590), + [anon_sym_DOLLAR] = ACTIONS(592), + [sym_special_character] = ACTIONS(594), + [anon_sym_DQUOTE] = ACTIONS(596), + [sym_raw_string] = ACTIONS(598), + [sym_ansi_c_string] = ACTIONS(598), + [aux_sym_number_token1] = ACTIONS(600), + [aux_sym_number_token2] = ACTIONS(602), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(604), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(612), + [anon_sym_GT_LPAREN] = ACTIONS(612), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(614), + [sym_semgrep_named_ellipsis] = ACTIONS(616), + [sym_semgrep_metavar_eq] = ACTIONS(618), + [sym_semgrep_metavar_pluseq] = ACTIONS(618), + [sym_file_descriptor] = ACTIONS(620), + [sym_variable_name] = ACTIONS(622), + [sym_test_operator] = ACTIONS(598), + [sym_brace_start] = ACTIONS(624), }, - [89] = { - [sym_statements] = STATE(3655), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(397)] = { + [sym_statement_not_pipeline] = STATE(5274), + [sym_redirected_statement] = STATE(3310), + [sym_for_statement] = STATE(3310), + [sym_c_style_for_statement] = STATE(3310), + [sym_while_statement] = STATE(3200), + [sym_if_statement] = STATE(3200), + [sym_case_statement] = STATE(3310), + [sym_function_definition] = STATE(3310), + [sym_compound_statement] = STATE(3310), + [sym_subshell] = STATE(3310), + [sym_pipeline] = STATE(3329), + [sym_list] = STATE(3310), + [sym_negated_command] = STATE(3310), + [sym_test_command] = STATE(3310), + [sym_declaration_command] = STATE(3310), + [sym_unset_command] = STATE(3310), + [sym_command] = STATE(3310), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(621), + [sym_variable_assignments] = STATE(3310), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), }, - [90] = { - [sym_statements] = STATE(3679), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(398)] = { + [sym_statement_not_pipeline] = STATE(3585), + [sym_redirected_statement] = STATE(3279), + [sym_for_statement] = STATE(3279), + [sym_c_style_for_statement] = STATE(3279), + [sym_while_statement] = STATE(3192), + [sym_if_statement] = STATE(3192), + [sym_case_statement] = STATE(3279), + [sym_function_definition] = STATE(3279), + [sym_compound_statement] = STATE(3279), + [sym_subshell] = STATE(3279), + [sym_pipeline] = STATE(4190), + [sym_list] = STATE(3279), + [sym_negated_command] = STATE(3279), + [sym_test_command] = STATE(3279), + [sym_declaration_command] = STATE(3279), + [sym_unset_command] = STATE(3279), + [sym_command] = STATE(3279), + [sym_command_name] = STATE(475), + [sym_variable_assignment] = STATE(619), + [sym_variable_assignments] = STATE(3279), + [sym_subscript] = STATE(5331), + [sym_file_redirect] = STATE(1069), + [sym_herestring_redirect] = STATE(1070), + [sym_arithmetic_expansion] = STATE(656), + [sym_brace_expression] = STATE(656), + [sym_concatenation] = STATE(1048), + [sym_string] = STATE(656), + [sym_translated_string] = STATE(656), + [sym_number] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [sym_semgrep_deep_expression] = STATE(656), + [aux_sym_redirected_statement_repeat2] = STATE(3255), + [aux_sym_for_statement_repeat1] = STATE(922), + [aux_sym_command_repeat1] = STATE(639), + [sym_word] = ACTIONS(420), + [anon_sym_for] = ACTIONS(424), + [anon_sym_select] = ACTIONS(426), + [anon_sym_LPAREN_LPAREN] = ACTIONS(428), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_GT] = ACTIONS(432), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_while] = ACTIONS(436), + [anon_sym_until] = ACTIONS(436), + [anon_sym_if] = ACTIONS(438), + [anon_sym_case] = ACTIONS(440), + [anon_sym_function] = ACTIONS(446), + [anon_sym_LBRACE] = ACTIONS(448), + [anon_sym_BANG] = ACTIONS(450), + [anon_sym_LBRACK] = ACTIONS(452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(454), + [anon_sym_declare] = ACTIONS(456), + [anon_sym_typeset] = ACTIONS(456), + [anon_sym_export] = ACTIONS(456), + [anon_sym_readonly] = ACTIONS(456), + [anon_sym_local] = ACTIONS(456), + [anon_sym_unset] = ACTIONS(458), + [anon_sym_unsetenv] = ACTIONS(458), + [anon_sym_AMP_GT] = ACTIONS(430), + [anon_sym_AMP_GT_GT] = ACTIONS(432), + [anon_sym_LT_AMP] = ACTIONS(430), + [anon_sym_GT_AMP] = ACTIONS(430), + [anon_sym_GT_PIPE] = ACTIONS(432), + [anon_sym_LT_AMP_DASH] = ACTIONS(460), + [anon_sym_GT_AMP_DASH] = ACTIONS(460), + [anon_sym_LT_LT_LT] = ACTIONS(462), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(464), + [anon_sym_DOLLAR_LBRACK] = 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(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(490), + [sym_semgrep_named_ellipsis] = ACTIONS(492), + [sym_semgrep_metavar_eq] = ACTIONS(494), + [sym_semgrep_metavar_pluseq] = ACTIONS(494), + [sym_file_descriptor] = ACTIONS(496), + [sym_variable_name] = ACTIONS(498), + [sym_test_operator] = ACTIONS(474), + [sym_brace_start] = ACTIONS(500), }, - [91] = { - [sym_statements] = STATE(3646), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1912), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(399)] = { + [sym_statement_not_pipeline] = STATE(3647), + [sym_redirected_statement] = STATE(3457), + [sym_for_statement] = STATE(3457), + [sym_c_style_for_statement] = STATE(3457), + [sym_while_statement] = STATE(3229), + [sym_if_statement] = STATE(3229), + [sym_case_statement] = STATE(3457), + [sym_function_definition] = STATE(3457), + [sym_compound_statement] = STATE(3457), + [sym_subshell] = STATE(3457), + [sym_pipeline] = STATE(4197), + [sym_list] = STATE(3457), + [sym_negated_command] = STATE(3457), + [sym_test_command] = STATE(3457), + [sym_declaration_command] = STATE(3457), + [sym_unset_command] = STATE(3457), + [sym_command] = STATE(3457), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(630), + [sym_variable_assignments] = STATE(3457), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(1263), + [sym_herestring_redirect] = STATE(1249), + [sym_arithmetic_expansion] = STATE(722), + [sym_brace_expression] = STATE(722), + [sym_concatenation] = STATE(1068), + [sym_string] = STATE(722), + [sym_translated_string] = STATE(722), + [sym_number] = STATE(722), + [sym_simple_expansion] = STATE(722), + [sym_expansion] = STATE(722), + [sym_command_substitution] = STATE(722), + [sym_process_substitution] = STATE(722), + [sym_semgrep_deep_expression] = STATE(722), + [aux_sym_redirected_statement_repeat2] = STATE(3345), + [aux_sym_for_statement_repeat1] = STATE(987), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_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(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym_special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [sym_raw_string] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(55), + [aux_sym_number_token1] = ACTIONS(57), + [aux_sym_number_token2] = ACTIONS(59), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), + [anon_sym_BQUOTE] = ACTIONS(65), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), + [anon_sym_LT_LPAREN] = ACTIONS(69), + [anon_sym_GT_LPAREN] = ACTIONS(69), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(73), + [sym_semgrep_named_ellipsis] = ACTIONS(75), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(79), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(55), + [sym_brace_start] = ACTIONS(83), }, - [92] = { - [sym_statements] = STATE(3677), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(400)] = { + [sym_expression] = STATE(2333), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(1771), + [sym_brace_expression] = STATE(1771), + [sym_concatenation] = STATE(1974), + [sym_string] = STATE(1771), + [sym_translated_string] = STATE(1771), + [sym_number] = STATE(1771), + [sym_simple_expansion] = STATE(1771), + [sym_expansion] = STATE(1771), + [sym_command_substitution] = STATE(1771), + [sym_process_substitution] = STATE(1771), + [sym_semgrep_deep_expression] = STATE(1771), + [aux_sym_for_statement_repeat1] = STATE(1978), + [aux_sym_concatenation_repeat1] = STATE(1748), + [sym_word] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(853), + [anon_sym_RBRACK_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(855), + [anon_sym_DASH_DASH2] = ACTIONS(855), + [anon_sym_DASH2] = ACTIONS(857), + [anon_sym_PLUS2] = ACTIONS(857), + [anon_sym_TILDE] = ACTIONS(859), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(861), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(863), + [aux_sym_concatenation_token1] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(260), + [sym_special_character] = ACTIONS(867), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_raw_string] = ACTIONS(871), + [sym_ansi_c_string] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(266), + [aux_sym_number_token2] = ACTIONS(268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(875), + [anon_sym_LT_LPAREN] = ACTIONS(877), + [anon_sym_GT_LPAREN] = ACTIONS(877), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(879), + [sym_semgrep_named_ellipsis] = ACTIONS(881), + [sym_concat] = ACTIONS(865), + [sym_test_operator] = ACTIONS(883), + [sym_brace_start] = ACTIONS(290), }, - [93] = { - [sym_statements] = STATE(3682), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(401)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(891), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(905), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [94] = { - [sym_statements] = STATE(3730), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1880), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(402)] = { + [sym_expression] = STATE(2316), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(1903), + [sym_brace_expression] = STATE(1903), + [sym_concatenation] = STATE(2197), + [sym_string] = STATE(1903), + [sym_translated_string] = STATE(1903), + [sym_number] = STATE(1903), + [sym_simple_expansion] = STATE(1903), + [sym_expansion] = STATE(1903), + [sym_command_substitution] = STATE(1903), + [sym_process_substitution] = STATE(1903), + [sym_semgrep_deep_expression] = STATE(1903), + [aux_sym_for_statement_repeat1] = STATE(1979), + [aux_sym_concatenation_repeat1] = STATE(1914), + [sym_word] = ACTIONS(644), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(663), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(899), + [sym_test_operator] = ACTIONS(687), + [sym_brace_start] = ACTIONS(689), }, - [95] = { - [sym_statements] = STATE(3737), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(403)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(909), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(911), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [96] = { - [sym_statements] = STATE(3742), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(404)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(913), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(915), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [97] = { - [sym_statements] = STATE(3647), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1889), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(405)] = { + [sym_expression] = STATE(2210), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(1771), + [sym_brace_expression] = STATE(1771), + [sym_concatenation] = STATE(1974), + [sym_string] = STATE(1771), + [sym_translated_string] = STATE(1771), + [sym_number] = STATE(1771), + [sym_simple_expansion] = STATE(1771), + [sym_expansion] = STATE(1771), + [sym_command_substitution] = STATE(1771), + [sym_process_substitution] = STATE(1771), + [sym_semgrep_deep_expression] = STATE(1771), + [aux_sym_for_statement_repeat1] = STATE(1881), + [aux_sym_concatenation_repeat1] = STATE(1748), + [sym_word] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(646), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(91), + [anon_sym_DASH_DASH2] = ACTIONS(91), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(861), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(863), + [aux_sym_concatenation_token1] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(260), + [sym_special_character] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_raw_string] = ACTIONS(871), + [sym_ansi_c_string] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(266), + [aux_sym_number_token2] = ACTIONS(268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(875), + [anon_sym_LT_LPAREN] = ACTIONS(877), + [anon_sym_GT_LPAREN] = ACTIONS(877), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(879), + [sym_semgrep_named_ellipsis] = ACTIONS(881), + [sym_concat] = ACTIONS(865), + [sym_test_operator] = ACTIONS(288), + [sym_brace_start] = ACTIONS(290), }, - [98] = { - [sym_statements] = STATE(3653), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(406)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(919), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(921), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [99] = { - [sym_statements] = STATE(3654), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(407)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(646), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [100] = { - [sym_statements] = STATE(3744), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1906), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(408)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(923), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(925), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [101] = { - [sym_statements] = STATE(3746), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(409)] = { + [sym_expression] = STATE(2227), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(1771), + [sym_brace_expression] = STATE(1771), + [sym_concatenation] = STATE(1974), + [sym_string] = STATE(1771), + [sym_translated_string] = STATE(1771), + [sym_number] = STATE(1771), + [sym_simple_expansion] = STATE(1771), + [sym_expansion] = STATE(1771), + [sym_command_substitution] = STATE(1771), + [sym_process_substitution] = STATE(1771), + [sym_semgrep_deep_expression] = STATE(1771), + [aux_sym_for_statement_repeat1] = STATE(1881), + [aux_sym_concatenation_repeat1] = STATE(1748), + [sym_word] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(851), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_COLON] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(929), + [anon_sym_DASH_DASH2] = ACTIONS(929), + [anon_sym_DASH2] = ACTIONS(931), + [anon_sym_PLUS2] = ACTIONS(931), + [anon_sym_TILDE] = ACTIONS(933), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(861), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(863), + [aux_sym_concatenation_token1] = ACTIONS(865), + [anon_sym_DOLLAR] = ACTIONS(260), + [sym_special_character] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(869), + [sym_raw_string] = ACTIONS(871), + [sym_ansi_c_string] = ACTIONS(871), + [aux_sym_number_token1] = ACTIONS(266), + [aux_sym_number_token2] = ACTIONS(268), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(272), + [anon_sym_BQUOTE] = ACTIONS(274), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(875), + [anon_sym_LT_LPAREN] = ACTIONS(877), + [anon_sym_GT_LPAREN] = ACTIONS(877), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(879), + [sym_semgrep_named_ellipsis] = ACTIONS(881), + [sym_concat] = ACTIONS(865), + [sym_test_operator] = ACTIONS(935), + [sym_brace_start] = ACTIONS(290), }, - [102] = { - [sym_statements] = STATE(3747), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(410)] = { + [sym_expression] = STATE(2142), + [sym_binary_expression] = STATE(2032), + [sym_ternary_expression] = STATE(2032), + [sym_unary_expression] = STATE(2032), + [sym_postfix_expression] = STATE(2032), + [sym_parenthesized_expression] = STATE(2032), + [sym_arithmetic_expansion] = STATE(1879), + [sym_brace_expression] = STATE(1879), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(1879), + [sym_translated_string] = STATE(1879), + [sym_number] = STATE(1879), + [sym_simple_expansion] = STATE(1879), + [sym_expansion] = STATE(1879), + [sym_command_substitution] = STATE(1879), + [sym_process_substitution] = STATE(1879), + [sym_semgrep_deep_expression] = STATE(1879), + [aux_sym_for_statement_repeat1] = STATE(1902), + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_word] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(646), + [anon_sym_AMP_AMP] = ACTIONS(646), + [anon_sym_PIPE] = ACTIONS(246), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(246), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(246), + [anon_sym_GT] = ACTIONS(246), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(246), + [anon_sym_GT_GT] = ACTIONS(246), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(887), + [anon_sym_BANG] = ACTIONS(889), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_EQ_TILDE] = ACTIONS(246), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_PLUS_PLUS2] = ACTIONS(893), + [anon_sym_DASH_DASH2] = ACTIONS(893), + [anon_sym_DASH2] = ACTIONS(895), + [anon_sym_PLUS2] = ACTIONS(895), + [anon_sym_TILDE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(655), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(657), + [aux_sym_concatenation_token1] = ACTIONS(899), + [anon_sym_DOLLAR] = ACTIONS(661), + [sym_special_character] = ACTIONS(901), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym_raw_string] = ACTIONS(903), + [sym_ansi_c_string] = ACTIONS(903), + [aux_sym_number_token1] = ACTIONS(669), + [aux_sym_number_token2] = ACTIONS(671), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_BQUOTE] = ACTIONS(677), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(683), + [sym_semgrep_named_ellipsis] = ACTIONS(685), + [sym_concat] = ACTIONS(939), + [sym_test_operator] = ACTIONS(907), + [sym_brace_start] = ACTIONS(689), }, - [103] = { - [sym_statements] = STATE(3817), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1923), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(411)] = { + [sym_string] = STATE(423), + [sym_orig_simple_variable_name] = STATE(431), + [sym_word] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(941), + [anon_sym_SEMI_SEMI] = ACTIONS(941), + [aux_sym_statements_token1] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(941), + [aux_sym_for_statement_token1] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_STAR_STAR_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(941), + [anon_sym_GT_GT_EQ] = ACTIONS(941), + [anon_sym_AMP_EQ] = ACTIONS(941), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(941), + [anon_sym_PIPE_PIPE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(941), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_RPAREN] = ACTIONS(941), + [anon_sym_PIPE_AMP] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_EQ_TILDE] = ACTIONS(941), + [anon_sym_AMP_GT] = ACTIONS(941), + [anon_sym_AMP_GT_GT] = ACTIONS(941), + [anon_sym_LT_AMP] = ACTIONS(941), + [anon_sym_GT_AMP] = ACTIONS(941), + [anon_sym_GT_PIPE] = ACTIONS(941), + [anon_sym_LT_AMP_DASH] = ACTIONS(941), + [anon_sym_GT_AMP_DASH] = ACTIONS(941), + [anon_sym_LT_LT_DASH] = ACTIONS(941), + [anon_sym_LT_LT_LT] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(947), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(941), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(947), + [sym_special_character] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(949), + [sym_raw_string] = ACTIONS(941), + [sym_ansi_c_string] = ACTIONS(941), + [aux_sym_number_token1] = ACTIONS(941), + [aux_sym_number_token2] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(947), + [anon_sym_POUND] = ACTIONS(947), + [anon_sym__] = ACTIONS(947), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(941), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(941), + [anon_sym_LT_LPAREN] = ACTIONS(941), + [anon_sym_GT_LPAREN] = ACTIONS(941), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(941), + [sym_semgrep_named_ellipsis] = ACTIONS(941), + [sym_file_descriptor] = ACTIONS(943), + [sym_test_operator] = ACTIONS(943), + [sym_bare_dollar] = ACTIONS(943), + [sym_brace_start] = ACTIONS(943), }, - [104] = { - [sym_statements] = STATE(3824), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(412)] = { + [sym_string] = STATE(451), + [sym_orig_simple_variable_name] = STATE(447), + [sym_word] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [aux_sym_for_statement_token1] = ACTIONS(951), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_PLUS_PLUS] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(941), + [anon_sym_DASH_EQ] = ACTIONS(941), + [anon_sym_STAR_EQ] = ACTIONS(941), + [anon_sym_SLASH_EQ] = ACTIONS(941), + [anon_sym_PERCENT_EQ] = ACTIONS(941), + [anon_sym_STAR_STAR_EQ] = ACTIONS(941), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(941), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(941), + [anon_sym_BANG_EQ] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(953), + [anon_sym_STAR] = ACTIONS(953), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_STAR_STAR] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_PIPE_AMP] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(953), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_EQ_TILDE] = ACTIONS(941), + [anon_sym_AMP_GT] = ACTIONS(941), + [anon_sym_AMP_GT_GT] = ACTIONS(943), + [anon_sym_LT_AMP] = ACTIONS(941), + [anon_sym_GT_AMP] = ACTIONS(941), + [anon_sym_GT_PIPE] = ACTIONS(943), + [anon_sym_LT_AMP_DASH] = ACTIONS(943), + [anon_sym_GT_AMP_DASH] = ACTIONS(943), + [anon_sym_LT_LT_DASH] = ACTIONS(943), + [anon_sym_LT_LT_LT] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(953), + [sym_special_character] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(943), + [sym_ansi_c_string] = ACTIONS(943), + [aux_sym_number_token1] = ACTIONS(941), + [aux_sym_number_token2] = ACTIONS(941), + [anon_sym_AT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(955), + [anon_sym__] = ACTIONS(953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(943), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(941), + [anon_sym_BQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(943), + [anon_sym_LT_LPAREN] = ACTIONS(943), + [anon_sym_GT_LPAREN] = ACTIONS(943), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(943), + [sym_semgrep_named_ellipsis] = ACTIONS(943), + [sym_file_descriptor] = ACTIONS(943), + [sym_test_operator] = ACTIONS(943), + [sym_bare_dollar] = ACTIONS(943), + [sym_brace_start] = ACTIONS(943), }, - [105] = { - [sym_statements] = STATE(3610), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(413)] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_word] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [aux_sym_statements_token1] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(246), + [anon_sym_GT_GT_EQ] = ACTIONS(246), + [anon_sym_AMP_EQ] = ACTIONS(246), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(246), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(246), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(957), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), + [aux_sym_concatenation_token1] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_raw_string] = ACTIONS(241), + [sym_ansi_c_string] = ACTIONS(241), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(241), + [sym_semgrep_named_ellipsis] = ACTIONS(241), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(286), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), }, - [106] = { - [sym_statements] = STATE(3672), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1897), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(414)] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_word] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [aux_sym_statements_token1] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(246), + [anon_sym_GT_GT_EQ] = ACTIONS(246), + [anon_sym_AMP_EQ] = ACTIONS(246), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(246), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(246), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), + [aux_sym_concatenation_token1] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_raw_string] = ACTIONS(241), + [sym_ansi_c_string] = ACTIONS(241), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(241), + [sym_semgrep_named_ellipsis] = ACTIONS(241), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(286), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), }, - [107] = { - [sym_statements] = STATE(3725), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(415)] = { + [aux_sym_concatenation_repeat1] = STATE(416), + [sym_word] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_SEMI_SEMI] = ACTIONS(960), + [aux_sym_statements_token1] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PERCENT_EQ] = ACTIONS(960), + [anon_sym_STAR_STAR_EQ] = ACTIONS(960), + [anon_sym_LT_LT_EQ] = ACTIONS(960), + [anon_sym_GT_GT_EQ] = ACTIONS(960), + [anon_sym_AMP_EQ] = ACTIONS(960), + [anon_sym_CARET_EQ] = ACTIONS(960), + [anon_sym_PIPE_EQ] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_LT_LT] = ACTIONS(960), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_PIPE_AMP] = ACTIONS(960), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(960), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_GT_PIPE] = ACTIONS(960), + [anon_sym_LT_AMP_DASH] = ACTIONS(960), + [anon_sym_GT_AMP_DASH] = ACTIONS(960), + [anon_sym_LT_LT_DASH] = ACTIONS(960), + [anon_sym_LT_LT_LT] = ACTIONS(960), + [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(960), + [aux_sym_concatenation_token1] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(960), + [sym_special_character] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [sym_ansi_c_string] = ACTIONS(960), + [aux_sym_number_token1] = ACTIONS(960), + [aux_sym_number_token2] = ACTIONS(960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(960), + [sym_semgrep_named_ellipsis] = ACTIONS(960), + [sym_file_descriptor] = ACTIONS(962), + [sym_concat] = ACTIONS(964), + [sym_test_operator] = ACTIONS(962), + [sym_bare_dollar] = ACTIONS(962), + [sym_brace_start] = ACTIONS(962), }, - [108] = { - [sym_statements] = STATE(3720), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(416)] = { + [aux_sym_concatenation_repeat1] = STATE(416), + [sym_word] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_SEMI_SEMI] = ACTIONS(966), + [aux_sym_statements_token1] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_STAR_STAR_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_PIPE_AMP] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_AMP_GT] = ACTIONS(966), + [anon_sym_AMP_GT_GT] = ACTIONS(966), + [anon_sym_LT_AMP] = ACTIONS(966), + [anon_sym_GT_AMP] = ACTIONS(966), + [anon_sym_GT_PIPE] = ACTIONS(966), + [anon_sym_LT_AMP_DASH] = ACTIONS(966), + [anon_sym_GT_AMP_DASH] = ACTIONS(966), + [anon_sym_LT_LT_DASH] = ACTIONS(966), + [anon_sym_LT_LT_LT] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(966), + [aux_sym_concatenation_token1] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(966), + [sym_special_character] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_raw_string] = ACTIONS(966), + [sym_ansi_c_string] = ACTIONS(966), + [aux_sym_number_token1] = ACTIONS(966), + [aux_sym_number_token2] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(966), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(966), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_semgrep_named_ellipsis] = ACTIONS(966), + [sym_file_descriptor] = ACTIONS(968), + [sym_concat] = ACTIONS(973), + [sym_test_operator] = ACTIONS(968), + [sym_bare_dollar] = ACTIONS(968), + [sym_brace_start] = ACTIONS(968), }, - [109] = { - [sym_statements] = STATE(3760), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1921), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(417)] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_word] = ACTIONS(976), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_SEMI_SEMI] = ACTIONS(976), + [aux_sym_statements_token1] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_STAR_STAR_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(976), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(976), + [anon_sym_STAR_STAR] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_PIPE_AMP] = ACTIONS(976), + [anon_sym_EQ_TILDE] = ACTIONS(976), + [anon_sym_AMP_GT] = ACTIONS(976), + [anon_sym_AMP_GT_GT] = ACTIONS(976), + [anon_sym_LT_AMP] = ACTIONS(976), + [anon_sym_GT_AMP] = ACTIONS(976), + [anon_sym_GT_PIPE] = ACTIONS(976), + [anon_sym_LT_AMP_DASH] = ACTIONS(976), + [anon_sym_GT_AMP_DASH] = ACTIONS(976), + [anon_sym_LT_LT_DASH] = ACTIONS(976), + [anon_sym_LT_LT_LT] = ACTIONS(976), + [anon_sym_QMARK] = ACTIONS(976), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(976), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(976), + [aux_sym_concatenation_token1] = ACTIONS(258), + [anon_sym_DOLLAR] = ACTIONS(976), + [sym_special_character] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym_raw_string] = ACTIONS(976), + [sym_ansi_c_string] = ACTIONS(976), + [aux_sym_number_token1] = ACTIONS(976), + [aux_sym_number_token2] = ACTIONS(976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(976), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(976), + [anon_sym_LT_LPAREN] = ACTIONS(976), + [anon_sym_GT_LPAREN] = ACTIONS(976), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(976), + [sym_semgrep_named_ellipsis] = ACTIONS(976), + [sym_file_descriptor] = ACTIONS(978), + [sym_concat] = ACTIONS(286), + [sym_test_operator] = ACTIONS(978), + [sym_bare_dollar] = ACTIONS(978), + [sym_brace_start] = ACTIONS(978), }, - [110] = { - [sym_statements] = STATE(3786), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(418)] = { + [sym_word] = ACTIONS(980), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_SEMI_SEMI] = ACTIONS(980), + [aux_sym_statements_token1] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_STAR_STAR_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(980), + [anon_sym_GT_GT_EQ] = ACTIONS(980), + [anon_sym_AMP_EQ] = ACTIONS(980), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_RPAREN] = ACTIONS(980), + [anon_sym_PIPE_AMP] = ACTIONS(980), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_AMP_GT] = ACTIONS(980), + [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_LT_AMP_DASH] = ACTIONS(980), + [anon_sym_GT_AMP_DASH] = ACTIONS(980), + [anon_sym_LT_LT_DASH] = ACTIONS(980), + [anon_sym_LT_LT_LT] = ACTIONS(980), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(980), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(980), + [aux_sym_concatenation_token1] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [sym_special_character] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym_raw_string] = ACTIONS(980), + [sym_ansi_c_string] = ACTIONS(980), + [aux_sym_number_token1] = ACTIONS(980), + [aux_sym_number_token2] = ACTIONS(980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(980), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(980), + [anon_sym_BQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(980), + [anon_sym_LT_LPAREN] = ACTIONS(980), + [anon_sym_GT_LPAREN] = ACTIONS(980), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(980), + [sym_semgrep_named_ellipsis] = ACTIONS(980), + [sym_file_descriptor] = ACTIONS(982), + [sym_concat] = ACTIONS(982), + [sym_test_operator] = ACTIONS(982), + [sym_bare_dollar] = ACTIONS(982), + [sym_brace_start] = ACTIONS(982), }, - [111] = { - [sym_statements] = STATE(3618), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(419)] = { + [sym_word] = ACTIONS(984), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_SEMI_SEMI] = ACTIONS(984), + [aux_sym_statements_token1] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PERCENT_EQ] = ACTIONS(984), + [anon_sym_STAR_STAR_EQ] = ACTIONS(984), + [anon_sym_LT_LT_EQ] = ACTIONS(984), + [anon_sym_GT_GT_EQ] = ACTIONS(984), + [anon_sym_AMP_EQ] = ACTIONS(984), + [anon_sym_CARET_EQ] = ACTIONS(984), + [anon_sym_PIPE_EQ] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(984), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(984), + [anon_sym_AMP_GT_GT] = ACTIONS(984), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_GT_PIPE] = ACTIONS(984), + [anon_sym_LT_AMP_DASH] = ACTIONS(984), + [anon_sym_GT_AMP_DASH] = ACTIONS(984), + [anon_sym_LT_LT_DASH] = ACTIONS(984), + [anon_sym_LT_LT_LT] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(984), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(984), + [aux_sym_concatenation_token1] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [sym_special_character] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym_raw_string] = ACTIONS(984), + [sym_ansi_c_string] = ACTIONS(984), + [aux_sym_number_token1] = ACTIONS(984), + [aux_sym_number_token2] = ACTIONS(984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(984), + [anon_sym_LT_LPAREN] = ACTIONS(984), + [anon_sym_GT_LPAREN] = ACTIONS(984), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(984), + [sym_semgrep_named_ellipsis] = ACTIONS(984), + [sym_file_descriptor] = ACTIONS(986), + [sym_concat] = ACTIONS(986), + [sym_test_operator] = ACTIONS(986), + [sym_bare_dollar] = ACTIONS(986), + [sym_brace_start] = ACTIONS(986), }, - [112] = { - [sym_statements] = STATE(3696), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1883), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(420)] = { + [sym_word] = ACTIONS(988), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_SEMI_SEMI] = ACTIONS(988), + [aux_sym_statements_token1] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(988), + [anon_sym_DASH_EQ] = ACTIONS(988), + [anon_sym_STAR_EQ] = ACTIONS(988), + [anon_sym_SLASH_EQ] = ACTIONS(988), + [anon_sym_PERCENT_EQ] = ACTIONS(988), + [anon_sym_STAR_STAR_EQ] = ACTIONS(988), + [anon_sym_LT_LT_EQ] = ACTIONS(988), + [anon_sym_GT_GT_EQ] = ACTIONS(988), + [anon_sym_AMP_EQ] = ACTIONS(988), + [anon_sym_CARET_EQ] = ACTIONS(988), + [anon_sym_PIPE_EQ] = ACTIONS(988), + [anon_sym_PIPE_PIPE] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_PIPE_AMP] = ACTIONS(988), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(988), + [anon_sym_LT_AMP] = ACTIONS(988), + [anon_sym_GT_AMP] = ACTIONS(988), + [anon_sym_GT_PIPE] = ACTIONS(988), + [anon_sym_LT_AMP_DASH] = ACTIONS(988), + [anon_sym_GT_AMP_DASH] = ACTIONS(988), + [anon_sym_LT_LT_DASH] = ACTIONS(988), + [anon_sym_LT_LT_LT] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(988), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(988), + [aux_sym_concatenation_token1] = ACTIONS(988), + [anon_sym_DOLLAR] = ACTIONS(988), + [sym_special_character] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(988), + [sym_raw_string] = ACTIONS(988), + [sym_ansi_c_string] = ACTIONS(988), + [aux_sym_number_token1] = ACTIONS(988), + [aux_sym_number_token2] = ACTIONS(988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(988), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(988), + [anon_sym_BQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(988), + [anon_sym_LT_LPAREN] = ACTIONS(988), + [anon_sym_GT_LPAREN] = ACTIONS(988), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(988), + [sym_semgrep_named_ellipsis] = ACTIONS(988), + [sym_file_descriptor] = ACTIONS(990), + [sym_concat] = ACTIONS(990), + [sym_test_operator] = ACTIONS(990), + [sym_bare_dollar] = ACTIONS(990), + [sym_brace_start] = ACTIONS(990), }, - [113] = { - [sym_statements] = STATE(3716), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [STATE(421)] = { + [sym_word] = ACTIONS(992), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym_SEMI_SEMI] = ACTIONS(992), + [aux_sym_statements_token1] = ACTIONS(994), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PERCENT_EQ] = ACTIONS(992), + [anon_sym_STAR_STAR_EQ] = ACTIONS(992), + [anon_sym_LT_LT_EQ] = ACTIONS(992), + [anon_sym_GT_GT_EQ] = ACTIONS(992), + [anon_sym_AMP_EQ] = ACTIONS(992), + [anon_sym_CARET_EQ] = ACTIONS(992), + [anon_sym_PIPE_EQ] = ACTIONS(992), + [anon_sym_PIPE_PIPE] = ACTIONS(992), + [anon_sym_AMP_AMP] = ACTIONS(992), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(992), + [anon_sym_GT_EQ] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_PERCENT] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_RPAREN] = ACTIONS(992), + [anon_sym_PIPE_AMP] = ACTIONS(992), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(992), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_GT_PIPE] = ACTIONS(992), + [anon_sym_LT_AMP_DASH] = ACTIONS(992), + [anon_sym_GT_AMP_DASH] = ACTIONS(992), + [anon_sym_LT_LT_DASH] = ACTIONS(992), + [anon_sym_LT_LT_LT] = ACTIONS(992), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(992), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(992), + [aux_sym_concatenation_token1] = ACTIONS(992), + [anon_sym_DOLLAR] = ACTIONS(992), + [sym_special_character] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym_raw_string] = ACTIONS(992), + [sym_ansi_c_string] = ACTIONS(992), + [aux_sym_number_token1] = ACTIONS(992), + [aux_sym_number_token2] = ACTIONS(992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(992), + [anon_sym_BQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(992), + [anon_sym_LT_LPAREN] = ACTIONS(992), + [anon_sym_GT_LPAREN] = ACTIONS(992), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(992), + [sym_semgrep_named_ellipsis] = ACTIONS(992), + [sym_file_descriptor] = ACTIONS(994), + [sym_concat] = ACTIONS(994), + [sym_test_operator] = ACTIONS(994), + [sym_bare_dollar] = ACTIONS(994), + [sym_brace_start] = ACTIONS(994), }, - [114] = { - [sym_statements] = STATE(3722), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [115] = { - [sym_statements] = STATE(3632), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1894), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [116] = { - [sym_statements] = STATE(3686), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [117] = { - [sym_statements] = STATE(3708), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [118] = { - [sym_statements] = STATE(3754), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1910), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [119] = { - [sym_statements] = STATE(3789), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [120] = { - [sym_statements] = STATE(3792), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [121] = { - [sym_statements] = STATE(3643), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1902), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [122] = { - [sym_statements] = STATE(3676), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [123] = { - [sym_statements] = STATE(3683), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [124] = { - [sym_statements] = STATE(3622), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1928), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [125] = { - [sym_statements] = STATE(3628), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [126] = { - [sym_statements] = STATE(3629), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [127] = { - [sym_statements] = STATE(3762), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1924), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [128] = { - [sym_statements] = STATE(3774), - [sym_redirected_statement] = STATE(1943), - [sym_for_statement] = STATE(1943), - [sym_c_style_for_statement] = STATE(1943), - [sym_while_statement] = STATE(1943), - [sym_if_statement] = STATE(1943), - [sym_case_statement] = STATE(1943), - [sym_function_definition] = STATE(1943), - [sym_compound_statement] = STATE(1943), - [sym_subshell] = STATE(1943), - [sym_pipeline] = STATE(1943), - [sym_list] = STATE(1943), - [sym_negated_command] = STATE(1943), - [sym_test_command] = STATE(1943), - [sym_declaration_command] = STATE(1943), - [sym_unset_command] = STATE(1943), - [sym_command] = STATE(1943), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(484), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(141), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [129] = { - [sym_statements] = STATE(3766), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(1885), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [130] = { - [sym_statements] = STATE(3735), - [sym_redirected_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_c_style_for_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_function_definition] = STATE(1953), - [sym_compound_statement] = STATE(1953), - [sym_subshell] = STATE(1953), - [sym_pipeline] = STATE(1953), - [sym_list] = STATE(1953), - [sym_negated_command] = STATE(1953), - [sym_test_command] = STATE(1953), - [sym_declaration_command] = STATE(1953), - [sym_unset_command] = STATE(1953), - [sym_command] = STATE(1953), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(315), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(140), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [131] = { - [sym_terminated_statement] = STATE(3778), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [132] = { - [sym_redirected_statement] = STATE(1830), - [sym_for_statement] = STATE(1830), - [sym_c_style_for_statement] = STATE(1830), - [sym_while_statement] = STATE(1830), - [sym_if_statement] = STATE(1830), - [sym_case_statement] = STATE(1830), - [sym_function_definition] = STATE(1830), - [sym_compound_statement] = STATE(1830), - [sym_subshell] = STATE(1830), - [sym_pipeline] = STATE(1830), - [sym_list] = STATE(1830), - [sym_negated_command] = STATE(1830), - [sym_test_command] = STATE(1830), - [sym_declaration_command] = STATE(1830), - [sym_unset_command] = STATE(1830), - [sym_command] = STATE(1830), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(260), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [133] = { - [sym_redirected_statement] = STATE(1955), - [sym_for_statement] = STATE(1955), - [sym_c_style_for_statement] = STATE(1955), - [sym_while_statement] = STATE(1955), - [sym_if_statement] = STATE(1955), - [sym_case_statement] = STATE(1955), - [sym_function_definition] = STATE(1955), - [sym_compound_statement] = STATE(1955), - [sym_subshell] = STATE(1955), - [sym_pipeline] = STATE(1955), - [sym_list] = STATE(1955), - [sym_negated_command] = STATE(1955), - [sym_test_command] = STATE(1955), - [sym_declaration_command] = STATE(1955), - [sym_unset_command] = STATE(1955), - [sym_command] = STATE(1955), - [sym_command_name] = STATE(227), - [sym_variable_assignment] = STATE(375), - [sym_subscript] = STATE(3516), - [sym_file_redirect] = STATE(661), - [sym_concatenation] = STATE(1000), - [sym_string] = STATE(829), - [sym_simple_expansion] = STATE(829), - [sym_string_expansion] = STATE(829), - [sym_expansion] = STATE(829), - [sym_command_substitution] = STATE(829), - [sym_process_substitution] = STATE(829), - [sym_semgrep_deep_expression] = STATE(829), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(954), - [aux_sym_command_repeat1] = STATE(661), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansii_c_string] = ACTIONS(47), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), - [anon_sym_BQUOTE] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_semgrep_named_ellipsis] = ACTIONS(61), - [sym_semgrep_metavar_eq] = ACTIONS(63), - [sym_semgrep_metavar_pluseq] = ACTIONS(63), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(67), - }, - [134] = { - [sym_terminated_statement] = STATE(3732), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [135] = { - [sym_redirected_statement] = STATE(1903), - [sym_for_statement] = STATE(1903), - [sym_c_style_for_statement] = STATE(1903), - [sym_while_statement] = STATE(1903), - [sym_if_statement] = STATE(1903), - [sym_case_statement] = STATE(1903), - [sym_function_definition] = STATE(1903), - [sym_compound_statement] = STATE(1903), - [sym_subshell] = STATE(1903), - [sym_pipeline] = STATE(1903), - [sym_list] = STATE(1903), - [sym_negated_command] = STATE(1903), - [sym_test_command] = STATE(1903), - [sym_declaration_command] = STATE(1903), - [sym_unset_command] = STATE(1903), - [sym_command] = STATE(1903), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(311), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [136] = { - [sym_terminated_statement] = STATE(3546), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [137] = { - [sym_terminated_statement] = STATE(3739), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [138] = { - [sym_terminated_statement] = STATE(3518), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [139] = { - [sym_terminated_statement] = STATE(3658), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [140] = { - [sym_redirected_statement] = STATE(1966), - [sym_for_statement] = STATE(1966), - [sym_c_style_for_statement] = STATE(1966), - [sym_while_statement] = STATE(1966), - [sym_if_statement] = STATE(1966), - [sym_case_statement] = STATE(1966), - [sym_function_definition] = STATE(1966), - [sym_compound_statement] = STATE(1966), - [sym_subshell] = STATE(1966), - [sym_pipeline] = STATE(1966), - [sym_list] = STATE(1966), - [sym_negated_command] = STATE(1966), - [sym_test_command] = STATE(1966), - [sym_declaration_command] = STATE(1966), - [sym_unset_command] = STATE(1966), - [sym_command] = STATE(1966), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(374), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [141] = { - [sym_redirected_statement] = STATE(1960), - [sym_for_statement] = STATE(1960), - [sym_c_style_for_statement] = STATE(1960), - [sym_while_statement] = STATE(1960), - [sym_if_statement] = STATE(1960), - [sym_case_statement] = STATE(1960), - [sym_function_definition] = STATE(1960), - [sym_compound_statement] = STATE(1960), - [sym_subshell] = STATE(1960), - [sym_pipeline] = STATE(1960), - [sym_list] = STATE(1960), - [sym_negated_command] = STATE(1960), - [sym_test_command] = STATE(1960), - [sym_declaration_command] = STATE(1960), - [sym_unset_command] = STATE(1960), - [sym_command] = STATE(1960), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(498), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_statements_repeat1] = STATE(12), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [142] = { - [sym_terminated_statement] = STATE(3592), - [sym_redirected_statement] = STATE(2007), - [sym_for_statement] = STATE(2007), - [sym_c_style_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_compound_statement] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_negated_command] = STATE(2007), - [sym_test_command] = STATE(2007), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), - [sym_command] = STATE(2007), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(433), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [143] = { - [sym_redirected_statement] = STATE(1831), - [sym_for_statement] = STATE(1831), - [sym_c_style_for_statement] = STATE(1831), - [sym_while_statement] = STATE(1831), - [sym_if_statement] = STATE(1831), - [sym_case_statement] = STATE(1831), - [sym_function_definition] = STATE(1831), - [sym_compound_statement] = STATE(1831), - [sym_subshell] = STATE(1831), - [sym_pipeline] = STATE(1831), - [sym_list] = STATE(1831), - [sym_negated_command] = STATE(1831), - [sym_test_command] = STATE(1831), - [sym_declaration_command] = STATE(1831), - [sym_unset_command] = STATE(1831), - [sym_command] = STATE(1831), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(265), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [144] = { - [sym_redirected_statement] = STATE(1909), - [sym_for_statement] = STATE(1909), - [sym_c_style_for_statement] = STATE(1909), - [sym_while_statement] = STATE(1909), - [sym_if_statement] = STATE(1909), - [sym_case_statement] = STATE(1909), - [sym_function_definition] = STATE(1909), - [sym_compound_statement] = STATE(1909), - [sym_subshell] = STATE(1909), - [sym_pipeline] = STATE(1909), - [sym_list] = STATE(1909), - [sym_negated_command] = STATE(1909), - [sym_test_command] = STATE(1909), - [sym_declaration_command] = STATE(1909), - [sym_unset_command] = STATE(1909), - [sym_command] = STATE(1909), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(313), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [145] = { - [sym_redirected_statement] = STATE(1827), - [sym_for_statement] = STATE(1827), - [sym_c_style_for_statement] = STATE(1827), - [sym_while_statement] = STATE(1827), - [sym_if_statement] = STATE(1827), - [sym_case_statement] = STATE(1827), - [sym_function_definition] = STATE(1827), - [sym_compound_statement] = STATE(1827), - [sym_subshell] = STATE(1827), - [sym_pipeline] = STATE(1827), - [sym_list] = STATE(1827), - [sym_negated_command] = STATE(1827), - [sym_test_command] = STATE(1827), - [sym_declaration_command] = STATE(1827), - [sym_unset_command] = STATE(1827), - [sym_command] = STATE(1827), - [sym_command_name] = STATE(204), - [sym_variable_assignment] = STATE(261), - [sym_subscript] = STATE(3531), - [sym_file_redirect] = STATE(529), - [sym_concatenation] = STATE(726), - [sym_string] = STATE(481), - [sym_simple_expansion] = STATE(481), - [sym_string_expansion] = STATE(481), - [sym_expansion] = STATE(481), - [sym_command_substitution] = STATE(481), - [sym_process_substitution] = STATE(481), - [sym_semgrep_deep_expression] = STATE(481), - [aux_sym_for_statement_repeat1] = STATE(528), - [aux_sym_command_repeat1] = STATE(529), - [sym_word] = ACTIONS(139), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(165), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(171), - [anon_sym_typeset] = ACTIONS(171), - [anon_sym_export] = ACTIONS(171), - [anon_sym_readonly] = ACTIONS(171), - [anon_sym_local] = ACTIONS(171), - [anon_sym_unset] = ACTIONS(173), - [anon_sym_unsetenv] = ACTIONS(173), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(175), - [sym_special_character] = ACTIONS(177), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_raw_string] = ACTIONS(181), - [sym_ansii_c_string] = ACTIONS(181), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(183), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(185), - [anon_sym_BQUOTE] = ACTIONS(187), - [anon_sym_LT_LPAREN] = ACTIONS(189), - [anon_sym_GT_LPAREN] = ACTIONS(189), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(191), - [sym_semgrep_named_ellipsis] = ACTIONS(193), - [sym_semgrep_metavar_eq] = ACTIONS(195), - [sym_semgrep_metavar_pluseq] = ACTIONS(195), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(197), - }, - [146] = { - [sym_redirected_statement] = STATE(1926), - [sym_for_statement] = STATE(1926), - [sym_c_style_for_statement] = STATE(1926), - [sym_while_statement] = STATE(1926), - [sym_if_statement] = STATE(1926), - [sym_case_statement] = STATE(1926), - [sym_function_definition] = STATE(1926), - [sym_compound_statement] = STATE(1926), - [sym_subshell] = STATE(1926), - [sym_pipeline] = STATE(1926), - [sym_list] = STATE(1926), - [sym_negated_command] = STATE(1926), - [sym_test_command] = STATE(1926), - [sym_declaration_command] = STATE(1926), - [sym_unset_command] = STATE(1926), - [sym_command] = STATE(1926), - [sym_command_name] = STATE(209), - [sym_variable_assignment] = STATE(312), - [sym_subscript] = STATE(3538), - [sym_file_redirect] = STATE(607), - [sym_concatenation] = STATE(922), - [sym_string] = STATE(606), - [sym_simple_expansion] = STATE(606), - [sym_string_expansion] = STATE(606), - [sym_expansion] = STATE(606), - [sym_command_substitution] = STATE(606), - [sym_process_substitution] = STATE(606), - [sym_semgrep_deep_expression] = STATE(606), - [aux_sym_for_statement_repeat1] = STATE(734), - [aux_sym_command_repeat1] = STATE(607), - [sym_word] = ACTIONS(311), - [anon_sym_for] = ACTIONS(143), - [anon_sym_select] = ACTIONS(145), - [anon_sym_LPAREN_LPAREN] = ACTIONS(147), - [anon_sym_while] = ACTIONS(149), - [anon_sym_if] = ACTIONS(151), - [anon_sym_case] = ACTIONS(153), - [anon_sym_function] = ACTIONS(159), - [anon_sym_LPAREN] = ACTIONS(161), - [anon_sym_LBRACE] = ACTIONS(163), - [anon_sym_BANG] = ACTIONS(315), - [anon_sym_LBRACK] = ACTIONS(167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(169), - [anon_sym_declare] = ACTIONS(317), - [anon_sym_typeset] = ACTIONS(317), - [anon_sym_export] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(317), - [anon_sym_local] = ACTIONS(317), - [anon_sym_unset] = ACTIONS(319), - [anon_sym_unsetenv] = ACTIONS(319), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(321), - [sym_special_character] = ACTIONS(323), - [anon_sym_DQUOTE] = ACTIONS(325), - [sym_raw_string] = ACTIONS(327), - [sym_ansii_c_string] = ACTIONS(327), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(331), - [anon_sym_BQUOTE] = ACTIONS(333), - [anon_sym_LT_LPAREN] = ACTIONS(335), - [anon_sym_GT_LPAREN] = ACTIONS(335), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(337), - [sym_semgrep_named_ellipsis] = ACTIONS(339), - [sym_semgrep_metavar_eq] = ACTIONS(341), - [sym_semgrep_metavar_pluseq] = ACTIONS(341), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(343), - }, - [147] = { - [sym_redirected_statement] = STATE(1965), - [sym_for_statement] = STATE(1965), - [sym_c_style_for_statement] = STATE(1965), - [sym_while_statement] = STATE(1965), - [sym_if_statement] = STATE(1965), - [sym_case_statement] = STATE(1965), - [sym_function_definition] = STATE(1965), - [sym_compound_statement] = STATE(1965), - [sym_subshell] = STATE(1965), - [sym_pipeline] = STATE(1965), - [sym_list] = STATE(1965), - [sym_negated_command] = STATE(1965), - [sym_test_command] = STATE(1965), - [sym_declaration_command] = STATE(1965), - [sym_unset_command] = STATE(1965), - [sym_command] = STATE(1965), - [sym_command_name] = STATE(227), - [sym_variable_assignment] = STATE(356), - [sym_subscript] = STATE(3516), - [sym_file_redirect] = STATE(661), - [sym_concatenation] = STATE(1000), - [sym_string] = STATE(829), - [sym_simple_expansion] = STATE(829), - [sym_string_expansion] = STATE(829), - [sym_expansion] = STATE(829), - [sym_command_substitution] = STATE(829), - [sym_process_substitution] = STATE(829), - [sym_semgrep_deep_expression] = STATE(829), - [aux_sym_for_statement_repeat1] = STATE(954), - [aux_sym_command_repeat1] = STATE(661), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansii_c_string] = ACTIONS(47), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), - [anon_sym_BQUOTE] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_semgrep_named_ellipsis] = ACTIONS(61), - [sym_semgrep_metavar_eq] = ACTIONS(63), - [sym_semgrep_metavar_pluseq] = ACTIONS(63), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(67), - }, - [148] = { - [sym_redirected_statement] = STATE(1956), - [sym_for_statement] = STATE(1956), - [sym_c_style_for_statement] = STATE(1956), - [sym_while_statement] = STATE(1956), - [sym_if_statement] = STATE(1956), - [sym_case_statement] = STATE(1956), - [sym_function_definition] = STATE(1956), - [sym_compound_statement] = STATE(1956), - [sym_subshell] = STATE(1956), - [sym_pipeline] = STATE(1956), - [sym_list] = STATE(1956), - [sym_negated_command] = STATE(1956), - [sym_test_command] = STATE(1956), - [sym_declaration_command] = STATE(1956), - [sym_unset_command] = STATE(1956), - [sym_command] = STATE(1956), - [sym_command_name] = STATE(227), - [sym_variable_assignment] = STATE(357), - [sym_subscript] = STATE(3516), - [sym_file_redirect] = STATE(661), - [sym_concatenation] = STATE(1000), - [sym_string] = STATE(829), - [sym_simple_expansion] = STATE(829), - [sym_string_expansion] = STATE(829), - [sym_expansion] = STATE(829), - [sym_command_substitution] = STATE(829), - [sym_process_substitution] = STATE(829), - [sym_semgrep_deep_expression] = STATE(829), - [aux_sym_for_statement_repeat1] = STATE(954), - [aux_sym_command_repeat1] = STATE(661), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_while] = ACTIONS(15), - [anon_sym_if] = ACTIONS(17), - [anon_sym_case] = ACTIONS(19), - [anon_sym_function] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(23), - [anon_sym_LBRACE] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(27), - [anon_sym_LBRACK] = ACTIONS(29), - [anon_sym_LBRACK_LBRACK] = ACTIONS(31), - [anon_sym_declare] = ACTIONS(33), - [anon_sym_typeset] = ACTIONS(33), - [anon_sym_export] = ACTIONS(33), - [anon_sym_readonly] = ACTIONS(33), - [anon_sym_local] = ACTIONS(33), - [anon_sym_unset] = ACTIONS(35), - [anon_sym_unsetenv] = ACTIONS(35), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [sym_special_character] = ACTIONS(43), - [anon_sym_DQUOTE] = ACTIONS(45), - [sym_raw_string] = ACTIONS(47), - [sym_ansii_c_string] = ACTIONS(47), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(49), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(51), - [anon_sym_BQUOTE] = ACTIONS(53), - [anon_sym_LT_LPAREN] = ACTIONS(55), - [anon_sym_GT_LPAREN] = ACTIONS(55), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(59), - [sym_semgrep_named_ellipsis] = ACTIONS(61), - [sym_semgrep_metavar_eq] = ACTIONS(63), - [sym_semgrep_metavar_pluseq] = ACTIONS(63), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(67), - }, - [149] = { - [sym_redirected_statement] = STATE(1964), - [sym_for_statement] = STATE(1964), - [sym_c_style_for_statement] = STATE(1964), - [sym_while_statement] = STATE(1964), - [sym_if_statement] = STATE(1964), - [sym_case_statement] = STATE(1964), - [sym_function_definition] = STATE(1964), - [sym_compound_statement] = STATE(1964), - [sym_subshell] = STATE(1964), - [sym_pipeline] = STATE(1964), - [sym_list] = STATE(1964), - [sym_negated_command] = STATE(1964), - [sym_test_command] = STATE(1964), - [sym_declaration_command] = STATE(1964), - [sym_unset_command] = STATE(1964), - [sym_command] = STATE(1964), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(378), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [150] = { - [sym_redirected_statement] = STATE(1887), - [sym_for_statement] = STATE(1887), - [sym_c_style_for_statement] = STATE(1887), - [sym_while_statement] = STATE(1887), - [sym_if_statement] = STATE(1887), - [sym_case_statement] = STATE(1887), - [sym_function_definition] = STATE(1887), - [sym_compound_statement] = STATE(1887), - [sym_subshell] = STATE(1887), - [sym_pipeline] = STATE(1887), - [sym_list] = STATE(1887), - [sym_negated_command] = STATE(1887), - [sym_test_command] = STATE(1887), - [sym_declaration_command] = STATE(1887), - [sym_unset_command] = STATE(1887), - [sym_command] = STATE(1887), - [sym_command_name] = STATE(233), - [sym_variable_assignment] = STATE(377), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(664), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(664), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(95), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(101), - [anon_sym_typeset] = ACTIONS(101), - [anon_sym_export] = ACTIONS(101), - [anon_sym_readonly] = ACTIONS(101), - [anon_sym_local] = ACTIONS(101), - [anon_sym_unset] = ACTIONS(103), - [anon_sym_unsetenv] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [151] = { - [sym_redirected_statement] = STATE(1887), - [sym_for_statement] = STATE(1887), - [sym_c_style_for_statement] = STATE(1887), - [sym_while_statement] = STATE(1887), - [sym_if_statement] = STATE(1887), - [sym_case_statement] = STATE(1887), - [sym_function_definition] = STATE(1887), - [sym_compound_statement] = STATE(1887), - [sym_subshell] = STATE(1887), - [sym_pipeline] = STATE(1887), - [sym_list] = STATE(1887), - [sym_negated_command] = STATE(1887), - [sym_test_command] = STATE(1887), - [sym_declaration_command] = STATE(1887), - [sym_unset_command] = STATE(1887), - [sym_command] = STATE(1887), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(502), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), - }, - [152] = { - [sym_redirected_statement] = STATE(1972), - [sym_for_statement] = STATE(1972), - [sym_c_style_for_statement] = STATE(1972), - [sym_while_statement] = STATE(1972), - [sym_if_statement] = STATE(1972), - [sym_case_statement] = STATE(1972), - [sym_function_definition] = STATE(1972), - [sym_compound_statement] = STATE(1972), - [sym_subshell] = STATE(1972), - [sym_pipeline] = STATE(1972), - [sym_list] = STATE(1972), - [sym_negated_command] = STATE(1972), - [sym_test_command] = STATE(1972), - [sym_declaration_command] = STATE(1972), - [sym_unset_command] = STATE(1972), - [sym_command] = STATE(1972), - [sym_command_name] = STATE(248), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3500), - [sym_file_redirect] = STATE(653), - [sym_concatenation] = STATE(1004), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym_semgrep_deep_expression] = STATE(824), - [aux_sym_for_statement_repeat1] = STATE(962), - [aux_sym_command_repeat1] = STATE(653), - [sym_word] = ACTIONS(69), - [anon_sym_for] = ACTIONS(71), - [anon_sym_select] = ACTIONS(73), - [anon_sym_LPAREN_LPAREN] = ACTIONS(75), - [anon_sym_while] = ACTIONS(77), - [anon_sym_if] = ACTIONS(79), - [anon_sym_case] = ACTIONS(87), - [anon_sym_function] = ACTIONS(89), - [anon_sym_LPAREN] = ACTIONS(91), - [anon_sym_LBRACE] = ACTIONS(93), - [anon_sym_BANG] = ACTIONS(361), - [anon_sym_LBRACK] = ACTIONS(97), - [anon_sym_LBRACK_LBRACK] = ACTIONS(99), - [anon_sym_declare] = ACTIONS(363), - [anon_sym_typeset] = ACTIONS(363), - [anon_sym_export] = ACTIONS(363), - [anon_sym_readonly] = ACTIONS(363), - [anon_sym_local] = ACTIONS(363), - [anon_sym_unset] = ACTIONS(365), - [anon_sym_unsetenv] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(37), - [anon_sym_GT] = ACTIONS(37), - [anon_sym_GT_GT] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(37), - [anon_sym_AMP_GT_GT] = ACTIONS(39), - [anon_sym_LT_AMP] = ACTIONS(39), - [anon_sym_GT_AMP] = ACTIONS(39), - [anon_sym_GT_PIPE] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(105), - [sym_special_character] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym_raw_string] = ACTIONS(111), - [sym_ansii_c_string] = ACTIONS(111), + [STATE(422)] = { + [sym_word] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_SEMI_SEMI] = ACTIONS(966), + [aux_sym_statements_token1] = ACTIONS(968), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_STAR_STAR_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(966), + [anon_sym_GT_GT_EQ] = ACTIONS(966), + [anon_sym_AMP_EQ] = ACTIONS(966), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(966), + [anon_sym_PIPE_PIPE] = ACTIONS(966), + [anon_sym_AMP_AMP] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(966), + [anon_sym_GT_EQ] = ACTIONS(966), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_PIPE_AMP] = ACTIONS(966), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_AMP_GT] = ACTIONS(966), + [anon_sym_AMP_GT_GT] = ACTIONS(966), + [anon_sym_LT_AMP] = ACTIONS(966), + [anon_sym_GT_AMP] = ACTIONS(966), + [anon_sym_GT_PIPE] = ACTIONS(966), + [anon_sym_LT_AMP_DASH] = ACTIONS(966), + [anon_sym_GT_AMP_DASH] = ACTIONS(966), + [anon_sym_LT_LT_DASH] = ACTIONS(966), + [anon_sym_LT_LT_LT] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(966), + [aux_sym_concatenation_token1] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [sym_special_character] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym_raw_string] = ACTIONS(966), + [sym_ansi_c_string] = ACTIONS(966), + [aux_sym_number_token1] = ACTIONS(966), + [aux_sym_number_token2] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(966), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(966), + [anon_sym_LT_LPAREN] = ACTIONS(966), + [anon_sym_GT_LPAREN] = ACTIONS(966), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(966), + [sym_semgrep_named_ellipsis] = ACTIONS(966), + [sym_file_descriptor] = ACTIONS(968), + [sym_concat] = ACTIONS(968), + [sym_test_operator] = ACTIONS(968), + [sym_bare_dollar] = ACTIONS(968), + [sym_brace_start] = ACTIONS(968), + }, + [STATE(423)] = { + [sym_word] = ACTIONS(996), + [anon_sym_SEMI] = ACTIONS(996), + [anon_sym_SEMI_SEMI] = ACTIONS(996), + [aux_sym_statements_token1] = ACTIONS(998), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_STAR_STAR_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(996), + [anon_sym_GT_GT_EQ] = ACTIONS(996), + [anon_sym_AMP_EQ] = ACTIONS(996), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(996), + [anon_sym_PIPE_PIPE] = ACTIONS(996), + [anon_sym_AMP_AMP] = ACTIONS(996), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(996), + [anon_sym_GT_EQ] = ACTIONS(996), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_PERCENT] = ACTIONS(996), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(996), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_PIPE_AMP] = ACTIONS(996), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_AMP_GT] = ACTIONS(996), + [anon_sym_AMP_GT_GT] = ACTIONS(996), + [anon_sym_LT_AMP] = ACTIONS(996), + [anon_sym_GT_AMP] = ACTIONS(996), + [anon_sym_GT_PIPE] = ACTIONS(996), + [anon_sym_LT_AMP_DASH] = ACTIONS(996), + [anon_sym_GT_AMP_DASH] = ACTIONS(996), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(996), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(996), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(996), + [aux_sym_concatenation_token1] = ACTIONS(996), + [anon_sym_DOLLAR] = ACTIONS(996), + [sym_special_character] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(996), + [sym_raw_string] = ACTIONS(996), + [sym_ansi_c_string] = ACTIONS(996), + [aux_sym_number_token1] = ACTIONS(996), + [aux_sym_number_token2] = ACTIONS(996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(996), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(996), + [anon_sym_BQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(996), + [anon_sym_LT_LPAREN] = ACTIONS(996), + [anon_sym_GT_LPAREN] = ACTIONS(996), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(996), + [sym_semgrep_named_ellipsis] = ACTIONS(996), + [sym_file_descriptor] = ACTIONS(998), + [sym_concat] = ACTIONS(998), + [sym_test_operator] = ACTIONS(998), + [sym_bare_dollar] = ACTIONS(998), + [sym_brace_start] = ACTIONS(998), + }, + [STATE(424)] = { + [sym_word] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_SEMI_SEMI] = ACTIONS(1000), + [aux_sym_statements_token1] = ACTIONS(1002), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PERCENT_EQ] = ACTIONS(1000), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1000), + [anon_sym_LT_LT_EQ] = ACTIONS(1000), + [anon_sym_GT_GT_EQ] = ACTIONS(1000), + [anon_sym_AMP_EQ] = ACTIONS(1000), + [anon_sym_CARET_EQ] = ACTIONS(1000), + [anon_sym_PIPE_EQ] = ACTIONS(1000), + [anon_sym_PIPE_PIPE] = ACTIONS(1000), + [anon_sym_AMP_AMP] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_EQ_EQ] = ACTIONS(1000), + [anon_sym_BANG_EQ] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(1000), + [anon_sym_GT_EQ] = ACTIONS(1000), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_PERCENT] = ACTIONS(1000), + [anon_sym_STAR_STAR] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_PIPE_AMP] = ACTIONS(1000), + [anon_sym_EQ_TILDE] = ACTIONS(1000), + [anon_sym_AMP_GT] = ACTIONS(1000), + [anon_sym_AMP_GT_GT] = ACTIONS(1000), + [anon_sym_LT_AMP] = ACTIONS(1000), + [anon_sym_GT_AMP] = ACTIONS(1000), + [anon_sym_GT_PIPE] = ACTIONS(1000), + [anon_sym_LT_AMP_DASH] = ACTIONS(1000), + [anon_sym_GT_AMP_DASH] = ACTIONS(1000), + [anon_sym_LT_LT_DASH] = ACTIONS(1000), + [anon_sym_LT_LT_LT] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1000), + [aux_sym_concatenation_token1] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_special_character] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1000), + [sym_ansi_c_string] = ACTIONS(1000), + [aux_sym_number_token1] = ACTIONS(1000), + [aux_sym_number_token2] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1000), + [anon_sym_LT_LPAREN] = ACTIONS(1000), + [anon_sym_GT_LPAREN] = ACTIONS(1000), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1000), + [sym_semgrep_named_ellipsis] = ACTIONS(1000), + [sym_file_descriptor] = ACTIONS(1002), + [sym_concat] = ACTIONS(1002), + [sym_test_operator] = ACTIONS(1002), + [sym_bare_dollar] = ACTIONS(1002), + [sym_brace_start] = ACTIONS(1002), + }, + [STATE(425)] = { + [sym_word] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1004), + [anon_sym_SEMI_SEMI] = ACTIONS(1004), + [aux_sym_statements_token1] = ACTIONS(1006), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PERCENT_EQ] = ACTIONS(1004), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1004), + [anon_sym_LT_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_GT_EQ] = ACTIONS(1004), + [anon_sym_AMP_EQ] = ACTIONS(1004), + [anon_sym_CARET_EQ] = ACTIONS(1004), + [anon_sym_PIPE_EQ] = ACTIONS(1004), + [anon_sym_PIPE_PIPE] = ACTIONS(1004), + [anon_sym_AMP_AMP] = ACTIONS(1004), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_CARET] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1004), + [anon_sym_GT_EQ] = ACTIONS(1004), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1004), + [anon_sym_PERCENT] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_RPAREN] = ACTIONS(1004), + [anon_sym_PIPE_AMP] = ACTIONS(1004), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_AMP_GT] = ACTIONS(1004), + [anon_sym_AMP_GT_GT] = ACTIONS(1004), + [anon_sym_LT_AMP] = ACTIONS(1004), + [anon_sym_GT_AMP] = ACTIONS(1004), + [anon_sym_GT_PIPE] = ACTIONS(1004), + [anon_sym_LT_AMP_DASH] = ACTIONS(1004), + [anon_sym_GT_AMP_DASH] = ACTIONS(1004), + [anon_sym_LT_LT_DASH] = ACTIONS(1004), + [anon_sym_LT_LT_LT] = ACTIONS(1004), + [anon_sym_QMARK] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1004), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1004), + [aux_sym_concatenation_token1] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [sym_special_character] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym_raw_string] = ACTIONS(1004), + [sym_ansi_c_string] = ACTIONS(1004), + [aux_sym_number_token1] = ACTIONS(1004), + [aux_sym_number_token2] = ACTIONS(1004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1004), + [anon_sym_BQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1004), + [anon_sym_LT_LPAREN] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1004), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1004), + [sym_semgrep_named_ellipsis] = ACTIONS(1004), + [sym_file_descriptor] = ACTIONS(1006), + [sym_concat] = ACTIONS(1006), + [sym_test_operator] = ACTIONS(1006), + [sym_bare_dollar] = ACTIONS(1006), + [sym_brace_start] = ACTIONS(1006), + }, + [STATE(426)] = { + [sym_word] = ACTIONS(1008), + [anon_sym_SEMI] = ACTIONS(1008), + [anon_sym_SEMI_SEMI] = ACTIONS(1008), + [aux_sym_statements_token1] = ACTIONS(1010), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_GT_EQ] = ACTIONS(1008), + [anon_sym_AMP_EQ] = ACTIONS(1008), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1008), + [anon_sym_PIPE_PIPE] = ACTIONS(1008), + [anon_sym_AMP_AMP] = ACTIONS(1008), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1008), + [anon_sym_GT_EQ] = ACTIONS(1008), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1008), + [anon_sym_RPAREN] = ACTIONS(1008), + [anon_sym_PIPE_AMP] = ACTIONS(1008), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_AMP_GT] = ACTIONS(1008), + [anon_sym_AMP_GT_GT] = ACTIONS(1008), + [anon_sym_LT_AMP] = ACTIONS(1008), + [anon_sym_GT_AMP] = ACTIONS(1008), + [anon_sym_GT_PIPE] = ACTIONS(1008), + [anon_sym_LT_AMP_DASH] = ACTIONS(1008), + [anon_sym_GT_AMP_DASH] = ACTIONS(1008), + [anon_sym_LT_LT_DASH] = ACTIONS(1008), + [anon_sym_LT_LT_LT] = ACTIONS(1008), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1008), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1008), + [aux_sym_concatenation_token1] = ACTIONS(1008), + [anon_sym_DOLLAR] = ACTIONS(1008), + [sym_special_character] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1008), + [sym_raw_string] = ACTIONS(1008), + [sym_ansi_c_string] = ACTIONS(1008), + [aux_sym_number_token1] = ACTIONS(1008), + [aux_sym_number_token2] = ACTIONS(1008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1008), + [anon_sym_LT_LPAREN] = ACTIONS(1008), + [anon_sym_GT_LPAREN] = ACTIONS(1008), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1008), + [sym_semgrep_named_ellipsis] = ACTIONS(1008), + [sym_file_descriptor] = ACTIONS(1010), + [sym_concat] = ACTIONS(1010), + [sym_test_operator] = ACTIONS(1010), + [sym_bare_dollar] = ACTIONS(1010), + [sym_brace_start] = ACTIONS(1010), + }, + [STATE(427)] = { + [sym_word] = ACTIONS(1012), + [anon_sym_SEMI] = ACTIONS(1012), + [anon_sym_SEMI_SEMI] = ACTIONS(1012), + [aux_sym_statements_token1] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PERCENT_EQ] = ACTIONS(1012), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1012), + [anon_sym_LT_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_GT_EQ] = ACTIONS(1012), + [anon_sym_AMP_EQ] = ACTIONS(1012), + [anon_sym_CARET_EQ] = ACTIONS(1012), + [anon_sym_PIPE_EQ] = ACTIONS(1012), + [anon_sym_PIPE_PIPE] = ACTIONS(1012), + [anon_sym_AMP_AMP] = ACTIONS(1012), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_LT_EQ] = ACTIONS(1012), + [anon_sym_GT_EQ] = ACTIONS(1012), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1012), + [anon_sym_RPAREN] = ACTIONS(1012), + [anon_sym_PIPE_AMP] = ACTIONS(1012), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_AMP_GT] = ACTIONS(1012), + [anon_sym_AMP_GT_GT] = ACTIONS(1012), + [anon_sym_LT_AMP] = ACTIONS(1012), + [anon_sym_GT_AMP] = ACTIONS(1012), + [anon_sym_GT_PIPE] = ACTIONS(1012), + [anon_sym_LT_AMP_DASH] = ACTIONS(1012), + [anon_sym_GT_AMP_DASH] = ACTIONS(1012), + [anon_sym_LT_LT_DASH] = ACTIONS(1012), + [anon_sym_LT_LT_LT] = ACTIONS(1012), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1012), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1012), + [aux_sym_concatenation_token1] = ACTIONS(1012), + [anon_sym_DOLLAR] = ACTIONS(1012), + [sym_special_character] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1012), + [sym_raw_string] = ACTIONS(1012), + [sym_ansi_c_string] = ACTIONS(1012), + [aux_sym_number_token1] = ACTIONS(1012), + [aux_sym_number_token2] = ACTIONS(1012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1012), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1012), + [anon_sym_BQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1012), + [anon_sym_LT_LPAREN] = ACTIONS(1012), + [anon_sym_GT_LPAREN] = ACTIONS(1012), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1012), + [sym_semgrep_named_ellipsis] = ACTIONS(1012), + [sym_file_descriptor] = ACTIONS(1014), + [sym_concat] = ACTIONS(1014), + [sym_test_operator] = ACTIONS(1014), + [sym_bare_dollar] = ACTIONS(1014), + [sym_brace_start] = ACTIONS(1014), + }, + [STATE(428)] = { + [sym_word] = ACTIONS(1016), + [anon_sym_SEMI] = ACTIONS(1016), + [anon_sym_SEMI_SEMI] = ACTIONS(1016), + [aux_sym_statements_token1] = ACTIONS(1018), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PERCENT_EQ] = ACTIONS(1016), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1016), + [anon_sym_LT_LT_EQ] = ACTIONS(1016), + [anon_sym_GT_GT_EQ] = ACTIONS(1016), + [anon_sym_AMP_EQ] = ACTIONS(1016), + [anon_sym_CARET_EQ] = ACTIONS(1016), + [anon_sym_PIPE_EQ] = ACTIONS(1016), + [anon_sym_PIPE_PIPE] = ACTIONS(1016), + [anon_sym_AMP_AMP] = ACTIONS(1016), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_CARET] = ACTIONS(1016), + [anon_sym_EQ_EQ] = ACTIONS(1016), + [anon_sym_BANG_EQ] = ACTIONS(1016), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1016), + [anon_sym_GT_EQ] = ACTIONS(1016), + [anon_sym_LT_LT] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1016), + [anon_sym_RPAREN] = ACTIONS(1016), + [anon_sym_PIPE_AMP] = ACTIONS(1016), + [anon_sym_EQ_TILDE] = ACTIONS(1016), + [anon_sym_AMP_GT] = ACTIONS(1016), + [anon_sym_AMP_GT_GT] = ACTIONS(1016), + [anon_sym_LT_AMP] = ACTIONS(1016), + [anon_sym_GT_AMP] = ACTIONS(1016), + [anon_sym_GT_PIPE] = ACTIONS(1016), + [anon_sym_LT_AMP_DASH] = ACTIONS(1016), + [anon_sym_GT_AMP_DASH] = ACTIONS(1016), + [anon_sym_LT_LT_DASH] = ACTIONS(1016), + [anon_sym_LT_LT_LT] = ACTIONS(1016), + [anon_sym_QMARK] = ACTIONS(1016), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1016), + [aux_sym_concatenation_token1] = ACTIONS(1016), + [anon_sym_DOLLAR] = ACTIONS(1016), + [sym_special_character] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1016), + [sym_raw_string] = ACTIONS(1016), + [sym_ansi_c_string] = ACTIONS(1016), + [aux_sym_number_token1] = ACTIONS(1016), + [aux_sym_number_token2] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1016), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1016), + [anon_sym_BQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1016), + [anon_sym_LT_LPAREN] = ACTIONS(1016), + [anon_sym_GT_LPAREN] = ACTIONS(1016), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1016), + [sym_semgrep_named_ellipsis] = ACTIONS(1016), + [sym_file_descriptor] = ACTIONS(1018), + [sym_concat] = ACTIONS(1018), + [sym_test_operator] = ACTIONS(1018), + [sym_bare_dollar] = ACTIONS(1018), + [sym_brace_start] = ACTIONS(1018), + }, + [STATE(429)] = { + [sym_word] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_SEMI_SEMI] = ACTIONS(1020), + [aux_sym_statements_token1] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PERCENT_EQ] = ACTIONS(1020), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1020), + [anon_sym_LT_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_GT_EQ] = ACTIONS(1020), + [anon_sym_AMP_EQ] = ACTIONS(1020), + [anon_sym_CARET_EQ] = ACTIONS(1020), + [anon_sym_PIPE_EQ] = ACTIONS(1020), + [anon_sym_PIPE_PIPE] = ACTIONS(1020), + [anon_sym_AMP_AMP] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1020), + [anon_sym_GT_EQ] = ACTIONS(1020), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_PERCENT] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_PIPE_AMP] = ACTIONS(1020), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_AMP_GT] = ACTIONS(1020), + [anon_sym_AMP_GT_GT] = ACTIONS(1020), + [anon_sym_LT_AMP] = ACTIONS(1020), + [anon_sym_GT_AMP] = ACTIONS(1020), + [anon_sym_GT_PIPE] = ACTIONS(1020), + [anon_sym_LT_AMP_DASH] = ACTIONS(1020), + [anon_sym_GT_AMP_DASH] = ACTIONS(1020), + [anon_sym_LT_LT_DASH] = ACTIONS(1020), + [anon_sym_LT_LT_LT] = ACTIONS(1020), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1020), + [aux_sym_concatenation_token1] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_special_character] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym_raw_string] = ACTIONS(1020), + [sym_ansi_c_string] = ACTIONS(1020), + [aux_sym_number_token1] = ACTIONS(1020), + [aux_sym_number_token2] = ACTIONS(1020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1020), + [anon_sym_LT_LPAREN] = ACTIONS(1020), + [anon_sym_GT_LPAREN] = ACTIONS(1020), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1020), + [sym_semgrep_named_ellipsis] = ACTIONS(1020), + [sym_file_descriptor] = ACTIONS(1022), + [sym_concat] = ACTIONS(1022), + [sym_test_operator] = ACTIONS(1022), + [sym_bare_dollar] = ACTIONS(1022), + [sym_brace_start] = ACTIONS(1022), + }, + [STATE(430)] = { + [sym_word] = ACTIONS(1024), + [anon_sym_SEMI] = ACTIONS(1024), + [anon_sym_SEMI_SEMI] = ACTIONS(1024), + [aux_sym_statements_token1] = ACTIONS(1026), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_GT_EQ] = ACTIONS(1024), + [anon_sym_AMP_EQ] = ACTIONS(1024), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1024), + [anon_sym_PIPE_PIPE] = ACTIONS(1024), + [anon_sym_AMP_AMP] = ACTIONS(1024), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1024), + [anon_sym_GT_EQ] = ACTIONS(1024), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_PERCENT] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1024), + [anon_sym_RPAREN] = ACTIONS(1024), + [anon_sym_PIPE_AMP] = ACTIONS(1024), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_AMP_GT] = ACTIONS(1024), + [anon_sym_AMP_GT_GT] = ACTIONS(1024), + [anon_sym_LT_AMP] = ACTIONS(1024), + [anon_sym_GT_AMP] = ACTIONS(1024), + [anon_sym_GT_PIPE] = ACTIONS(1024), + [anon_sym_LT_AMP_DASH] = ACTIONS(1024), + [anon_sym_GT_AMP_DASH] = ACTIONS(1024), + [anon_sym_LT_LT_DASH] = ACTIONS(1024), + [anon_sym_LT_LT_LT] = ACTIONS(1024), + [anon_sym_QMARK] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1024), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1024), + [aux_sym_concatenation_token1] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1024), + [sym_special_character] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1024), + [sym_raw_string] = ACTIONS(1024), + [sym_ansi_c_string] = ACTIONS(1024), + [aux_sym_number_token1] = ACTIONS(1024), + [aux_sym_number_token2] = ACTIONS(1024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1024), + [anon_sym_LT_LPAREN] = ACTIONS(1024), + [anon_sym_GT_LPAREN] = ACTIONS(1024), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1024), + [sym_semgrep_named_ellipsis] = ACTIONS(1024), + [sym_file_descriptor] = ACTIONS(1026), + [sym_concat] = ACTIONS(1026), + [sym_test_operator] = ACTIONS(1026), + [sym_bare_dollar] = ACTIONS(1026), + [sym_brace_start] = ACTIONS(1026), + }, + [STATE(431)] = { + [sym_word] = ACTIONS(1028), + [anon_sym_SEMI] = ACTIONS(1028), + [anon_sym_SEMI_SEMI] = ACTIONS(1028), + [aux_sym_statements_token1] = ACTIONS(1030), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1028), + [anon_sym_DASH_EQ] = ACTIONS(1028), + [anon_sym_STAR_EQ] = ACTIONS(1028), + [anon_sym_SLASH_EQ] = ACTIONS(1028), + [anon_sym_PERCENT_EQ] = ACTIONS(1028), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1028), + [anon_sym_LT_LT_EQ] = ACTIONS(1028), + [anon_sym_GT_GT_EQ] = ACTIONS(1028), + [anon_sym_AMP_EQ] = ACTIONS(1028), + [anon_sym_CARET_EQ] = ACTIONS(1028), + [anon_sym_PIPE_EQ] = ACTIONS(1028), + [anon_sym_PIPE_PIPE] = ACTIONS(1028), + [anon_sym_AMP_AMP] = ACTIONS(1028), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1028), + [anon_sym_BANG_EQ] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1028), + [anon_sym_GT_EQ] = ACTIONS(1028), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_STAR_STAR] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1028), + [anon_sym_RPAREN] = ACTIONS(1028), + [anon_sym_PIPE_AMP] = ACTIONS(1028), + [anon_sym_EQ_TILDE] = ACTIONS(1028), + [anon_sym_AMP_GT] = ACTIONS(1028), + [anon_sym_AMP_GT_GT] = ACTIONS(1028), + [anon_sym_LT_AMP] = ACTIONS(1028), + [anon_sym_GT_AMP] = ACTIONS(1028), + [anon_sym_GT_PIPE] = ACTIONS(1028), + [anon_sym_LT_AMP_DASH] = ACTIONS(1028), + [anon_sym_GT_AMP_DASH] = ACTIONS(1028), + [anon_sym_LT_LT_DASH] = ACTIONS(1028), + [anon_sym_LT_LT_LT] = ACTIONS(1028), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1028), + [aux_sym_concatenation_token1] = ACTIONS(1028), + [anon_sym_DOLLAR] = ACTIONS(1028), + [sym_special_character] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1028), + [sym_raw_string] = ACTIONS(1028), + [sym_ansi_c_string] = ACTIONS(1028), + [aux_sym_number_token1] = ACTIONS(1028), + [aux_sym_number_token2] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1028), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1028), + [sym_semgrep_named_ellipsis] = ACTIONS(1028), + [sym_file_descriptor] = ACTIONS(1030), + [sym_concat] = ACTIONS(1030), + [sym_test_operator] = ACTIONS(1030), + [sym_bare_dollar] = ACTIONS(1030), + [sym_brace_start] = ACTIONS(1030), + }, + [STATE(432)] = { + [sym_word] = ACTIONS(1032), + [anon_sym_SEMI] = ACTIONS(1032), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [aux_sym_statements_token1] = ACTIONS(1034), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1032), + [anon_sym_DASH_EQ] = ACTIONS(1032), + [anon_sym_STAR_EQ] = ACTIONS(1032), + [anon_sym_SLASH_EQ] = ACTIONS(1032), + [anon_sym_PERCENT_EQ] = ACTIONS(1032), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1032), + [anon_sym_LT_LT_EQ] = ACTIONS(1032), + [anon_sym_GT_GT_EQ] = ACTIONS(1032), + [anon_sym_AMP_EQ] = ACTIONS(1032), + [anon_sym_CARET_EQ] = ACTIONS(1032), + [anon_sym_PIPE_EQ] = ACTIONS(1032), + [anon_sym_PIPE_PIPE] = ACTIONS(1032), + [anon_sym_AMP_AMP] = ACTIONS(1032), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_LT_EQ] = ACTIONS(1032), + [anon_sym_GT_EQ] = ACTIONS(1032), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_STAR_STAR] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1032), + [anon_sym_RPAREN] = ACTIONS(1032), + [anon_sym_PIPE_AMP] = ACTIONS(1032), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_AMP_GT_GT] = ACTIONS(1032), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_GT_PIPE] = ACTIONS(1032), + [anon_sym_LT_AMP_DASH] = ACTIONS(1032), + [anon_sym_GT_AMP_DASH] = ACTIONS(1032), + [anon_sym_LT_LT_DASH] = ACTIONS(1032), + [anon_sym_LT_LT_LT] = ACTIONS(1032), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1032), + [aux_sym_concatenation_token1] = ACTIONS(1032), + [anon_sym_DOLLAR] = ACTIONS(1032), + [sym_special_character] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1032), + [sym_raw_string] = ACTIONS(1032), + [sym_ansi_c_string] = ACTIONS(1032), + [aux_sym_number_token1] = ACTIONS(1032), + [aux_sym_number_token2] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1032), + [anon_sym_LT_LPAREN] = ACTIONS(1032), + [anon_sym_GT_LPAREN] = ACTIONS(1032), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1032), + [sym_semgrep_named_ellipsis] = ACTIONS(1032), + [sym_file_descriptor] = ACTIONS(1034), + [sym_concat] = ACTIONS(1034), + [sym_test_operator] = ACTIONS(1034), + [sym_bare_dollar] = ACTIONS(1034), + [sym_brace_start] = ACTIONS(1034), + }, + [STATE(433)] = { + [sym_word] = ACTIONS(1036), + [anon_sym_SEMI] = ACTIONS(1036), + [anon_sym_SEMI_SEMI] = ACTIONS(1036), + [aux_sym_statements_token1] = ACTIONS(1038), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PERCENT_EQ] = ACTIONS(1036), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1036), + [anon_sym_LT_LT_EQ] = ACTIONS(1036), + [anon_sym_GT_GT_EQ] = ACTIONS(1036), + [anon_sym_AMP_EQ] = ACTIONS(1036), + [anon_sym_CARET_EQ] = ACTIONS(1036), + [anon_sym_PIPE_EQ] = ACTIONS(1036), + [anon_sym_PIPE_PIPE] = ACTIONS(1036), + [anon_sym_AMP_AMP] = ACTIONS(1036), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1036), + [anon_sym_GT_EQ] = ACTIONS(1036), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_STAR_STAR] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1036), + [anon_sym_RPAREN] = ACTIONS(1036), + [anon_sym_PIPE_AMP] = ACTIONS(1036), + [anon_sym_EQ_TILDE] = ACTIONS(1036), + [anon_sym_AMP_GT] = ACTIONS(1036), + [anon_sym_AMP_GT_GT] = ACTIONS(1036), + [anon_sym_LT_AMP] = ACTIONS(1036), + [anon_sym_GT_AMP] = ACTIONS(1036), + [anon_sym_GT_PIPE] = ACTIONS(1036), + [anon_sym_LT_AMP_DASH] = ACTIONS(1036), + [anon_sym_GT_AMP_DASH] = ACTIONS(1036), + [anon_sym_LT_LT_DASH] = ACTIONS(1036), + [anon_sym_LT_LT_LT] = ACTIONS(1036), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1036), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1036), + [aux_sym_concatenation_token1] = ACTIONS(1036), + [anon_sym_DOLLAR] = ACTIONS(1036), + [sym_special_character] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1036), + [sym_raw_string] = ACTIONS(1036), + [sym_ansi_c_string] = ACTIONS(1036), + [aux_sym_number_token1] = ACTIONS(1036), + [aux_sym_number_token2] = ACTIONS(1036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1036), + [anon_sym_LT_LPAREN] = ACTIONS(1036), + [anon_sym_GT_LPAREN] = ACTIONS(1036), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1036), + [sym_semgrep_named_ellipsis] = ACTIONS(1036), + [sym_file_descriptor] = ACTIONS(1038), + [sym_concat] = ACTIONS(1038), + [sym_test_operator] = ACTIONS(1038), + [sym_bare_dollar] = ACTIONS(1038), + [sym_brace_start] = ACTIONS(1038), + }, + [STATE(434)] = { + [sym_word] = ACTIONS(1040), + [anon_sym_SEMI] = ACTIONS(1040), + [anon_sym_SEMI_SEMI] = ACTIONS(1040), + [aux_sym_statements_token1] = ACTIONS(1042), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PERCENT_EQ] = ACTIONS(1040), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1040), + [anon_sym_LT_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_GT_EQ] = ACTIONS(1040), + [anon_sym_AMP_EQ] = ACTIONS(1040), + [anon_sym_CARET_EQ] = ACTIONS(1040), + [anon_sym_PIPE_EQ] = ACTIONS(1040), + [anon_sym_PIPE_PIPE] = ACTIONS(1040), + [anon_sym_AMP_AMP] = ACTIONS(1040), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1040), + [anon_sym_BANG_EQ] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1040), + [anon_sym_GT_EQ] = ACTIONS(1040), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1040), + [anon_sym_STAR_STAR] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1040), + [anon_sym_RPAREN] = ACTIONS(1040), + [anon_sym_PIPE_AMP] = ACTIONS(1040), + [anon_sym_EQ_TILDE] = ACTIONS(1040), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1040), + [anon_sym_LT_AMP] = ACTIONS(1040), + [anon_sym_GT_AMP] = ACTIONS(1040), + [anon_sym_GT_PIPE] = ACTIONS(1040), + [anon_sym_LT_AMP_DASH] = ACTIONS(1040), + [anon_sym_GT_AMP_DASH] = ACTIONS(1040), + [anon_sym_LT_LT_DASH] = ACTIONS(1040), + [anon_sym_LT_LT_LT] = ACTIONS(1040), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1040), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1040), + [aux_sym_concatenation_token1] = ACTIONS(1040), + [anon_sym_DOLLAR] = ACTIONS(1040), + [sym_special_character] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1040), + [sym_raw_string] = ACTIONS(1040), + [sym_ansi_c_string] = ACTIONS(1040), + [aux_sym_number_token1] = ACTIONS(1040), + [aux_sym_number_token2] = ACTIONS(1040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1040), + [anon_sym_LT_LPAREN] = ACTIONS(1040), + [anon_sym_GT_LPAREN] = ACTIONS(1040), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1040), + [sym_semgrep_named_ellipsis] = ACTIONS(1040), + [sym_file_descriptor] = ACTIONS(1042), + [sym_concat] = ACTIONS(1042), + [sym_test_operator] = ACTIONS(1042), + [sym_bare_dollar] = ACTIONS(1042), + [sym_brace_start] = ACTIONS(1042), + }, + [STATE(435)] = { + [sym_word] = ACTIONS(1044), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_SEMI_SEMI] = ACTIONS(1044), + [aux_sym_statements_token1] = ACTIONS(1046), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PERCENT_EQ] = ACTIONS(1044), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1044), + [anon_sym_LT_LT_EQ] = ACTIONS(1044), + [anon_sym_GT_GT_EQ] = ACTIONS(1044), + [anon_sym_AMP_EQ] = ACTIONS(1044), + [anon_sym_CARET_EQ] = ACTIONS(1044), + [anon_sym_PIPE_EQ] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1044), + [anon_sym_GT_EQ] = ACTIONS(1044), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_STAR_STAR] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1044), + [anon_sym_RPAREN] = ACTIONS(1044), + [anon_sym_PIPE_AMP] = ACTIONS(1044), + [anon_sym_EQ_TILDE] = ACTIONS(1044), + [anon_sym_AMP_GT] = ACTIONS(1044), + [anon_sym_AMP_GT_GT] = ACTIONS(1044), + [anon_sym_LT_AMP] = ACTIONS(1044), + [anon_sym_GT_AMP] = ACTIONS(1044), + [anon_sym_GT_PIPE] = ACTIONS(1044), + [anon_sym_LT_AMP_DASH] = ACTIONS(1044), + [anon_sym_GT_AMP_DASH] = ACTIONS(1044), + [anon_sym_LT_LT_DASH] = ACTIONS(1044), + [anon_sym_LT_LT_LT] = ACTIONS(1044), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1044), + [aux_sym_concatenation_token1] = ACTIONS(1044), + [anon_sym_DOLLAR] = ACTIONS(1044), + [sym_special_character] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1044), + [sym_raw_string] = ACTIONS(1044), + [sym_ansi_c_string] = ACTIONS(1044), + [aux_sym_number_token1] = ACTIONS(1044), + [aux_sym_number_token2] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1044), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_BQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1044), + [anon_sym_LT_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1044), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1044), + [sym_semgrep_named_ellipsis] = ACTIONS(1044), + [sym_file_descriptor] = ACTIONS(1046), + [sym_concat] = ACTIONS(1046), + [sym_test_operator] = ACTIONS(1046), + [sym_bare_dollar] = ACTIONS(1046), + [sym_brace_start] = ACTIONS(1046), + }, + [STATE(436)] = { + [sym_word] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_SEMI_SEMI] = ACTIONS(1048), + [aux_sym_statements_token1] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1048), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1048), + [anon_sym_LT_LT_EQ] = ACTIONS(1048), + [anon_sym_GT_GT_EQ] = ACTIONS(1048), + [anon_sym_AMP_EQ] = ACTIONS(1048), + [anon_sym_CARET_EQ] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_EQ_TILDE] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1048), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_GT_PIPE] = ACTIONS(1048), + [anon_sym_LT_AMP_DASH] = ACTIONS(1048), + [anon_sym_GT_AMP_DASH] = ACTIONS(1048), + [anon_sym_LT_LT_DASH] = ACTIONS(1048), + [anon_sym_LT_LT_LT] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1048), + [aux_sym_concatenation_token1] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [sym_special_character] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [sym_ansi_c_string] = ACTIONS(1048), + [aux_sym_number_token1] = ACTIONS(1048), + [aux_sym_number_token2] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1048), + [sym_semgrep_named_ellipsis] = ACTIONS(1048), + [sym_file_descriptor] = ACTIONS(1050), + [sym_concat] = ACTIONS(1050), + [sym_test_operator] = ACTIONS(1050), + [sym_bare_dollar] = ACTIONS(1050), + [sym_brace_start] = ACTIONS(1050), + }, + [STATE(437)] = { + [sym_word] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_SEMI_SEMI] = ACTIONS(1048), + [aux_sym_statements_token1] = ACTIONS(1050), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1048), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1048), + [anon_sym_LT_LT_EQ] = ACTIONS(1048), + [anon_sym_GT_GT_EQ] = ACTIONS(1048), + [anon_sym_AMP_EQ] = ACTIONS(1048), + [anon_sym_CARET_EQ] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1048), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_PIPE_AMP] = ACTIONS(1048), + [anon_sym_EQ_TILDE] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1048), + [anon_sym_AMP_GT_GT] = ACTIONS(1048), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_GT_PIPE] = ACTIONS(1048), + [anon_sym_LT_AMP_DASH] = ACTIONS(1048), + [anon_sym_GT_AMP_DASH] = ACTIONS(1048), + [anon_sym_LT_LT_DASH] = ACTIONS(1048), + [anon_sym_LT_LT_LT] = ACTIONS(1048), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1048), + [aux_sym_concatenation_token1] = ACTIONS(1048), + [anon_sym_DOLLAR] = ACTIONS(1048), + [sym_special_character] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym_raw_string] = ACTIONS(1048), + [sym_ansi_c_string] = ACTIONS(1048), + [aux_sym_number_token1] = ACTIONS(1048), + [aux_sym_number_token2] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1048), + [anon_sym_LT_LPAREN] = ACTIONS(1048), + [anon_sym_GT_LPAREN] = ACTIONS(1048), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1048), + [sym_semgrep_named_ellipsis] = ACTIONS(1048), + [sym_file_descriptor] = ACTIONS(1050), + [sym_concat] = ACTIONS(1050), + [sym_test_operator] = ACTIONS(1050), + [sym_bare_dollar] = ACTIONS(1050), + [sym_brace_start] = ACTIONS(1050), + }, + [STATE(438)] = { + [aux_sym_for_statement_repeat1] = STATE(439), + [sym_word] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [aux_sym_statements_token1] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(246), + [anon_sym_GT_GT_EQ] = ACTIONS(246), + [anon_sym_AMP_EQ] = ACTIONS(246), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(246), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(246), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(1052), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_raw_string] = ACTIONS(241), + [sym_ansi_c_string] = ACTIONS(241), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(241), + [sym_semgrep_named_ellipsis] = ACTIONS(241), + [sym_file_descriptor] = ACTIONS(284), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(439)] = { + [aux_sym_for_statement_repeat1] = STATE(439), + [sym_word] = ACTIONS(1054), + [anon_sym_SEMI] = ACTIONS(1054), + [anon_sym_SEMI_SEMI] = ACTIONS(1054), + [aux_sym_statements_token1] = ACTIONS(1056), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PERCENT_EQ] = ACTIONS(1054), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1054), + [anon_sym_LT_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_GT_EQ] = ACTIONS(1054), + [anon_sym_AMP_EQ] = ACTIONS(1054), + [anon_sym_CARET_EQ] = ACTIONS(1054), + [anon_sym_PIPE_EQ] = ACTIONS(1054), + [anon_sym_PIPE_PIPE] = ACTIONS(1054), + [anon_sym_AMP_AMP] = ACTIONS(1054), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1054), + [anon_sym_GT_EQ] = ACTIONS(1054), + [anon_sym_LT_LT] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1054), + [anon_sym_RPAREN] = ACTIONS(1054), + [anon_sym_PIPE_AMP] = ACTIONS(1054), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1054), + [anon_sym_AMP_GT_GT] = ACTIONS(1054), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_AMP] = ACTIONS(1054), + [anon_sym_GT_PIPE] = ACTIONS(1054), + [anon_sym_LT_AMP_DASH] = ACTIONS(1054), + [anon_sym_GT_AMP_DASH] = ACTIONS(1054), + [anon_sym_LT_LT_DASH] = ACTIONS(1054), + [anon_sym_LT_LT_LT] = ACTIONS(1054), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1054), + [anon_sym_DOLLAR] = ACTIONS(1054), + [sym_special_character] = ACTIONS(1058), + [anon_sym_DQUOTE] = ACTIONS(1054), + [sym_raw_string] = ACTIONS(1054), + [sym_ansi_c_string] = ACTIONS(1054), + [aux_sym_number_token1] = ACTIONS(1054), + [aux_sym_number_token2] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1054), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1054), + [anon_sym_LT_LPAREN] = ACTIONS(1054), + [anon_sym_GT_LPAREN] = ACTIONS(1054), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1054), + [sym_semgrep_named_ellipsis] = ACTIONS(1054), + [sym_file_descriptor] = ACTIONS(1056), + [sym_test_operator] = ACTIONS(1056), + [sym_bare_dollar] = ACTIONS(1056), + [sym_brace_start] = ACTIONS(1056), + }, + [STATE(440)] = { + [sym_word] = ACTIONS(241), + [anon_sym_SEMI] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(241), + [aux_sym_statements_token1] = ACTIONS(284), + [anon_sym_AMP] = ACTIONS(243), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(246), + [anon_sym_GT_GT_EQ] = ACTIONS(246), + [anon_sym_AMP_EQ] = ACTIONS(246), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(246), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(246), + [anon_sym_GT_EQ] = ACTIONS(246), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(241), + [anon_sym_RPAREN] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(241), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(241), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(241), + [anon_sym_LT_AMP_DASH] = ACTIONS(241), + [anon_sym_GT_AMP_DASH] = ACTIONS(241), + [anon_sym_LT_LT_DASH] = ACTIONS(241), + [anon_sym_LT_LT_LT] = ACTIONS(241), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(241), + [sym_raw_string] = ACTIONS(241), + [sym_ansi_c_string] = ACTIONS(241), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), + [anon_sym_LT_LPAREN] = ACTIONS(241), + [anon_sym_GT_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(241), + [sym_semgrep_named_ellipsis] = ACTIONS(241), + [sym_file_descriptor] = ACTIONS(284), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(441)] = { + [aux_sym_concatenation_repeat1] = STATE(441), + [sym_word] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_STAR_STAR_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_RBRACK] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_AMP_GT] = ACTIONS(966), + [anon_sym_AMP_GT_GT] = ACTIONS(968), + [anon_sym_LT_AMP] = ACTIONS(966), + [anon_sym_GT_AMP] = ACTIONS(966), + [anon_sym_GT_PIPE] = ACTIONS(968), + [anon_sym_LT_AMP_DASH] = ACTIONS(968), + [anon_sym_GT_AMP_DASH] = ACTIONS(968), + [anon_sym_LT_LT_DASH] = ACTIONS(968), + [anon_sym_LT_LT_LT] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(968), + [aux_sym_concatenation_token1] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(966), + [sym_special_character] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(968), + [sym_ansi_c_string] = ACTIONS(968), + [aux_sym_number_token1] = ACTIONS(966), + [aux_sym_number_token2] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(966), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(968), + [anon_sym_LT_LPAREN] = ACTIONS(968), + [anon_sym_GT_LPAREN] = ACTIONS(968), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(968), + [sym_semgrep_named_ellipsis] = ACTIONS(968), + [sym_file_descriptor] = ACTIONS(968), + [sym_concat] = ACTIONS(1061), + [sym_test_operator] = ACTIONS(968), + [sym_bare_dollar] = ACTIONS(968), + [sym_brace_start] = ACTIONS(968), + }, + [STATE(442)] = { + [aux_sym_concatenation_repeat1] = STATE(441), + [sym_word] = ACTIONS(960), + [anon_sym_AMP] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS] = ACTIONS(960), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PERCENT_EQ] = ACTIONS(960), + [anon_sym_STAR_STAR_EQ] = ACTIONS(960), + [anon_sym_LT_LT_EQ] = ACTIONS(962), + [anon_sym_GT_GT_EQ] = ACTIONS(962), + [anon_sym_AMP_EQ] = ACTIONS(962), + [anon_sym_CARET_EQ] = ACTIONS(960), + [anon_sym_PIPE_EQ] = ACTIONS(962), + [anon_sym_PIPE_PIPE] = ACTIONS(962), + [anon_sym_AMP_AMP] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_CARET] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(962), + [anon_sym_GT_EQ] = ACTIONS(962), + [anon_sym_LT_LT] = ACTIONS(960), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(960), + [anon_sym_DASH] = ACTIONS(960), + [anon_sym_STAR] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(960), + [anon_sym_STAR_STAR] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_PIPE_AMP] = ACTIONS(962), + [anon_sym_RBRACK] = ACTIONS(962), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(960), + [anon_sym_AMP_GT_GT] = ACTIONS(962), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_GT_PIPE] = ACTIONS(962), + [anon_sym_LT_AMP_DASH] = ACTIONS(962), + [anon_sym_GT_AMP_DASH] = ACTIONS(962), + [anon_sym_LT_LT_DASH] = ACTIONS(962), + [anon_sym_LT_LT_LT] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(962), + [aux_sym_concatenation_token1] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(960), + [sym_special_character] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(962), + [sym_raw_string] = ACTIONS(962), + [sym_ansi_c_string] = ACTIONS(962), + [aux_sym_number_token1] = ACTIONS(960), + [aux_sym_number_token2] = ACTIONS(960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(960), + [anon_sym_BQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(962), + [anon_sym_LT_LPAREN] = ACTIONS(962), + [anon_sym_GT_LPAREN] = ACTIONS(962), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(962), + [sym_semgrep_named_ellipsis] = ACTIONS(962), + [sym_file_descriptor] = ACTIONS(962), + [sym_concat] = ACTIONS(1064), + [sym_test_operator] = ACTIONS(962), + [sym_bare_dollar] = ACTIONS(962), + [sym_brace_start] = ACTIONS(962), + }, + [STATE(443)] = { + [aux_sym_concatenation_repeat1] = STATE(442), + [sym_word] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(1066), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(284), + [anon_sym_LT_AMP_DASH] = ACTIONS(284), + [anon_sym_GT_AMP_DASH] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_LT_LT_LT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(284), + [aux_sym_concatenation_token1] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [sym_ansi_c_string] = ACTIONS(284), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(284), + [sym_semgrep_named_ellipsis] = ACTIONS(284), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(659), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(444)] = { + [aux_sym_concatenation_repeat1] = STATE(442), + [sym_word] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(284), + [anon_sym_LT_AMP_DASH] = ACTIONS(284), + [anon_sym_GT_AMP_DASH] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_LT_LT_LT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(284), + [aux_sym_concatenation_token1] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [sym_ansi_c_string] = ACTIONS(284), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(284), + [sym_semgrep_named_ellipsis] = ACTIONS(284), + [sym_file_descriptor] = ACTIONS(284), + [sym_concat] = ACTIONS(659), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(445)] = { + [aux_sym_concatenation_repeat1] = STATE(442), + [sym_word] = ACTIONS(976), + [anon_sym_AMP] = ACTIONS(976), + [anon_sym_EQ] = ACTIONS(976), + [anon_sym_PLUS_PLUS] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(976), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_STAR_STAR_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(978), + [anon_sym_GT_GT_EQ] = ACTIONS(978), + [anon_sym_AMP_EQ] = ACTIONS(978), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(978), + [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(976), + [anon_sym_CARET] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT] = ACTIONS(976), + [anon_sym_GT] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(978), + [anon_sym_GT_EQ] = ACTIONS(978), + [anon_sym_LT_LT] = ACTIONS(976), + [anon_sym_GT_GT] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(976), + [anon_sym_DASH] = ACTIONS(976), + [anon_sym_STAR] = ACTIONS(976), + [anon_sym_SLASH] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(976), + [anon_sym_STAR_STAR] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_RBRACK] = ACTIONS(978), + [anon_sym_EQ_TILDE] = ACTIONS(976), + [anon_sym_AMP_GT] = ACTIONS(976), + [anon_sym_AMP_GT_GT] = ACTIONS(978), + [anon_sym_LT_AMP] = ACTIONS(976), + [anon_sym_GT_AMP] = ACTIONS(976), + [anon_sym_GT_PIPE] = ACTIONS(978), + [anon_sym_LT_AMP_DASH] = ACTIONS(978), + [anon_sym_GT_AMP_DASH] = ACTIONS(978), + [anon_sym_LT_LT_DASH] = ACTIONS(978), + [anon_sym_LT_LT_LT] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(976), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(978), + [aux_sym_concatenation_token1] = ACTIONS(659), + [anon_sym_DOLLAR] = ACTIONS(976), + [sym_special_character] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym_raw_string] = ACTIONS(978), + [sym_ansi_c_string] = ACTIONS(978), + [aux_sym_number_token1] = ACTIONS(976), + [aux_sym_number_token2] = ACTIONS(976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(976), + [anon_sym_BQUOTE] = ACTIONS(976), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(978), + [anon_sym_LT_LPAREN] = ACTIONS(978), + [anon_sym_GT_LPAREN] = ACTIONS(978), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(978), + [sym_semgrep_named_ellipsis] = ACTIONS(978), + [sym_file_descriptor] = ACTIONS(978), + [sym_concat] = ACTIONS(659), + [sym_test_operator] = ACTIONS(978), + [sym_bare_dollar] = ACTIONS(978), + [sym_brace_start] = ACTIONS(978), + }, + [STATE(446)] = { + [sym_word] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), + [anon_sym_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1020), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PERCENT_EQ] = ACTIONS(1020), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1020), + [anon_sym_LT_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_GT_EQ] = ACTIONS(1022), + [anon_sym_AMP_EQ] = ACTIONS(1022), + [anon_sym_CARET_EQ] = ACTIONS(1020), + [anon_sym_PIPE_EQ] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_CARET] = ACTIONS(1020), + [anon_sym_EQ_EQ] = ACTIONS(1020), + [anon_sym_BANG_EQ] = ACTIONS(1020), + [anon_sym_LT] = ACTIONS(1020), + [anon_sym_GT] = ACTIONS(1020), + [anon_sym_LT_EQ] = ACTIONS(1022), + [anon_sym_GT_EQ] = ACTIONS(1022), + [anon_sym_LT_LT] = ACTIONS(1020), + [anon_sym_GT_GT] = ACTIONS(1020), + [anon_sym_PLUS] = ACTIONS(1020), + [anon_sym_DASH] = ACTIONS(1020), + [anon_sym_STAR] = ACTIONS(1020), + [anon_sym_SLASH] = ACTIONS(1020), + [anon_sym_PERCENT] = ACTIONS(1020), + [anon_sym_STAR_STAR] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1022), + [anon_sym_PIPE_AMP] = ACTIONS(1022), + [anon_sym_RBRACK] = ACTIONS(1022), + [anon_sym_EQ_TILDE] = ACTIONS(1020), + [anon_sym_AMP_GT] = ACTIONS(1020), + [anon_sym_AMP_GT_GT] = ACTIONS(1022), + [anon_sym_LT_AMP] = ACTIONS(1020), + [anon_sym_GT_AMP] = ACTIONS(1020), + [anon_sym_GT_PIPE] = ACTIONS(1022), + [anon_sym_LT_AMP_DASH] = ACTIONS(1022), + [anon_sym_GT_AMP_DASH] = ACTIONS(1022), + [anon_sym_LT_LT_DASH] = ACTIONS(1022), + [anon_sym_LT_LT_LT] = ACTIONS(1022), + [anon_sym_QMARK] = ACTIONS(1020), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1022), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1022), + [aux_sym_concatenation_token1] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_special_character] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1022), + [sym_raw_string] = ACTIONS(1022), + [sym_ansi_c_string] = ACTIONS(1022), + [aux_sym_number_token1] = ACTIONS(1020), + [aux_sym_number_token2] = ACTIONS(1020), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1020), + [anon_sym_BQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1022), + [anon_sym_LT_LPAREN] = ACTIONS(1022), + [anon_sym_GT_LPAREN] = ACTIONS(1022), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1022), + [sym_semgrep_named_ellipsis] = ACTIONS(1022), + [sym_file_descriptor] = ACTIONS(1022), + [sym_concat] = ACTIONS(1022), + [sym_test_operator] = ACTIONS(1022), + [sym_bare_dollar] = ACTIONS(1022), + [sym_brace_start] = ACTIONS(1022), + }, + [STATE(447)] = { + [sym_word] = ACTIONS(1028), + [anon_sym_AMP] = ACTIONS(1028), + [anon_sym_EQ] = ACTIONS(1028), + [anon_sym_PLUS_PLUS] = ACTIONS(1028), + [anon_sym_DASH_DASH] = ACTIONS(1028), + [anon_sym_PLUS_EQ] = ACTIONS(1028), + [anon_sym_DASH_EQ] = ACTIONS(1028), + [anon_sym_STAR_EQ] = ACTIONS(1028), + [anon_sym_SLASH_EQ] = ACTIONS(1028), + [anon_sym_PERCENT_EQ] = ACTIONS(1028), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1028), + [anon_sym_LT_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_GT_EQ] = ACTIONS(1030), + [anon_sym_AMP_EQ] = ACTIONS(1030), + [anon_sym_CARET_EQ] = ACTIONS(1028), + [anon_sym_PIPE_EQ] = ACTIONS(1030), + [anon_sym_PIPE_PIPE] = ACTIONS(1030), + [anon_sym_AMP_AMP] = ACTIONS(1030), + [anon_sym_PIPE] = ACTIONS(1028), + [anon_sym_CARET] = ACTIONS(1028), + [anon_sym_EQ_EQ] = ACTIONS(1028), + [anon_sym_BANG_EQ] = ACTIONS(1028), + [anon_sym_LT] = ACTIONS(1028), + [anon_sym_GT] = ACTIONS(1028), + [anon_sym_LT_EQ] = ACTIONS(1030), + [anon_sym_GT_EQ] = ACTIONS(1030), + [anon_sym_LT_LT] = ACTIONS(1028), + [anon_sym_GT_GT] = ACTIONS(1028), + [anon_sym_PLUS] = ACTIONS(1028), + [anon_sym_DASH] = ACTIONS(1028), + [anon_sym_STAR] = ACTIONS(1028), + [anon_sym_SLASH] = ACTIONS(1028), + [anon_sym_PERCENT] = ACTIONS(1028), + [anon_sym_STAR_STAR] = ACTIONS(1028), + [anon_sym_LPAREN] = ACTIONS(1030), + [anon_sym_PIPE_AMP] = ACTIONS(1030), + [anon_sym_RBRACK] = ACTIONS(1030), + [anon_sym_EQ_TILDE] = ACTIONS(1028), + [anon_sym_AMP_GT] = ACTIONS(1028), + [anon_sym_AMP_GT_GT] = ACTIONS(1030), + [anon_sym_LT_AMP] = ACTIONS(1028), + [anon_sym_GT_AMP] = ACTIONS(1028), + [anon_sym_GT_PIPE] = ACTIONS(1030), + [anon_sym_LT_AMP_DASH] = ACTIONS(1030), + [anon_sym_GT_AMP_DASH] = ACTIONS(1030), + [anon_sym_LT_LT_DASH] = ACTIONS(1030), + [anon_sym_LT_LT_LT] = ACTIONS(1030), + [anon_sym_QMARK] = ACTIONS(1028), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1030), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1030), + [aux_sym_concatenation_token1] = ACTIONS(1030), + [anon_sym_DOLLAR] = ACTIONS(1028), + [sym_special_character] = ACTIONS(1028), + [anon_sym_DQUOTE] = ACTIONS(1030), + [sym_raw_string] = ACTIONS(1030), + [sym_ansi_c_string] = ACTIONS(1030), + [aux_sym_number_token1] = ACTIONS(1028), + [aux_sym_number_token2] = ACTIONS(1028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1030), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1028), + [anon_sym_BQUOTE] = ACTIONS(1028), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1030), + [anon_sym_LT_LPAREN] = ACTIONS(1030), + [anon_sym_GT_LPAREN] = ACTIONS(1030), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1030), + [sym_semgrep_named_ellipsis] = ACTIONS(1030), + [sym_file_descriptor] = ACTIONS(1030), + [sym_concat] = ACTIONS(1030), + [sym_test_operator] = ACTIONS(1030), + [sym_bare_dollar] = ACTIONS(1030), + [sym_brace_start] = ACTIONS(1030), + }, + [STATE(448)] = { + [sym_word] = ACTIONS(1012), + [anon_sym_AMP] = ACTIONS(1012), + [anon_sym_EQ] = ACTIONS(1012), + [anon_sym_PLUS_PLUS] = ACTIONS(1012), + [anon_sym_DASH_DASH] = ACTIONS(1012), + [anon_sym_PLUS_EQ] = ACTIONS(1012), + [anon_sym_DASH_EQ] = ACTIONS(1012), + [anon_sym_STAR_EQ] = ACTIONS(1012), + [anon_sym_SLASH_EQ] = ACTIONS(1012), + [anon_sym_PERCENT_EQ] = ACTIONS(1012), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1012), + [anon_sym_LT_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_GT_EQ] = ACTIONS(1014), + [anon_sym_AMP_EQ] = ACTIONS(1014), + [anon_sym_CARET_EQ] = ACTIONS(1012), + [anon_sym_PIPE_EQ] = ACTIONS(1014), + [anon_sym_PIPE_PIPE] = ACTIONS(1014), + [anon_sym_AMP_AMP] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(1012), + [anon_sym_CARET] = ACTIONS(1012), + [anon_sym_EQ_EQ] = ACTIONS(1012), + [anon_sym_BANG_EQ] = ACTIONS(1012), + [anon_sym_LT] = ACTIONS(1012), + [anon_sym_GT] = ACTIONS(1012), + [anon_sym_LT_EQ] = ACTIONS(1014), + [anon_sym_GT_EQ] = ACTIONS(1014), + [anon_sym_LT_LT] = ACTIONS(1012), + [anon_sym_GT_GT] = ACTIONS(1012), + [anon_sym_PLUS] = ACTIONS(1012), + [anon_sym_DASH] = ACTIONS(1012), + [anon_sym_STAR] = ACTIONS(1012), + [anon_sym_SLASH] = ACTIONS(1012), + [anon_sym_PERCENT] = ACTIONS(1012), + [anon_sym_STAR_STAR] = ACTIONS(1012), + [anon_sym_LPAREN] = ACTIONS(1014), + [anon_sym_PIPE_AMP] = ACTIONS(1014), + [anon_sym_RBRACK] = ACTIONS(1014), + [anon_sym_EQ_TILDE] = ACTIONS(1012), + [anon_sym_AMP_GT] = ACTIONS(1012), + [anon_sym_AMP_GT_GT] = ACTIONS(1014), + [anon_sym_LT_AMP] = ACTIONS(1012), + [anon_sym_GT_AMP] = ACTIONS(1012), + [anon_sym_GT_PIPE] = ACTIONS(1014), + [anon_sym_LT_AMP_DASH] = ACTIONS(1014), + [anon_sym_GT_AMP_DASH] = ACTIONS(1014), + [anon_sym_LT_LT_DASH] = ACTIONS(1014), + [anon_sym_LT_LT_LT] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(1012), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1014), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1014), + [aux_sym_concatenation_token1] = ACTIONS(1014), + [anon_sym_DOLLAR] = ACTIONS(1012), + [sym_special_character] = ACTIONS(1012), + [anon_sym_DQUOTE] = ACTIONS(1014), + [sym_raw_string] = ACTIONS(1014), + [sym_ansi_c_string] = ACTIONS(1014), + [aux_sym_number_token1] = ACTIONS(1012), + [aux_sym_number_token2] = ACTIONS(1012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1014), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1012), + [anon_sym_BQUOTE] = ACTIONS(1012), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1014), + [anon_sym_LT_LPAREN] = ACTIONS(1014), + [anon_sym_GT_LPAREN] = ACTIONS(1014), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1014), + [sym_semgrep_named_ellipsis] = ACTIONS(1014), + [sym_file_descriptor] = ACTIONS(1014), + [sym_concat] = ACTIONS(1014), + [sym_test_operator] = ACTIONS(1014), + [sym_bare_dollar] = ACTIONS(1014), + [sym_brace_start] = ACTIONS(1014), + }, + [STATE(449)] = { + [sym_word] = ACTIONS(1016), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_PLUS_PLUS] = ACTIONS(1016), + [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_PLUS_EQ] = ACTIONS(1016), + [anon_sym_DASH_EQ] = ACTIONS(1016), + [anon_sym_STAR_EQ] = ACTIONS(1016), + [anon_sym_SLASH_EQ] = ACTIONS(1016), + [anon_sym_PERCENT_EQ] = ACTIONS(1016), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1016), + [anon_sym_LT_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_GT_EQ] = ACTIONS(1018), + [anon_sym_AMP_EQ] = ACTIONS(1018), + [anon_sym_CARET_EQ] = ACTIONS(1016), + [anon_sym_PIPE_EQ] = ACTIONS(1018), + [anon_sym_PIPE_PIPE] = ACTIONS(1018), + [anon_sym_AMP_AMP] = ACTIONS(1018), + [anon_sym_PIPE] = ACTIONS(1016), + [anon_sym_CARET] = ACTIONS(1016), + [anon_sym_EQ_EQ] = ACTIONS(1016), + [anon_sym_BANG_EQ] = ACTIONS(1016), + [anon_sym_LT] = ACTIONS(1016), + [anon_sym_GT] = ACTIONS(1016), + [anon_sym_LT_EQ] = ACTIONS(1018), + [anon_sym_GT_EQ] = ACTIONS(1018), + [anon_sym_LT_LT] = ACTIONS(1016), + [anon_sym_GT_GT] = ACTIONS(1016), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_STAR] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1016), + [anon_sym_PERCENT] = ACTIONS(1016), + [anon_sym_STAR_STAR] = ACTIONS(1016), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_PIPE_AMP] = ACTIONS(1018), + [anon_sym_RBRACK] = ACTIONS(1018), + [anon_sym_EQ_TILDE] = ACTIONS(1016), + [anon_sym_AMP_GT] = ACTIONS(1016), + [anon_sym_AMP_GT_GT] = ACTIONS(1018), + [anon_sym_LT_AMP] = ACTIONS(1016), + [anon_sym_GT_AMP] = ACTIONS(1016), + [anon_sym_GT_PIPE] = ACTIONS(1018), + [anon_sym_LT_AMP_DASH] = ACTIONS(1018), + [anon_sym_GT_AMP_DASH] = ACTIONS(1018), + [anon_sym_LT_LT_DASH] = ACTIONS(1018), + [anon_sym_LT_LT_LT] = ACTIONS(1018), + [anon_sym_QMARK] = ACTIONS(1016), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1018), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1018), + [aux_sym_concatenation_token1] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1016), + [sym_special_character] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym_raw_string] = ACTIONS(1018), + [sym_ansi_c_string] = ACTIONS(1018), + [aux_sym_number_token1] = ACTIONS(1016), + [aux_sym_number_token2] = ACTIONS(1016), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1018), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1016), + [anon_sym_BQUOTE] = ACTIONS(1016), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1018), + [anon_sym_LT_LPAREN] = ACTIONS(1018), + [anon_sym_GT_LPAREN] = ACTIONS(1018), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1018), + [sym_semgrep_named_ellipsis] = ACTIONS(1018), + [sym_file_descriptor] = ACTIONS(1018), + [sym_concat] = ACTIONS(1018), + [sym_test_operator] = ACTIONS(1018), + [sym_bare_dollar] = ACTIONS(1018), + [sym_brace_start] = ACTIONS(1018), + }, + [STATE(450)] = { + [sym_word] = ACTIONS(1040), + [anon_sym_AMP] = ACTIONS(1040), + [anon_sym_EQ] = ACTIONS(1040), + [anon_sym_PLUS_PLUS] = ACTIONS(1040), + [anon_sym_DASH_DASH] = ACTIONS(1040), + [anon_sym_PLUS_EQ] = ACTIONS(1040), + [anon_sym_DASH_EQ] = ACTIONS(1040), + [anon_sym_STAR_EQ] = ACTIONS(1040), + [anon_sym_SLASH_EQ] = ACTIONS(1040), + [anon_sym_PERCENT_EQ] = ACTIONS(1040), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1040), + [anon_sym_LT_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_GT_EQ] = ACTIONS(1042), + [anon_sym_AMP_EQ] = ACTIONS(1042), + [anon_sym_CARET_EQ] = ACTIONS(1040), + [anon_sym_PIPE_EQ] = ACTIONS(1042), + [anon_sym_PIPE_PIPE] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1042), + [anon_sym_PIPE] = ACTIONS(1040), + [anon_sym_CARET] = ACTIONS(1040), + [anon_sym_EQ_EQ] = ACTIONS(1040), + [anon_sym_BANG_EQ] = ACTIONS(1040), + [anon_sym_LT] = ACTIONS(1040), + [anon_sym_GT] = ACTIONS(1040), + [anon_sym_LT_EQ] = ACTIONS(1042), + [anon_sym_GT_EQ] = ACTIONS(1042), + [anon_sym_LT_LT] = ACTIONS(1040), + [anon_sym_GT_GT] = ACTIONS(1040), + [anon_sym_PLUS] = ACTIONS(1040), + [anon_sym_DASH] = ACTIONS(1040), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_SLASH] = ACTIONS(1040), + [anon_sym_PERCENT] = ACTIONS(1040), + [anon_sym_STAR_STAR] = ACTIONS(1040), + [anon_sym_LPAREN] = ACTIONS(1042), + [anon_sym_PIPE_AMP] = ACTIONS(1042), + [anon_sym_RBRACK] = ACTIONS(1042), + [anon_sym_EQ_TILDE] = ACTIONS(1040), + [anon_sym_AMP_GT] = ACTIONS(1040), + [anon_sym_AMP_GT_GT] = ACTIONS(1042), + [anon_sym_LT_AMP] = ACTIONS(1040), + [anon_sym_GT_AMP] = ACTIONS(1040), + [anon_sym_GT_PIPE] = ACTIONS(1042), + [anon_sym_LT_AMP_DASH] = ACTIONS(1042), + [anon_sym_GT_AMP_DASH] = ACTIONS(1042), + [anon_sym_LT_LT_DASH] = ACTIONS(1042), + [anon_sym_LT_LT_LT] = ACTIONS(1042), + [anon_sym_QMARK] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1042), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1042), + [aux_sym_concatenation_token1] = ACTIONS(1042), + [anon_sym_DOLLAR] = ACTIONS(1040), + [sym_special_character] = ACTIONS(1040), + [anon_sym_DQUOTE] = ACTIONS(1042), + [sym_raw_string] = ACTIONS(1042), + [sym_ansi_c_string] = ACTIONS(1042), + [aux_sym_number_token1] = ACTIONS(1040), + [aux_sym_number_token2] = ACTIONS(1040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), + [anon_sym_BQUOTE] = ACTIONS(1040), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1042), + [anon_sym_LT_LPAREN] = ACTIONS(1042), + [anon_sym_GT_LPAREN] = ACTIONS(1042), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1042), + [sym_semgrep_named_ellipsis] = ACTIONS(1042), + [sym_file_descriptor] = ACTIONS(1042), + [sym_concat] = ACTIONS(1042), + [sym_test_operator] = ACTIONS(1042), + [sym_bare_dollar] = ACTIONS(1042), + [sym_brace_start] = ACTIONS(1042), + }, + [STATE(451)] = { + [sym_word] = ACTIONS(996), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS] = ACTIONS(996), + [anon_sym_DASH_DASH] = ACTIONS(996), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PERCENT_EQ] = ACTIONS(996), + [anon_sym_STAR_STAR_EQ] = ACTIONS(996), + [anon_sym_LT_LT_EQ] = ACTIONS(998), + [anon_sym_GT_GT_EQ] = ACTIONS(998), + [anon_sym_AMP_EQ] = ACTIONS(998), + [anon_sym_CARET_EQ] = ACTIONS(996), + [anon_sym_PIPE_EQ] = ACTIONS(998), + [anon_sym_PIPE_PIPE] = ACTIONS(998), + [anon_sym_AMP_AMP] = ACTIONS(998), + [anon_sym_PIPE] = ACTIONS(996), + [anon_sym_CARET] = ACTIONS(996), + [anon_sym_EQ_EQ] = ACTIONS(996), + [anon_sym_BANG_EQ] = ACTIONS(996), + [anon_sym_LT] = ACTIONS(996), + [anon_sym_GT] = ACTIONS(996), + [anon_sym_LT_EQ] = ACTIONS(998), + [anon_sym_GT_EQ] = ACTIONS(998), + [anon_sym_LT_LT] = ACTIONS(996), + [anon_sym_GT_GT] = ACTIONS(996), + [anon_sym_PLUS] = ACTIONS(996), + [anon_sym_DASH] = ACTIONS(996), + [anon_sym_STAR] = ACTIONS(996), + [anon_sym_SLASH] = ACTIONS(996), + [anon_sym_PERCENT] = ACTIONS(996), + [anon_sym_STAR_STAR] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_PIPE_AMP] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(998), + [anon_sym_EQ_TILDE] = ACTIONS(996), + [anon_sym_AMP_GT] = ACTIONS(996), + [anon_sym_AMP_GT_GT] = ACTIONS(998), + [anon_sym_LT_AMP] = ACTIONS(996), + [anon_sym_GT_AMP] = ACTIONS(996), + [anon_sym_GT_PIPE] = ACTIONS(998), + [anon_sym_LT_AMP_DASH] = ACTIONS(998), + [anon_sym_GT_AMP_DASH] = ACTIONS(998), + [anon_sym_LT_LT_DASH] = ACTIONS(998), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [anon_sym_QMARK] = ACTIONS(996), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(998), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(998), + [aux_sym_concatenation_token1] = ACTIONS(998), + [anon_sym_DOLLAR] = ACTIONS(996), + [sym_special_character] = ACTIONS(996), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym_raw_string] = ACTIONS(998), + [sym_ansi_c_string] = ACTIONS(998), + [aux_sym_number_token1] = ACTIONS(996), + [aux_sym_number_token2] = ACTIONS(996), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(998), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(996), + [anon_sym_BQUOTE] = ACTIONS(996), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(998), + [anon_sym_LT_LPAREN] = ACTIONS(998), + [anon_sym_GT_LPAREN] = ACTIONS(998), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(998), + [sym_semgrep_named_ellipsis] = ACTIONS(998), + [sym_file_descriptor] = ACTIONS(998), + [sym_concat] = ACTIONS(998), + [sym_test_operator] = ACTIONS(998), + [sym_bare_dollar] = ACTIONS(998), + [sym_brace_start] = ACTIONS(998), + }, + [STATE(452)] = { + [sym_subshell] = STATE(4262), + [sym_test_command] = STATE(4262), + [sym_command] = STATE(4263), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1820), + [sym_subscript] = STATE(5317), + [sym_file_redirect] = STATE(2621), + [sym_herestring_redirect] = STATE(2621), + [sym_expression] = STATE(2318), + [sym_binary_expression] = STATE(2197), + [sym_ternary_expression] = STATE(2197), + [sym_unary_expression] = STATE(2197), + [sym_postfix_expression] = STATE(2197), + [sym_parenthesized_expression] = STATE(2197), + [sym_arithmetic_expansion] = STATE(444), + [sym_brace_expression] = STATE(444), + [sym_concatenation] = STATE(470), + [sym_string] = STATE(444), + [sym_translated_string] = STATE(444), + [sym_number] = STATE(444), + [sym_simple_expansion] = STATE(444), + [sym_expansion] = STATE(444), + [sym_command_substitution] = STATE(444), + [sym_process_substitution] = STATE(444), + [sym_semgrep_deep_expression] = STATE(444), + [aux_sym_for_statement_repeat1] = STATE(468), + [aux_sym_command_repeat1] = STATE(629), + [sym_word] = ACTIONS(1069), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(653), + [anon_sym_LBRACK] = ACTIONS(157), + [anon_sym_LBRACK_LBRACK] = ACTIONS(161), + [anon_sym_AMP_GT] = ACTIONS(1071), + [anon_sym_AMP_GT_GT] = ACTIONS(1073), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_GT_PIPE] = ACTIONS(1073), + [anon_sym_LT_AMP_DASH] = ACTIONS(1077), + [anon_sym_GT_AMP_DASH] = ACTIONS(1077), + [anon_sym_LT_LT_LT] = ACTIONS(1079), + [anon_sym_PLUS_PLUS2] = ACTIONS(171), + [anon_sym_DASH_DASH2] = ACTIONS(171), + [anon_sym_DASH2] = ACTIONS(173), + [anon_sym_PLUS2] = ACTIONS(173), + [anon_sym_TILDE] = ACTIONS(175), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(177), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(179), + [anon_sym_DOLLAR] = ACTIONS(181), + [sym_special_character] = ACTIONS(183), + [anon_sym_DQUOTE] = ACTIONS(185), + [sym_raw_string] = ACTIONS(187), + [sym_ansi_c_string] = ACTIONS(187), + [aux_sym_number_token1] = ACTIONS(189), + [aux_sym_number_token2] = ACTIONS(191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(195), + [anon_sym_BQUOTE] = ACTIONS(197), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(199), + [anon_sym_LT_LPAREN] = ACTIONS(201), + [anon_sym_GT_LPAREN] = ACTIONS(201), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(203), + [sym_semgrep_named_ellipsis] = ACTIONS(205), + [sym_semgrep_metavar_eq] = ACTIONS(207), + [sym_semgrep_metavar_pluseq] = ACTIONS(207), + [sym_file_descriptor] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(211), + [sym_test_operator] = ACTIONS(213), + [sym_brace_start] = ACTIONS(215), + }, + [STATE(453)] = { + [sym_word] = ACTIONS(1036), + [anon_sym_AMP] = ACTIONS(1036), + [anon_sym_EQ] = ACTIONS(1036), + [anon_sym_PLUS_PLUS] = ACTIONS(1036), + [anon_sym_DASH_DASH] = ACTIONS(1036), + [anon_sym_PLUS_EQ] = ACTIONS(1036), + [anon_sym_DASH_EQ] = ACTIONS(1036), + [anon_sym_STAR_EQ] = ACTIONS(1036), + [anon_sym_SLASH_EQ] = ACTIONS(1036), + [anon_sym_PERCENT_EQ] = ACTIONS(1036), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1036), + [anon_sym_LT_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_GT_EQ] = ACTIONS(1038), + [anon_sym_AMP_EQ] = ACTIONS(1038), + [anon_sym_CARET_EQ] = ACTIONS(1036), + [anon_sym_PIPE_EQ] = ACTIONS(1038), + [anon_sym_PIPE_PIPE] = ACTIONS(1038), + [anon_sym_AMP_AMP] = ACTIONS(1038), + [anon_sym_PIPE] = ACTIONS(1036), + [anon_sym_CARET] = ACTIONS(1036), + [anon_sym_EQ_EQ] = ACTIONS(1036), + [anon_sym_BANG_EQ] = ACTIONS(1036), + [anon_sym_LT] = ACTIONS(1036), + [anon_sym_GT] = ACTIONS(1036), + [anon_sym_LT_EQ] = ACTIONS(1038), + [anon_sym_GT_EQ] = ACTIONS(1038), + [anon_sym_LT_LT] = ACTIONS(1036), + [anon_sym_GT_GT] = ACTIONS(1036), + [anon_sym_PLUS] = ACTIONS(1036), + [anon_sym_DASH] = ACTIONS(1036), + [anon_sym_STAR] = ACTIONS(1036), + [anon_sym_SLASH] = ACTIONS(1036), + [anon_sym_PERCENT] = ACTIONS(1036), + [anon_sym_STAR_STAR] = ACTIONS(1036), + [anon_sym_LPAREN] = ACTIONS(1038), + [anon_sym_PIPE_AMP] = ACTIONS(1038), + [anon_sym_RBRACK] = ACTIONS(1038), + [anon_sym_EQ_TILDE] = ACTIONS(1036), + [anon_sym_AMP_GT] = ACTIONS(1036), + [anon_sym_AMP_GT_GT] = ACTIONS(1038), + [anon_sym_LT_AMP] = ACTIONS(1036), + [anon_sym_GT_AMP] = ACTIONS(1036), + [anon_sym_GT_PIPE] = ACTIONS(1038), + [anon_sym_LT_AMP_DASH] = ACTIONS(1038), + [anon_sym_GT_AMP_DASH] = ACTIONS(1038), + [anon_sym_LT_LT_DASH] = ACTIONS(1038), + [anon_sym_LT_LT_LT] = ACTIONS(1038), + [anon_sym_QMARK] = ACTIONS(1036), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1038), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1038), + [aux_sym_concatenation_token1] = ACTIONS(1038), + [anon_sym_DOLLAR] = ACTIONS(1036), + [sym_special_character] = ACTIONS(1036), + [anon_sym_DQUOTE] = ACTIONS(1038), + [sym_raw_string] = ACTIONS(1038), + [sym_ansi_c_string] = ACTIONS(1038), + [aux_sym_number_token1] = ACTIONS(1036), + [aux_sym_number_token2] = ACTIONS(1036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1036), + [anon_sym_BQUOTE] = ACTIONS(1036), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1038), + [anon_sym_LT_LPAREN] = ACTIONS(1038), + [anon_sym_GT_LPAREN] = ACTIONS(1038), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1038), + [sym_semgrep_named_ellipsis] = ACTIONS(1038), + [sym_file_descriptor] = ACTIONS(1038), + [sym_concat] = ACTIONS(1038), + [sym_test_operator] = ACTIONS(1038), + [sym_bare_dollar] = ACTIONS(1038), + [sym_brace_start] = ACTIONS(1038), + }, + [STATE(454)] = { + [sym_word] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1048), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1048), + [anon_sym_LT_LT_EQ] = ACTIONS(1050), + [anon_sym_GT_GT_EQ] = ACTIONS(1050), + [anon_sym_AMP_EQ] = ACTIONS(1050), + [anon_sym_CARET_EQ] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1050), + [anon_sym_EQ_TILDE] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1048), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_GT_PIPE] = ACTIONS(1050), + [anon_sym_LT_AMP_DASH] = ACTIONS(1050), + [anon_sym_GT_AMP_DASH] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1050), + [aux_sym_concatenation_token1] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [sym_special_character] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_ansi_c_string] = ACTIONS(1050), + [aux_sym_number_token1] = ACTIONS(1048), + [aux_sym_number_token2] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1050), + [sym_semgrep_named_ellipsis] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1050), + [sym_concat] = ACTIONS(1050), + [sym_test_operator] = ACTIONS(1050), + [sym_bare_dollar] = ACTIONS(1050), + [sym_brace_start] = ACTIONS(1050), + }, + [STATE(455)] = { + [sym_word] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), + [anon_sym_EQ] = ACTIONS(1044), + [anon_sym_PLUS_PLUS] = ACTIONS(1044), + [anon_sym_DASH_DASH] = ACTIONS(1044), + [anon_sym_PLUS_EQ] = ACTIONS(1044), + [anon_sym_DASH_EQ] = ACTIONS(1044), + [anon_sym_STAR_EQ] = ACTIONS(1044), + [anon_sym_SLASH_EQ] = ACTIONS(1044), + [anon_sym_PERCENT_EQ] = ACTIONS(1044), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1044), + [anon_sym_LT_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_GT_EQ] = ACTIONS(1046), + [anon_sym_AMP_EQ] = ACTIONS(1046), + [anon_sym_CARET_EQ] = ACTIONS(1044), + [anon_sym_PIPE_EQ] = ACTIONS(1046), + [anon_sym_PIPE_PIPE] = ACTIONS(1046), + [anon_sym_AMP_AMP] = ACTIONS(1046), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_CARET] = ACTIONS(1044), + [anon_sym_EQ_EQ] = ACTIONS(1044), + [anon_sym_BANG_EQ] = ACTIONS(1044), + [anon_sym_LT] = ACTIONS(1044), + [anon_sym_GT] = ACTIONS(1044), + [anon_sym_LT_EQ] = ACTIONS(1046), + [anon_sym_GT_EQ] = ACTIONS(1046), + [anon_sym_LT_LT] = ACTIONS(1044), + [anon_sym_GT_GT] = ACTIONS(1044), + [anon_sym_PLUS] = ACTIONS(1044), + [anon_sym_DASH] = ACTIONS(1044), + [anon_sym_STAR] = ACTIONS(1044), + [anon_sym_SLASH] = ACTIONS(1044), + [anon_sym_PERCENT] = ACTIONS(1044), + [anon_sym_STAR_STAR] = ACTIONS(1044), + [anon_sym_LPAREN] = ACTIONS(1046), + [anon_sym_PIPE_AMP] = ACTIONS(1046), + [anon_sym_RBRACK] = ACTIONS(1046), + [anon_sym_EQ_TILDE] = ACTIONS(1044), + [anon_sym_AMP_GT] = ACTIONS(1044), + [anon_sym_AMP_GT_GT] = ACTIONS(1046), + [anon_sym_LT_AMP] = ACTIONS(1044), + [anon_sym_GT_AMP] = ACTIONS(1044), + [anon_sym_GT_PIPE] = ACTIONS(1046), + [anon_sym_LT_AMP_DASH] = ACTIONS(1046), + [anon_sym_GT_AMP_DASH] = ACTIONS(1046), + [anon_sym_LT_LT_DASH] = ACTIONS(1046), + [anon_sym_LT_LT_LT] = ACTIONS(1046), + [anon_sym_QMARK] = ACTIONS(1044), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1046), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1046), + [aux_sym_concatenation_token1] = ACTIONS(1046), + [anon_sym_DOLLAR] = ACTIONS(1044), + [sym_special_character] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1046), + [sym_raw_string] = ACTIONS(1046), + [sym_ansi_c_string] = ACTIONS(1046), + [aux_sym_number_token1] = ACTIONS(1044), + [aux_sym_number_token2] = ACTIONS(1044), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1046), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1044), + [anon_sym_BQUOTE] = ACTIONS(1044), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1046), + [anon_sym_LT_LPAREN] = ACTIONS(1046), + [anon_sym_GT_LPAREN] = ACTIONS(1046), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1046), + [sym_semgrep_named_ellipsis] = ACTIONS(1046), + [sym_file_descriptor] = ACTIONS(1046), + [sym_concat] = ACTIONS(1046), + [sym_test_operator] = ACTIONS(1046), + [sym_bare_dollar] = ACTIONS(1046), + [sym_brace_start] = ACTIONS(1046), + }, + [STATE(456)] = { + [sym_word] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_PLUS_PLUS] = ACTIONS(1048), + [anon_sym_DASH_DASH] = ACTIONS(1048), + [anon_sym_PLUS_EQ] = ACTIONS(1048), + [anon_sym_DASH_EQ] = ACTIONS(1048), + [anon_sym_STAR_EQ] = ACTIONS(1048), + [anon_sym_SLASH_EQ] = ACTIONS(1048), + [anon_sym_PERCENT_EQ] = ACTIONS(1048), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1048), + [anon_sym_LT_LT_EQ] = ACTIONS(1050), + [anon_sym_GT_GT_EQ] = ACTIONS(1050), + [anon_sym_AMP_EQ] = ACTIONS(1050), + [anon_sym_CARET_EQ] = ACTIONS(1048), + [anon_sym_PIPE_EQ] = ACTIONS(1050), + [anon_sym_PIPE_PIPE] = ACTIONS(1050), + [anon_sym_AMP_AMP] = ACTIONS(1050), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1048), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1050), + [anon_sym_GT_EQ] = ACTIONS(1050), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1048), + [anon_sym_DASH] = ACTIONS(1048), + [anon_sym_STAR] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1048), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LPAREN] = ACTIONS(1050), + [anon_sym_PIPE_AMP] = ACTIONS(1050), + [anon_sym_RBRACK] = ACTIONS(1050), + [anon_sym_EQ_TILDE] = ACTIONS(1048), + [anon_sym_AMP_GT] = ACTIONS(1048), + [anon_sym_AMP_GT_GT] = ACTIONS(1050), + [anon_sym_LT_AMP] = ACTIONS(1048), + [anon_sym_GT_AMP] = ACTIONS(1048), + [anon_sym_GT_PIPE] = ACTIONS(1050), + [anon_sym_LT_AMP_DASH] = ACTIONS(1050), + [anon_sym_GT_AMP_DASH] = ACTIONS(1050), + [anon_sym_LT_LT_DASH] = ACTIONS(1050), + [anon_sym_LT_LT_LT] = ACTIONS(1050), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1050), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1050), + [aux_sym_concatenation_token1] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1048), + [sym_special_character] = ACTIONS(1048), + [anon_sym_DQUOTE] = ACTIONS(1050), + [sym_raw_string] = ACTIONS(1050), + [sym_ansi_c_string] = ACTIONS(1050), + [aux_sym_number_token1] = ACTIONS(1048), + [aux_sym_number_token2] = ACTIONS(1048), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1048), + [anon_sym_BQUOTE] = ACTIONS(1048), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1050), + [anon_sym_LT_LPAREN] = ACTIONS(1050), + [anon_sym_GT_LPAREN] = ACTIONS(1050), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1050), + [sym_semgrep_named_ellipsis] = ACTIONS(1050), + [sym_file_descriptor] = ACTIONS(1050), + [sym_concat] = ACTIONS(1050), + [sym_test_operator] = ACTIONS(1050), + [sym_bare_dollar] = ACTIONS(1050), + [sym_brace_start] = ACTIONS(1050), + }, + [STATE(457)] = { + [sym_word] = ACTIONS(1024), + [anon_sym_AMP] = ACTIONS(1024), + [anon_sym_EQ] = ACTIONS(1024), + [anon_sym_PLUS_PLUS] = ACTIONS(1024), + [anon_sym_DASH_DASH] = ACTIONS(1024), + [anon_sym_PLUS_EQ] = ACTIONS(1024), + [anon_sym_DASH_EQ] = ACTIONS(1024), + [anon_sym_STAR_EQ] = ACTIONS(1024), + [anon_sym_SLASH_EQ] = ACTIONS(1024), + [anon_sym_PERCENT_EQ] = ACTIONS(1024), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1024), + [anon_sym_LT_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_GT_EQ] = ACTIONS(1026), + [anon_sym_AMP_EQ] = ACTIONS(1026), + [anon_sym_CARET_EQ] = ACTIONS(1024), + [anon_sym_PIPE_EQ] = ACTIONS(1026), + [anon_sym_PIPE_PIPE] = ACTIONS(1026), + [anon_sym_AMP_AMP] = ACTIONS(1026), + [anon_sym_PIPE] = ACTIONS(1024), + [anon_sym_CARET] = ACTIONS(1024), + [anon_sym_EQ_EQ] = ACTIONS(1024), + [anon_sym_BANG_EQ] = ACTIONS(1024), + [anon_sym_LT] = ACTIONS(1024), + [anon_sym_GT] = ACTIONS(1024), + [anon_sym_LT_EQ] = ACTIONS(1026), + [anon_sym_GT_EQ] = ACTIONS(1026), + [anon_sym_LT_LT] = ACTIONS(1024), + [anon_sym_GT_GT] = ACTIONS(1024), + [anon_sym_PLUS] = ACTIONS(1024), + [anon_sym_DASH] = ACTIONS(1024), + [anon_sym_STAR] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1024), + [anon_sym_PERCENT] = ACTIONS(1024), + [anon_sym_STAR_STAR] = ACTIONS(1024), + [anon_sym_LPAREN] = ACTIONS(1026), + [anon_sym_PIPE_AMP] = ACTIONS(1026), + [anon_sym_RBRACK] = ACTIONS(1026), + [anon_sym_EQ_TILDE] = ACTIONS(1024), + [anon_sym_AMP_GT] = ACTIONS(1024), + [anon_sym_AMP_GT_GT] = ACTIONS(1026), + [anon_sym_LT_AMP] = ACTIONS(1024), + [anon_sym_GT_AMP] = ACTIONS(1024), + [anon_sym_GT_PIPE] = ACTIONS(1026), + [anon_sym_LT_AMP_DASH] = ACTIONS(1026), + [anon_sym_GT_AMP_DASH] = ACTIONS(1026), + [anon_sym_LT_LT_DASH] = ACTIONS(1026), + [anon_sym_LT_LT_LT] = ACTIONS(1026), + [anon_sym_QMARK] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1026), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1026), + [aux_sym_concatenation_token1] = ACTIONS(1026), + [anon_sym_DOLLAR] = ACTIONS(1024), + [sym_special_character] = ACTIONS(1024), + [anon_sym_DQUOTE] = ACTIONS(1026), + [sym_raw_string] = ACTIONS(1026), + [sym_ansi_c_string] = ACTIONS(1026), + [aux_sym_number_token1] = ACTIONS(1024), + [aux_sym_number_token2] = ACTIONS(1024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), + [anon_sym_BQUOTE] = ACTIONS(1024), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1026), + [anon_sym_LT_LPAREN] = ACTIONS(1026), + [anon_sym_GT_LPAREN] = ACTIONS(1026), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1026), + [sym_semgrep_named_ellipsis] = ACTIONS(1026), + [sym_file_descriptor] = ACTIONS(1026), + [sym_concat] = ACTIONS(1026), + [sym_test_operator] = ACTIONS(1026), + [sym_bare_dollar] = ACTIONS(1026), + [sym_brace_start] = ACTIONS(1026), + }, + [STATE(458)] = { + [sym_subshell] = STATE(3684), + [sym_test_command] = STATE(3684), + [sym_command] = STATE(3685), + [sym_command_name] = STATE(481), + [sym_variable_assignment] = STATE(1200), + [sym_subscript] = STATE(5326), + [sym_file_redirect] = STATE(2621), + [sym_herestring_redirect] = STATE(2621), + [sym_expression] = STATE(2211), + [sym_binary_expression] = STATE(1974), + [sym_ternary_expression] = STATE(1974), + [sym_unary_expression] = STATE(1974), + [sym_postfix_expression] = STATE(1974), + [sym_parenthesized_expression] = STATE(1974), + [sym_arithmetic_expansion] = STATE(414), + [sym_brace_expression] = STATE(414), + [sym_concatenation] = STATE(440), + [sym_string] = STATE(414), + [sym_translated_string] = STATE(414), + [sym_number] = STATE(414), + [sym_simple_expansion] = STATE(414), + [sym_expansion] = STATE(414), + [sym_command_substitution] = STATE(414), + [sym_process_substitution] = STATE(414), + [sym_semgrep_deep_expression] = STATE(414), + [aux_sym_for_statement_repeat1] = STATE(438), + [aux_sym_command_repeat1] = STATE(635), + [sym_word] = ACTIONS(1083), + [anon_sym_LT] = ACTIONS(1071), + [anon_sym_GT] = ACTIONS(1071), + [anon_sym_GT_GT] = ACTIONS(1073), + [anon_sym_LPAREN] = ACTIONS(1085), + [anon_sym_BANG] = ACTIONS(250), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(1071), + [anon_sym_AMP_GT_GT] = ACTIONS(1073), + [anon_sym_LT_AMP] = ACTIONS(1071), + [anon_sym_GT_AMP] = ACTIONS(1071), + [anon_sym_GT_PIPE] = ACTIONS(1073), + [anon_sym_LT_AMP_DASH] = ACTIONS(1077), + [anon_sym_GT_AMP_DASH] = ACTIONS(1077), + [anon_sym_LT_LT_LT] = ACTIONS(1079), + [anon_sym_PLUS_PLUS2] = ACTIONS(91), + [anon_sym_DASH_DASH2] = ACTIONS(91), + [anon_sym_DASH2] = ACTIONS(93), + [anon_sym_PLUS2] = ACTIONS(93), + [anon_sym_TILDE] = ACTIONS(95), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(97), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(99), + [anon_sym_DOLLAR] = ACTIONS(101), + [sym_special_character] = ACTIONS(103), + [anon_sym_DQUOTE] = ACTIONS(105), + [sym_raw_string] = ACTIONS(107), + [sym_ansi_c_string] = ACTIONS(107), + [aux_sym_number_token1] = ACTIONS(109), + [aux_sym_number_token2] = ACTIONS(111), [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), [anon_sym_BQUOTE] = ACTIONS(117), - [anon_sym_LT_LPAREN] = ACTIONS(119), - [anon_sym_GT_LPAREN] = ACTIONS(119), - [sym_comment] = ACTIONS(57), - [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(121), - [sym_semgrep_named_ellipsis] = ACTIONS(123), - [sym_semgrep_metavar_eq] = ACTIONS(125), - [sym_semgrep_metavar_pluseq] = ACTIONS(125), - [sym_file_descriptor] = ACTIONS(65), - [sym_variable_name] = ACTIONS(127), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(119), + [anon_sym_LT_LPAREN] = ACTIONS(121), + [anon_sym_GT_LPAREN] = ACTIONS(121), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(123), + [sym_semgrep_named_ellipsis] = ACTIONS(125), + [sym_semgrep_metavar_eq] = ACTIONS(77), + [sym_semgrep_metavar_pluseq] = ACTIONS(77), + [sym_file_descriptor] = ACTIONS(1081), + [sym_variable_name] = ACTIONS(81), + [sym_test_operator] = ACTIONS(127), + [sym_brace_start] = ACTIONS(129), + }, + [STATE(459)] = { + [sym_word] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_PLUS] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PERCENT_EQ] = ACTIONS(984), + [anon_sym_STAR_STAR_EQ] = ACTIONS(984), + [anon_sym_LT_LT_EQ] = ACTIONS(986), + [anon_sym_GT_GT_EQ] = ACTIONS(986), + [anon_sym_AMP_EQ] = ACTIONS(986), + [anon_sym_CARET_EQ] = ACTIONS(984), + [anon_sym_PIPE_EQ] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(986), + [anon_sym_GT_EQ] = ACTIONS(986), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_STAR_STAR] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_RBRACK] = ACTIONS(986), + [anon_sym_EQ_TILDE] = ACTIONS(984), + [anon_sym_AMP_GT] = ACTIONS(984), + [anon_sym_AMP_GT_GT] = ACTIONS(986), + [anon_sym_LT_AMP] = ACTIONS(984), + [anon_sym_GT_AMP] = ACTIONS(984), + [anon_sym_GT_PIPE] = ACTIONS(986), + [anon_sym_LT_AMP_DASH] = ACTIONS(986), + [anon_sym_GT_AMP_DASH] = ACTIONS(986), + [anon_sym_LT_LT_DASH] = ACTIONS(986), + [anon_sym_LT_LT_LT] = ACTIONS(986), + [anon_sym_QMARK] = ACTIONS(984), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(986), + [aux_sym_concatenation_token1] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [sym_special_character] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym_raw_string] = ACTIONS(986), + [sym_ansi_c_string] = ACTIONS(986), + [aux_sym_number_token1] = ACTIONS(984), + [aux_sym_number_token2] = ACTIONS(984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(986), + [anon_sym_LT_LPAREN] = ACTIONS(986), + [anon_sym_GT_LPAREN] = ACTIONS(986), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(986), + [sym_semgrep_named_ellipsis] = ACTIONS(986), + [sym_file_descriptor] = ACTIONS(986), + [sym_concat] = ACTIONS(986), + [sym_test_operator] = ACTIONS(986), + [sym_bare_dollar] = ACTIONS(986), + [sym_brace_start] = ACTIONS(986), + }, + [STATE(460)] = { + [sym_word] = ACTIONS(1000), + [anon_sym_AMP] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(1000), + [anon_sym_PLUS_PLUS] = ACTIONS(1000), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_PLUS_EQ] = ACTIONS(1000), + [anon_sym_DASH_EQ] = ACTIONS(1000), + [anon_sym_STAR_EQ] = ACTIONS(1000), + [anon_sym_SLASH_EQ] = ACTIONS(1000), + [anon_sym_PERCENT_EQ] = ACTIONS(1000), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1000), + [anon_sym_LT_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_GT_EQ] = ACTIONS(1002), + [anon_sym_AMP_EQ] = ACTIONS(1002), + [anon_sym_CARET_EQ] = ACTIONS(1000), + [anon_sym_PIPE_EQ] = ACTIONS(1002), + [anon_sym_PIPE_PIPE] = ACTIONS(1002), + [anon_sym_AMP_AMP] = ACTIONS(1002), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_CARET] = ACTIONS(1000), + [anon_sym_EQ_EQ] = ACTIONS(1000), + [anon_sym_BANG_EQ] = ACTIONS(1000), + [anon_sym_LT] = ACTIONS(1000), + [anon_sym_GT] = ACTIONS(1000), + [anon_sym_LT_EQ] = ACTIONS(1002), + [anon_sym_GT_EQ] = ACTIONS(1002), + [anon_sym_LT_LT] = ACTIONS(1000), + [anon_sym_GT_GT] = ACTIONS(1000), + [anon_sym_PLUS] = ACTIONS(1000), + [anon_sym_DASH] = ACTIONS(1000), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_SLASH] = ACTIONS(1000), + [anon_sym_PERCENT] = ACTIONS(1000), + [anon_sym_STAR_STAR] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1002), + [anon_sym_PIPE_AMP] = ACTIONS(1002), + [anon_sym_RBRACK] = ACTIONS(1002), + [anon_sym_EQ_TILDE] = ACTIONS(1000), + [anon_sym_AMP_GT] = ACTIONS(1000), + [anon_sym_AMP_GT_GT] = ACTIONS(1002), + [anon_sym_LT_AMP] = ACTIONS(1000), + [anon_sym_GT_AMP] = ACTIONS(1000), + [anon_sym_GT_PIPE] = ACTIONS(1002), + [anon_sym_LT_AMP_DASH] = ACTIONS(1002), + [anon_sym_GT_AMP_DASH] = ACTIONS(1002), + [anon_sym_LT_LT_DASH] = ACTIONS(1002), + [anon_sym_LT_LT_LT] = ACTIONS(1002), + [anon_sym_QMARK] = ACTIONS(1000), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1002), + [aux_sym_concatenation_token1] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(1000), + [sym_special_character] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1002), + [sym_raw_string] = ACTIONS(1002), + [sym_ansi_c_string] = ACTIONS(1002), + [aux_sym_number_token1] = ACTIONS(1000), + [aux_sym_number_token2] = ACTIONS(1000), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1000), + [anon_sym_BQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1002), + [anon_sym_LT_LPAREN] = ACTIONS(1002), + [anon_sym_GT_LPAREN] = ACTIONS(1002), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1002), + [sym_semgrep_named_ellipsis] = ACTIONS(1002), + [sym_file_descriptor] = ACTIONS(1002), + [sym_concat] = ACTIONS(1002), + [sym_test_operator] = ACTIONS(1002), + [sym_bare_dollar] = ACTIONS(1002), + [sym_brace_start] = ACTIONS(1002), + }, + [STATE(461)] = { + [sym_word] = ACTIONS(992), + [anon_sym_AMP] = ACTIONS(992), + [anon_sym_EQ] = ACTIONS(992), + [anon_sym_PLUS_PLUS] = ACTIONS(992), + [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_PLUS_EQ] = ACTIONS(992), + [anon_sym_DASH_EQ] = ACTIONS(992), + [anon_sym_STAR_EQ] = ACTIONS(992), + [anon_sym_SLASH_EQ] = ACTIONS(992), + [anon_sym_PERCENT_EQ] = ACTIONS(992), + [anon_sym_STAR_STAR_EQ] = ACTIONS(992), + [anon_sym_LT_LT_EQ] = ACTIONS(994), + [anon_sym_GT_GT_EQ] = ACTIONS(994), + [anon_sym_AMP_EQ] = ACTIONS(994), + [anon_sym_CARET_EQ] = ACTIONS(992), + [anon_sym_PIPE_EQ] = ACTIONS(994), + [anon_sym_PIPE_PIPE] = ACTIONS(994), + [anon_sym_AMP_AMP] = ACTIONS(994), + [anon_sym_PIPE] = ACTIONS(992), + [anon_sym_CARET] = ACTIONS(992), + [anon_sym_EQ_EQ] = ACTIONS(992), + [anon_sym_BANG_EQ] = ACTIONS(992), + [anon_sym_LT] = ACTIONS(992), + [anon_sym_GT] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(994), + [anon_sym_GT_EQ] = ACTIONS(994), + [anon_sym_LT_LT] = ACTIONS(992), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_PLUS] = ACTIONS(992), + [anon_sym_DASH] = ACTIONS(992), + [anon_sym_STAR] = ACTIONS(992), + [anon_sym_SLASH] = ACTIONS(992), + [anon_sym_PERCENT] = ACTIONS(992), + [anon_sym_STAR_STAR] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_PIPE_AMP] = ACTIONS(994), + [anon_sym_RBRACK] = ACTIONS(994), + [anon_sym_EQ_TILDE] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(992), + [anon_sym_AMP_GT_GT] = ACTIONS(994), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_GT_PIPE] = ACTIONS(994), + [anon_sym_LT_AMP_DASH] = ACTIONS(994), + [anon_sym_GT_AMP_DASH] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(994), + [anon_sym_LT_LT_LT] = ACTIONS(994), + [anon_sym_QMARK] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(994), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(994), + [aux_sym_concatenation_token1] = ACTIONS(994), + [anon_sym_DOLLAR] = ACTIONS(992), + [sym_special_character] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(994), + [sym_raw_string] = ACTIONS(994), + [sym_ansi_c_string] = ACTIONS(994), + [aux_sym_number_token1] = ACTIONS(992), + [aux_sym_number_token2] = ACTIONS(992), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(994), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(992), + [anon_sym_BQUOTE] = ACTIONS(992), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(994), + [anon_sym_LT_LPAREN] = ACTIONS(994), + [anon_sym_GT_LPAREN] = ACTIONS(994), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(994), + [sym_semgrep_named_ellipsis] = ACTIONS(994), + [sym_file_descriptor] = ACTIONS(994), + [sym_concat] = ACTIONS(994), + [sym_test_operator] = ACTIONS(994), + [sym_bare_dollar] = ACTIONS(994), + [sym_brace_start] = ACTIONS(994), + }, + [STATE(462)] = { + [sym_word] = ACTIONS(1004), + [anon_sym_AMP] = ACTIONS(1004), + [anon_sym_EQ] = ACTIONS(1004), + [anon_sym_PLUS_PLUS] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_PLUS_EQ] = ACTIONS(1004), + [anon_sym_DASH_EQ] = ACTIONS(1004), + [anon_sym_STAR_EQ] = ACTIONS(1004), + [anon_sym_SLASH_EQ] = ACTIONS(1004), + [anon_sym_PERCENT_EQ] = ACTIONS(1004), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1004), + [anon_sym_LT_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_GT_EQ] = ACTIONS(1006), + [anon_sym_AMP_EQ] = ACTIONS(1006), + [anon_sym_CARET_EQ] = ACTIONS(1004), + [anon_sym_PIPE_EQ] = ACTIONS(1006), + [anon_sym_PIPE_PIPE] = ACTIONS(1006), + [anon_sym_AMP_AMP] = ACTIONS(1006), + [anon_sym_PIPE] = ACTIONS(1004), + [anon_sym_CARET] = ACTIONS(1004), + [anon_sym_EQ_EQ] = ACTIONS(1004), + [anon_sym_BANG_EQ] = ACTIONS(1004), + [anon_sym_LT] = ACTIONS(1004), + [anon_sym_GT] = ACTIONS(1004), + [anon_sym_LT_EQ] = ACTIONS(1006), + [anon_sym_GT_EQ] = ACTIONS(1006), + [anon_sym_LT_LT] = ACTIONS(1004), + [anon_sym_GT_GT] = ACTIONS(1004), + [anon_sym_PLUS] = ACTIONS(1004), + [anon_sym_DASH] = ACTIONS(1004), + [anon_sym_STAR] = ACTIONS(1004), + [anon_sym_SLASH] = ACTIONS(1004), + [anon_sym_PERCENT] = ACTIONS(1004), + [anon_sym_STAR_STAR] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1006), + [anon_sym_PIPE_AMP] = ACTIONS(1006), + [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_EQ_TILDE] = ACTIONS(1004), + [anon_sym_AMP_GT] = ACTIONS(1004), + [anon_sym_AMP_GT_GT] = ACTIONS(1006), + [anon_sym_LT_AMP] = ACTIONS(1004), + [anon_sym_GT_AMP] = ACTIONS(1004), + [anon_sym_GT_PIPE] = ACTIONS(1006), + [anon_sym_LT_AMP_DASH] = ACTIONS(1006), + [anon_sym_GT_AMP_DASH] = ACTIONS(1006), + [anon_sym_LT_LT_DASH] = ACTIONS(1006), + [anon_sym_LT_LT_LT] = ACTIONS(1006), + [anon_sym_QMARK] = ACTIONS(1004), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1006), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1006), + [aux_sym_concatenation_token1] = ACTIONS(1006), + [anon_sym_DOLLAR] = ACTIONS(1004), + [sym_special_character] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1006), + [sym_raw_string] = ACTIONS(1006), + [sym_ansi_c_string] = ACTIONS(1006), + [aux_sym_number_token1] = ACTIONS(1004), + [aux_sym_number_token2] = ACTIONS(1004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1006), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1004), + [anon_sym_BQUOTE] = ACTIONS(1004), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1006), + [anon_sym_LT_LPAREN] = ACTIONS(1006), + [anon_sym_GT_LPAREN] = ACTIONS(1006), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1006), + [sym_semgrep_named_ellipsis] = ACTIONS(1006), + [sym_file_descriptor] = ACTIONS(1006), + [sym_concat] = ACTIONS(1006), + [sym_test_operator] = ACTIONS(1006), + [sym_bare_dollar] = ACTIONS(1006), + [sym_brace_start] = ACTIONS(1006), + }, + [STATE(463)] = { + [sym_word] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_PLUS] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(988), + [anon_sym_DASH_EQ] = ACTIONS(988), + [anon_sym_STAR_EQ] = ACTIONS(988), + [anon_sym_SLASH_EQ] = ACTIONS(988), + [anon_sym_PERCENT_EQ] = ACTIONS(988), + [anon_sym_STAR_STAR_EQ] = ACTIONS(988), + [anon_sym_LT_LT_EQ] = ACTIONS(990), + [anon_sym_GT_GT_EQ] = ACTIONS(990), + [anon_sym_AMP_EQ] = ACTIONS(990), + [anon_sym_CARET_EQ] = ACTIONS(988), + [anon_sym_PIPE_EQ] = ACTIONS(990), + [anon_sym_PIPE_PIPE] = ACTIONS(990), + [anon_sym_AMP_AMP] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(990), + [anon_sym_GT_EQ] = ACTIONS(990), + [anon_sym_LT_LT] = ACTIONS(988), + [anon_sym_GT_GT] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_STAR_STAR] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_PIPE_AMP] = ACTIONS(990), + [anon_sym_RBRACK] = ACTIONS(990), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_AMP_GT] = ACTIONS(988), + [anon_sym_AMP_GT_GT] = ACTIONS(990), + [anon_sym_LT_AMP] = ACTIONS(988), + [anon_sym_GT_AMP] = ACTIONS(988), + [anon_sym_GT_PIPE] = ACTIONS(990), + [anon_sym_LT_AMP_DASH] = ACTIONS(990), + [anon_sym_GT_AMP_DASH] = ACTIONS(990), + [anon_sym_LT_LT_DASH] = ACTIONS(990), + [anon_sym_LT_LT_LT] = ACTIONS(990), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(990), + [aux_sym_concatenation_token1] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [sym_special_character] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym_raw_string] = ACTIONS(990), + [sym_ansi_c_string] = ACTIONS(990), + [aux_sym_number_token1] = ACTIONS(988), + [aux_sym_number_token2] = ACTIONS(988), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(990), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(988), + [anon_sym_BQUOTE] = ACTIONS(988), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(990), + [anon_sym_LT_LPAREN] = ACTIONS(990), + [anon_sym_GT_LPAREN] = ACTIONS(990), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(990), + [sym_semgrep_named_ellipsis] = ACTIONS(990), + [sym_file_descriptor] = ACTIONS(990), + [sym_concat] = ACTIONS(990), + [sym_test_operator] = ACTIONS(990), + [sym_bare_dollar] = ACTIONS(990), + [sym_brace_start] = ACTIONS(990), + }, + [STATE(464)] = { + [sym_word] = ACTIONS(1008), + [anon_sym_AMP] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1008), + [anon_sym_PLUS_PLUS] = ACTIONS(1008), + [anon_sym_DASH_DASH] = ACTIONS(1008), + [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_DASH_EQ] = ACTIONS(1008), + [anon_sym_STAR_EQ] = ACTIONS(1008), + [anon_sym_SLASH_EQ] = ACTIONS(1008), + [anon_sym_PERCENT_EQ] = ACTIONS(1008), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1008), + [anon_sym_LT_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_GT_EQ] = ACTIONS(1010), + [anon_sym_AMP_EQ] = ACTIONS(1010), + [anon_sym_CARET_EQ] = ACTIONS(1008), + [anon_sym_PIPE_EQ] = ACTIONS(1010), + [anon_sym_PIPE_PIPE] = ACTIONS(1010), + [anon_sym_AMP_AMP] = ACTIONS(1010), + [anon_sym_PIPE] = ACTIONS(1008), + [anon_sym_CARET] = ACTIONS(1008), + [anon_sym_EQ_EQ] = ACTIONS(1008), + [anon_sym_BANG_EQ] = ACTIONS(1008), + [anon_sym_LT] = ACTIONS(1008), + [anon_sym_GT] = ACTIONS(1008), + [anon_sym_LT_EQ] = ACTIONS(1010), + [anon_sym_GT_EQ] = ACTIONS(1010), + [anon_sym_LT_LT] = ACTIONS(1008), + [anon_sym_GT_GT] = ACTIONS(1008), + [anon_sym_PLUS] = ACTIONS(1008), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_STAR] = ACTIONS(1008), + [anon_sym_SLASH] = ACTIONS(1008), + [anon_sym_PERCENT] = ACTIONS(1008), + [anon_sym_STAR_STAR] = ACTIONS(1008), + [anon_sym_LPAREN] = ACTIONS(1010), + [anon_sym_PIPE_AMP] = ACTIONS(1010), + [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_EQ_TILDE] = ACTIONS(1008), + [anon_sym_AMP_GT] = ACTIONS(1008), + [anon_sym_AMP_GT_GT] = ACTIONS(1010), + [anon_sym_LT_AMP] = ACTIONS(1008), + [anon_sym_GT_AMP] = ACTIONS(1008), + [anon_sym_GT_PIPE] = ACTIONS(1010), + [anon_sym_LT_AMP_DASH] = ACTIONS(1010), + [anon_sym_GT_AMP_DASH] = ACTIONS(1010), + [anon_sym_LT_LT_DASH] = ACTIONS(1010), + [anon_sym_LT_LT_LT] = ACTIONS(1010), + [anon_sym_QMARK] = ACTIONS(1008), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1010), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1010), + [aux_sym_concatenation_token1] = ACTIONS(1010), + [anon_sym_DOLLAR] = ACTIONS(1008), + [sym_special_character] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(1010), + [sym_raw_string] = ACTIONS(1010), + [sym_ansi_c_string] = ACTIONS(1010), + [aux_sym_number_token1] = ACTIONS(1008), + [aux_sym_number_token2] = ACTIONS(1008), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1010), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1008), + [anon_sym_BQUOTE] = ACTIONS(1008), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1010), + [anon_sym_LT_LPAREN] = ACTIONS(1010), + [anon_sym_GT_LPAREN] = ACTIONS(1010), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1010), + [sym_semgrep_named_ellipsis] = ACTIONS(1010), + [sym_file_descriptor] = ACTIONS(1010), + [sym_concat] = ACTIONS(1010), + [sym_test_operator] = ACTIONS(1010), + [sym_bare_dollar] = ACTIONS(1010), + [sym_brace_start] = ACTIONS(1010), + }, + [STATE(465)] = { + [sym_word] = ACTIONS(980), + [anon_sym_AMP] = ACTIONS(980), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_PLUS] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_STAR_STAR_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(982), + [anon_sym_GT_GT_EQ] = ACTIONS(982), + [anon_sym_AMP_EQ] = ACTIONS(982), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(982), + [anon_sym_PIPE_PIPE] = ACTIONS(982), + [anon_sym_AMP_AMP] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(980), + [anon_sym_CARET] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(980), + [anon_sym_GT] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(982), + [anon_sym_GT_EQ] = ACTIONS(982), + [anon_sym_LT_LT] = ACTIONS(980), + [anon_sym_GT_GT] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(980), + [anon_sym_DASH] = ACTIONS(980), + [anon_sym_STAR] = ACTIONS(980), + [anon_sym_SLASH] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(980), + [anon_sym_STAR_STAR] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_PIPE_AMP] = ACTIONS(982), + [anon_sym_RBRACK] = ACTIONS(982), + [anon_sym_EQ_TILDE] = ACTIONS(980), + [anon_sym_AMP_GT] = ACTIONS(980), + [anon_sym_AMP_GT_GT] = ACTIONS(982), + [anon_sym_LT_AMP] = ACTIONS(980), + [anon_sym_GT_AMP] = ACTIONS(980), + [anon_sym_GT_PIPE] = ACTIONS(982), + [anon_sym_LT_AMP_DASH] = ACTIONS(982), + [anon_sym_GT_AMP_DASH] = ACTIONS(982), + [anon_sym_LT_LT_DASH] = ACTIONS(982), + [anon_sym_LT_LT_LT] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(982), + [aux_sym_concatenation_token1] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [sym_special_character] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym_raw_string] = ACTIONS(982), + [sym_ansi_c_string] = ACTIONS(982), + [aux_sym_number_token1] = ACTIONS(980), + [aux_sym_number_token2] = ACTIONS(980), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(980), + [anon_sym_BQUOTE] = ACTIONS(980), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(982), + [anon_sym_LT_LPAREN] = ACTIONS(982), + [anon_sym_GT_LPAREN] = ACTIONS(982), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(982), + [sym_semgrep_named_ellipsis] = ACTIONS(982), + [sym_file_descriptor] = ACTIONS(982), + [sym_concat] = ACTIONS(982), + [sym_test_operator] = ACTIONS(982), + [sym_bare_dollar] = ACTIONS(982), + [sym_brace_start] = ACTIONS(982), + }, + [STATE(466)] = { + [sym_word] = ACTIONS(1032), + [anon_sym_AMP] = ACTIONS(1032), + [anon_sym_EQ] = ACTIONS(1032), + [anon_sym_PLUS_PLUS] = ACTIONS(1032), + [anon_sym_DASH_DASH] = ACTIONS(1032), + [anon_sym_PLUS_EQ] = ACTIONS(1032), + [anon_sym_DASH_EQ] = ACTIONS(1032), + [anon_sym_STAR_EQ] = ACTIONS(1032), + [anon_sym_SLASH_EQ] = ACTIONS(1032), + [anon_sym_PERCENT_EQ] = ACTIONS(1032), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1032), + [anon_sym_LT_LT_EQ] = ACTIONS(1034), + [anon_sym_GT_GT_EQ] = ACTIONS(1034), + [anon_sym_AMP_EQ] = ACTIONS(1034), + [anon_sym_CARET_EQ] = ACTIONS(1032), + [anon_sym_PIPE_EQ] = ACTIONS(1034), + [anon_sym_PIPE_PIPE] = ACTIONS(1034), + [anon_sym_AMP_AMP] = ACTIONS(1034), + [anon_sym_PIPE] = ACTIONS(1032), + [anon_sym_CARET] = ACTIONS(1032), + [anon_sym_EQ_EQ] = ACTIONS(1032), + [anon_sym_BANG_EQ] = ACTIONS(1032), + [anon_sym_LT] = ACTIONS(1032), + [anon_sym_GT] = ACTIONS(1032), + [anon_sym_LT_EQ] = ACTIONS(1034), + [anon_sym_GT_EQ] = ACTIONS(1034), + [anon_sym_LT_LT] = ACTIONS(1032), + [anon_sym_GT_GT] = ACTIONS(1032), + [anon_sym_PLUS] = ACTIONS(1032), + [anon_sym_DASH] = ACTIONS(1032), + [anon_sym_STAR] = ACTIONS(1032), + [anon_sym_SLASH] = ACTIONS(1032), + [anon_sym_PERCENT] = ACTIONS(1032), + [anon_sym_STAR_STAR] = ACTIONS(1032), + [anon_sym_LPAREN] = ACTIONS(1034), + [anon_sym_PIPE_AMP] = ACTIONS(1034), + [anon_sym_RBRACK] = ACTIONS(1034), + [anon_sym_EQ_TILDE] = ACTIONS(1032), + [anon_sym_AMP_GT] = ACTIONS(1032), + [anon_sym_AMP_GT_GT] = ACTIONS(1034), + [anon_sym_LT_AMP] = ACTIONS(1032), + [anon_sym_GT_AMP] = ACTIONS(1032), + [anon_sym_GT_PIPE] = ACTIONS(1034), + [anon_sym_LT_AMP_DASH] = ACTIONS(1034), + [anon_sym_GT_AMP_DASH] = ACTIONS(1034), + [anon_sym_LT_LT_DASH] = ACTIONS(1034), + [anon_sym_LT_LT_LT] = ACTIONS(1034), + [anon_sym_QMARK] = ACTIONS(1032), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1034), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1034), + [aux_sym_concatenation_token1] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1032), + [sym_special_character] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1034), + [sym_raw_string] = ACTIONS(1034), + [sym_ansi_c_string] = ACTIONS(1034), + [aux_sym_number_token1] = ACTIONS(1032), + [aux_sym_number_token2] = ACTIONS(1032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1032), + [anon_sym_BQUOTE] = ACTIONS(1032), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1034), + [anon_sym_LT_LPAREN] = ACTIONS(1034), + [anon_sym_GT_LPAREN] = ACTIONS(1034), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1034), + [sym_semgrep_named_ellipsis] = ACTIONS(1034), + [sym_file_descriptor] = ACTIONS(1034), + [sym_concat] = ACTIONS(1034), + [sym_test_operator] = ACTIONS(1034), + [sym_bare_dollar] = ACTIONS(1034), + [sym_brace_start] = ACTIONS(1034), + }, + [STATE(467)] = { + [sym_word] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS] = ACTIONS(966), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PERCENT_EQ] = ACTIONS(966), + [anon_sym_STAR_STAR_EQ] = ACTIONS(966), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_CARET_EQ] = ACTIONS(966), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_EQ_EQ] = ACTIONS(966), + [anon_sym_BANG_EQ] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_STAR_STAR] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_PIPE_AMP] = ACTIONS(968), + [anon_sym_RBRACK] = ACTIONS(968), + [anon_sym_EQ_TILDE] = ACTIONS(966), + [anon_sym_AMP_GT] = ACTIONS(966), + [anon_sym_AMP_GT_GT] = ACTIONS(968), + [anon_sym_LT_AMP] = ACTIONS(966), + [anon_sym_GT_AMP] = ACTIONS(966), + [anon_sym_GT_PIPE] = ACTIONS(968), + [anon_sym_LT_AMP_DASH] = ACTIONS(968), + [anon_sym_GT_AMP_DASH] = ACTIONS(968), + [anon_sym_LT_LT_DASH] = ACTIONS(968), + [anon_sym_LT_LT_LT] = ACTIONS(968), + [anon_sym_QMARK] = ACTIONS(966), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(968), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(968), + [aux_sym_concatenation_token1] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(966), + [sym_special_character] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym_raw_string] = ACTIONS(968), + [sym_ansi_c_string] = ACTIONS(968), + [aux_sym_number_token1] = ACTIONS(966), + [aux_sym_number_token2] = ACTIONS(966), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(966), + [anon_sym_BQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(968), + [anon_sym_LT_LPAREN] = ACTIONS(968), + [anon_sym_GT_LPAREN] = ACTIONS(968), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(968), + [sym_semgrep_named_ellipsis] = ACTIONS(968), + [sym_file_descriptor] = ACTIONS(968), + [sym_concat] = ACTIONS(968), + [sym_test_operator] = ACTIONS(968), + [sym_bare_dollar] = ACTIONS(968), + [sym_brace_start] = ACTIONS(968), + }, + [STATE(468)] = { + [aux_sym_for_statement_repeat1] = STATE(469), + [sym_word] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(284), + [anon_sym_LT_AMP_DASH] = ACTIONS(284), + [anon_sym_GT_AMP_DASH] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_LT_LT_LT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(1087), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [sym_ansi_c_string] = ACTIONS(284), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(284), + [sym_semgrep_named_ellipsis] = ACTIONS(284), + [sym_file_descriptor] = ACTIONS(284), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(469)] = { + [aux_sym_for_statement_repeat1] = STATE(469), + [sym_word] = ACTIONS(1054), + [anon_sym_AMP] = ACTIONS(1054), + [anon_sym_EQ] = ACTIONS(1054), + [anon_sym_PLUS_PLUS] = ACTIONS(1054), + [anon_sym_DASH_DASH] = ACTIONS(1054), + [anon_sym_PLUS_EQ] = ACTIONS(1054), + [anon_sym_DASH_EQ] = ACTIONS(1054), + [anon_sym_STAR_EQ] = ACTIONS(1054), + [anon_sym_SLASH_EQ] = ACTIONS(1054), + [anon_sym_PERCENT_EQ] = ACTIONS(1054), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1054), + [anon_sym_LT_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_GT_EQ] = ACTIONS(1056), + [anon_sym_AMP_EQ] = ACTIONS(1056), + [anon_sym_CARET_EQ] = ACTIONS(1054), + [anon_sym_PIPE_EQ] = ACTIONS(1056), + [anon_sym_PIPE_PIPE] = ACTIONS(1056), + [anon_sym_AMP_AMP] = ACTIONS(1056), + [anon_sym_PIPE] = ACTIONS(1054), + [anon_sym_CARET] = ACTIONS(1054), + [anon_sym_EQ_EQ] = ACTIONS(1054), + [anon_sym_BANG_EQ] = ACTIONS(1054), + [anon_sym_LT] = ACTIONS(1054), + [anon_sym_GT] = ACTIONS(1054), + [anon_sym_LT_EQ] = ACTIONS(1056), + [anon_sym_GT_EQ] = ACTIONS(1056), + [anon_sym_LT_LT] = ACTIONS(1054), + [anon_sym_GT_GT] = ACTIONS(1054), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_STAR] = ACTIONS(1054), + [anon_sym_SLASH] = ACTIONS(1054), + [anon_sym_PERCENT] = ACTIONS(1054), + [anon_sym_STAR_STAR] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_PIPE_AMP] = ACTIONS(1056), + [anon_sym_RBRACK] = ACTIONS(1056), + [anon_sym_EQ_TILDE] = ACTIONS(1054), + [anon_sym_AMP_GT] = ACTIONS(1054), + [anon_sym_AMP_GT_GT] = ACTIONS(1056), + [anon_sym_LT_AMP] = ACTIONS(1054), + [anon_sym_GT_AMP] = ACTIONS(1054), + [anon_sym_GT_PIPE] = ACTIONS(1056), + [anon_sym_LT_AMP_DASH] = ACTIONS(1056), + [anon_sym_GT_AMP_DASH] = ACTIONS(1056), + [anon_sym_LT_LT_DASH] = ACTIONS(1056), + [anon_sym_LT_LT_LT] = ACTIONS(1056), + [anon_sym_QMARK] = ACTIONS(1054), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1056), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1056), + [anon_sym_DOLLAR] = ACTIONS(1054), + [sym_special_character] = ACTIONS(1089), + [anon_sym_DQUOTE] = ACTIONS(1056), + [sym_raw_string] = ACTIONS(1056), + [sym_ansi_c_string] = ACTIONS(1056), + [aux_sym_number_token1] = ACTIONS(1054), + [aux_sym_number_token2] = ACTIONS(1054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1054), + [anon_sym_BQUOTE] = ACTIONS(1056), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1056), + [anon_sym_LT_LPAREN] = ACTIONS(1056), + [anon_sym_GT_LPAREN] = ACTIONS(1056), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1056), + [sym_semgrep_named_ellipsis] = ACTIONS(1056), + [sym_file_descriptor] = ACTIONS(1056), + [sym_test_operator] = ACTIONS(1056), + [sym_bare_dollar] = ACTIONS(1056), + [sym_brace_start] = ACTIONS(1056), + }, + [STATE(470)] = { + [sym_word] = ACTIONS(241), + [anon_sym_AMP] = ACTIONS(246), + [anon_sym_EQ] = ACTIONS(246), + [anon_sym_PLUS_PLUS] = ACTIONS(246), + [anon_sym_DASH_DASH] = ACTIONS(246), + [anon_sym_PLUS_EQ] = ACTIONS(246), + [anon_sym_DASH_EQ] = ACTIONS(246), + [anon_sym_STAR_EQ] = ACTIONS(246), + [anon_sym_SLASH_EQ] = ACTIONS(246), + [anon_sym_PERCENT_EQ] = ACTIONS(246), + [anon_sym_STAR_STAR_EQ] = ACTIONS(246), + [anon_sym_LT_LT_EQ] = ACTIONS(646), + [anon_sym_GT_GT_EQ] = ACTIONS(646), + [anon_sym_AMP_EQ] = ACTIONS(646), + [anon_sym_CARET_EQ] = ACTIONS(246), + [anon_sym_PIPE_EQ] = ACTIONS(646), + [anon_sym_PIPE_PIPE] = ACTIONS(648), + [anon_sym_AMP_AMP] = ACTIONS(648), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(246), + [anon_sym_EQ_EQ] = ACTIONS(243), + [anon_sym_BANG_EQ] = ACTIONS(246), + [anon_sym_LT] = ACTIONS(243), + [anon_sym_GT] = ACTIONS(243), + [anon_sym_LT_EQ] = ACTIONS(646), + [anon_sym_GT_EQ] = ACTIONS(646), + [anon_sym_LT_LT] = ACTIONS(243), + [anon_sym_GT_GT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(246), + [anon_sym_DASH] = ACTIONS(246), + [anon_sym_STAR] = ACTIONS(246), + [anon_sym_SLASH] = ACTIONS(246), + [anon_sym_PERCENT] = ACTIONS(246), + [anon_sym_STAR_STAR] = ACTIONS(246), + [anon_sym_LPAREN] = ACTIONS(284), + [anon_sym_PIPE_AMP] = ACTIONS(284), + [anon_sym_RBRACK] = ACTIONS(646), + [anon_sym_EQ_TILDE] = ACTIONS(243), + [anon_sym_AMP_GT] = ACTIONS(241), + [anon_sym_AMP_GT_GT] = ACTIONS(284), + [anon_sym_LT_AMP] = ACTIONS(241), + [anon_sym_GT_AMP] = ACTIONS(241), + [anon_sym_GT_PIPE] = ACTIONS(284), + [anon_sym_LT_AMP_DASH] = ACTIONS(284), + [anon_sym_GT_AMP_DASH] = ACTIONS(284), + [anon_sym_LT_LT_DASH] = ACTIONS(284), + [anon_sym_LT_LT_LT] = ACTIONS(284), + [anon_sym_QMARK] = ACTIONS(246), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(284), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(284), + [anon_sym_DOLLAR] = ACTIONS(241), + [sym_special_character] = ACTIONS(241), + [anon_sym_DQUOTE] = ACTIONS(284), + [sym_raw_string] = ACTIONS(284), + [sym_ansi_c_string] = ACTIONS(284), + [aux_sym_number_token1] = ACTIONS(241), + [aux_sym_number_token2] = ACTIONS(241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), + [anon_sym_BQUOTE] = ACTIONS(284), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(284), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), + [sym_comment] = ACTIONS(71), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(284), + [sym_semgrep_named_ellipsis] = ACTIONS(284), + [sym_file_descriptor] = ACTIONS(284), + [sym_test_operator] = ACTIONS(648), + [sym_bare_dollar] = ACTIONS(284), + [sym_brace_start] = ACTIONS(284), + }, + [STATE(471)] = { + [sym_variable_assignment] = STATE(474), + [sym_subscript] = STATE(5290), + [sym_arithmetic_expansion] = STATE(663), + [sym_brace_expression] = STATE(663), + [sym_concatenation] = STATE(474), + [sym_string] = STATE(663), + [sym_translated_string] = STATE(663), + [sym_number] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [sym_semgrep_deep_expression] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(762), + [aux_sym_declaration_command_repeat1] = STATE(474), + [sym_word] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1094), + [anon_sym_SEMI_SEMI] = ACTIONS(1094), + [aux_sym_statements_token1] = ACTIONS(1096), + [anon_sym_AMP] = ACTIONS(1094), + [aux_sym_for_statement_token1] = ACTIONS(1098), + [anon_sym_PIPE_PIPE] = ACTIONS(1094), + [anon_sym_AMP_AMP] = ACTIONS(1094), + [anon_sym_PIPE] = ACTIONS(1094), + [anon_sym_LT] = ACTIONS(1094), + [anon_sym_GT] = ACTIONS(1094), + [anon_sym_LT_LT] = ACTIONS(1094), + [anon_sym_GT_GT] = ACTIONS(1094), + [anon_sym_esac] = ACTIONS(1094), + [anon_sym_SEMI_AMP] = ACTIONS(1094), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1094), + [anon_sym_PIPE_AMP] = ACTIONS(1094), + [anon_sym_AMP_GT] = ACTIONS(1094), + [anon_sym_AMP_GT_GT] = ACTIONS(1094), + [anon_sym_LT_AMP] = ACTIONS(1094), + [anon_sym_GT_AMP] = ACTIONS(1094), + [anon_sym_GT_PIPE] = ACTIONS(1094), + [anon_sym_LT_AMP_DASH] = ACTIONS(1094), + [anon_sym_GT_AMP_DASH] = ACTIONS(1094), + [anon_sym_LT_LT_DASH] = ACTIONS(1094), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_special_character] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1092), + [sym_ansi_c_string] = ACTIONS(1092), + [aux_sym_number_token1] = ACTIONS(1110), + [aux_sym_number_token2] = ACTIONS(1112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1122), + [anon_sym_GT_LPAREN] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1124), + [sym_semgrep_named_ellipsis] = ACTIONS(1126), + [sym_semgrep_metavariable] = ACTIONS(1098), + [sym_semgrep_metavar_eq] = ACTIONS(1128), + [sym_semgrep_metavar_pluseq] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1096), + [sym_variable_name] = ACTIONS(1130), + [sym_test_operator] = ACTIONS(1132), + [sym_brace_start] = ACTIONS(1134), + }, + [STATE(472)] = { + [sym_variable_assignment] = STATE(471), + [sym_subscript] = STATE(5290), + [sym_arithmetic_expansion] = STATE(663), + [sym_brace_expression] = STATE(663), + [sym_concatenation] = STATE(471), + [sym_string] = STATE(663), + [sym_translated_string] = STATE(663), + [sym_number] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [sym_semgrep_deep_expression] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(762), + [aux_sym_declaration_command_repeat1] = STATE(471), + [sym_word] = ACTIONS(1092), + [anon_sym_SEMI] = ACTIONS(1136), + [anon_sym_SEMI_SEMI] = ACTIONS(1136), + [aux_sym_statements_token1] = ACTIONS(1138), + [anon_sym_AMP] = ACTIONS(1136), + [aux_sym_for_statement_token1] = ACTIONS(1140), + [anon_sym_PIPE_PIPE] = ACTIONS(1136), + [anon_sym_AMP_AMP] = ACTIONS(1136), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_LT] = ACTIONS(1136), + [anon_sym_GT] = ACTIONS(1136), + [anon_sym_LT_LT] = ACTIONS(1136), + [anon_sym_GT_GT] = ACTIONS(1136), + [anon_sym_esac] = ACTIONS(1136), + [anon_sym_SEMI_AMP] = ACTIONS(1136), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1136), + [anon_sym_PIPE_AMP] = ACTIONS(1136), + [anon_sym_AMP_GT] = ACTIONS(1136), + [anon_sym_AMP_GT_GT] = ACTIONS(1136), + [anon_sym_LT_AMP] = ACTIONS(1136), + [anon_sym_GT_AMP] = ACTIONS(1136), + [anon_sym_GT_PIPE] = ACTIONS(1136), + [anon_sym_LT_AMP_DASH] = ACTIONS(1136), + [anon_sym_GT_AMP_DASH] = ACTIONS(1136), + [anon_sym_LT_LT_DASH] = ACTIONS(1136), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_special_character] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1108), + [sym_raw_string] = ACTIONS(1092), + [sym_ansi_c_string] = ACTIONS(1092), + [aux_sym_number_token1] = ACTIONS(1110), + [aux_sym_number_token2] = ACTIONS(1112), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1114), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1116), + [anon_sym_BQUOTE] = ACTIONS(1118), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1120), + [anon_sym_LT_LPAREN] = ACTIONS(1122), + [anon_sym_GT_LPAREN] = ACTIONS(1122), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1124), + [sym_semgrep_named_ellipsis] = ACTIONS(1126), + [sym_semgrep_metavariable] = ACTIONS(1140), + [sym_semgrep_metavar_eq] = ACTIONS(1128), + [sym_semgrep_metavar_pluseq] = ACTIONS(1128), + [sym_file_descriptor] = ACTIONS(1138), + [sym_variable_name] = ACTIONS(1130), + [sym_test_operator] = ACTIONS(1132), + [sym_brace_start] = ACTIONS(1134), + }, + [STATE(473)] = { + [sym_subshell] = STATE(3702), + [sym_herestring_redirect] = STATE(1126), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(1125), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [sym_semgrep_deep_expression] = STATE(726), + [aux_sym_for_statement_repeat1] = STATE(974), + [aux_sym_command_repeat2] = STATE(486), + [sym_word] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1144), + [anon_sym_SEMI_SEMI] = ACTIONS(1144), + [aux_sym_statements_token1] = ACTIONS(1146), + [anon_sym_AMP] = ACTIONS(1144), + [anon_sym_PIPE_PIPE] = ACTIONS(1144), + [anon_sym_AMP_AMP] = ACTIONS(1144), + [anon_sym_PIPE] = ACTIONS(1144), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1144), + [anon_sym_GT] = ACTIONS(1144), + [anon_sym_LT_LT] = ACTIONS(1144), + [anon_sym_GT_GT] = ACTIONS(1144), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_esac] = ACTIONS(1144), + [anon_sym_SEMI_AMP] = ACTIONS(1144), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1144), + [anon_sym_PIPE_AMP] = ACTIONS(1144), + [anon_sym_EQ_TILDE] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1144), + [anon_sym_AMP_GT_GT] = ACTIONS(1144), + [anon_sym_LT_AMP] = ACTIONS(1144), + [anon_sym_GT_AMP] = ACTIONS(1144), + [anon_sym_GT_PIPE] = ACTIONS(1144), + [anon_sym_LT_AMP_DASH] = ACTIONS(1144), + [anon_sym_GT_AMP_DASH] = ACTIONS(1144), + [anon_sym_LT_LT_DASH] = ACTIONS(1144), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1156), + [sym_special_character] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_raw_string] = ACTIONS(1142), + [sym_ansi_c_string] = ACTIONS(1142), + [aux_sym_number_token1] = ACTIONS(1162), + [aux_sym_number_token2] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1172), + [anon_sym_LT_LPAREN] = ACTIONS(1174), + [anon_sym_GT_LPAREN] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1176), + [sym_semgrep_named_ellipsis] = ACTIONS(1178), + [sym_file_descriptor] = ACTIONS(1146), + [sym_test_operator] = ACTIONS(1180), + [sym_bare_dollar] = ACTIONS(1182), + [sym_brace_start] = ACTIONS(1184), + }, + [STATE(474)] = { + [sym_variable_assignment] = STATE(474), + [sym_subscript] = STATE(5290), + [sym_arithmetic_expansion] = STATE(663), + [sym_brace_expression] = STATE(663), + [sym_concatenation] = STATE(474), + [sym_string] = STATE(663), + [sym_translated_string] = STATE(663), + [sym_number] = STATE(663), + [sym_simple_expansion] = STATE(663), + [sym_expansion] = STATE(663), + [sym_command_substitution] = STATE(663), + [sym_process_substitution] = STATE(663), + [sym_semgrep_deep_expression] = STATE(663), + [aux_sym_for_statement_repeat1] = STATE(762), + [aux_sym_declaration_command_repeat1] = STATE(474), + [sym_word] = ACTIONS(1186), + [anon_sym_SEMI] = ACTIONS(1189), + [anon_sym_SEMI_SEMI] = ACTIONS(1189), + [aux_sym_statements_token1] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1189), + [aux_sym_for_statement_token1] = ACTIONS(1193), + [anon_sym_PIPE_PIPE] = ACTIONS(1189), + [anon_sym_AMP_AMP] = ACTIONS(1189), + [anon_sym_PIPE] = ACTIONS(1189), + [anon_sym_LT] = ACTIONS(1189), + [anon_sym_GT] = ACTIONS(1189), + [anon_sym_LT_LT] = ACTIONS(1189), + [anon_sym_GT_GT] = ACTIONS(1189), + [anon_sym_esac] = ACTIONS(1189), + [anon_sym_SEMI_AMP] = ACTIONS(1189), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1189), + [anon_sym_PIPE_AMP] = ACTIONS(1189), + [anon_sym_AMP_GT] = ACTIONS(1189), + [anon_sym_AMP_GT_GT] = ACTIONS(1189), + [anon_sym_LT_AMP] = ACTIONS(1189), + [anon_sym_GT_AMP] = ACTIONS(1189), + [anon_sym_GT_PIPE] = ACTIONS(1189), + [anon_sym_LT_AMP_DASH] = ACTIONS(1189), + [anon_sym_GT_AMP_DASH] = ACTIONS(1189), + [anon_sym_LT_LT_DASH] = ACTIONS(1189), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1196), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_special_character] = ACTIONS(1205), + [anon_sym_DQUOTE] = ACTIONS(1208), + [sym_raw_string] = ACTIONS(1186), + [sym_ansi_c_string] = ACTIONS(1186), + [aux_sym_number_token1] = ACTIONS(1211), + [aux_sym_number_token2] = ACTIONS(1214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1217), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1220), + [anon_sym_BQUOTE] = ACTIONS(1223), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1226), + [anon_sym_LT_LPAREN] = ACTIONS(1229), + [anon_sym_GT_LPAREN] = ACTIONS(1229), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1232), + [sym_semgrep_named_ellipsis] = ACTIONS(1235), + [sym_semgrep_metavariable] = ACTIONS(1193), + [sym_semgrep_metavar_eq] = ACTIONS(1238), + [sym_semgrep_metavar_pluseq] = ACTIONS(1238), + [sym_file_descriptor] = ACTIONS(1191), + [sym_variable_name] = ACTIONS(1241), + [sym_test_operator] = ACTIONS(1244), + [sym_brace_start] = ACTIONS(1247), + }, + [STATE(475)] = { + [sym_subshell] = STATE(3717), + [sym_herestring_redirect] = STATE(1126), + [sym_arithmetic_expansion] = STATE(726), + [sym_brace_expression] = STATE(726), + [sym_concatenation] = STATE(1125), + [sym_string] = STATE(726), + [sym_translated_string] = STATE(726), + [sym_number] = STATE(726), + [sym_simple_expansion] = STATE(726), + [sym_expansion] = STATE(726), + [sym_command_substitution] = STATE(726), + [sym_process_substitution] = STATE(726), + [sym_semgrep_deep_expression] = STATE(726), + [aux_sym_for_statement_repeat1] = STATE(974), + [aux_sym_command_repeat2] = STATE(488), + [sym_word] = ACTIONS(1142), + [anon_sym_SEMI] = ACTIONS(1250), + [anon_sym_SEMI_SEMI] = ACTIONS(1250), + [aux_sym_statements_token1] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1250), + [anon_sym_PIPE_PIPE] = ACTIONS(1250), + [anon_sym_AMP_AMP] = ACTIONS(1250), + [anon_sym_PIPE] = ACTIONS(1250), + [anon_sym_EQ_EQ] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1250), + [anon_sym_GT] = ACTIONS(1250), + [anon_sym_LT_LT] = ACTIONS(1250), + [anon_sym_GT_GT] = ACTIONS(1250), + [anon_sym_LPAREN] = ACTIONS(434), + [anon_sym_esac] = ACTIONS(1250), + [anon_sym_SEMI_AMP] = ACTIONS(1250), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(1250), + [anon_sym_PIPE_AMP] = ACTIONS(1250), + [anon_sym_EQ_TILDE] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1250), + [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_AMP_DASH] = ACTIONS(1250), + [anon_sym_GT_AMP_DASH] = ACTIONS(1250), + [anon_sym_LT_LT_DASH] = ACTIONS(1250), + [anon_sym_LT_LT_LT] = ACTIONS(1150), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1152), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1154), + [anon_sym_DOLLAR] = ACTIONS(1156), + [sym_special_character] = ACTIONS(1158), + [anon_sym_DQUOTE] = ACTIONS(1160), + [sym_raw_string] = ACTIONS(1142), + [sym_ansi_c_string] = ACTIONS(1142), + [aux_sym_number_token1] = ACTIONS(1162), + [aux_sym_number_token2] = ACTIONS(1164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1168), + [anon_sym_BQUOTE] = ACTIONS(1170), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1172), + [anon_sym_LT_LPAREN] = ACTIONS(1174), + [anon_sym_GT_LPAREN] = ACTIONS(1174), + [sym_comment] = ACTIONS(3), + [anon_sym_LT_DOT_DOT_DOT] = ACTIONS(1176), + [sym_semgrep_named_ellipsis] = ACTIONS(1178), + [sym_file_descriptor] = ACTIONS(1252), + [sym_test_operator] = ACTIONS(1180), + [sym_bare_dollar] = ACTIONS(1182), + [sym_brace_start] = ACTIONS(1184), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 21, + [0] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1278), 1, + anon_sym_BQUOTE, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(494), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + STATE(3676), 1, + sym_subshell, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1146), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1144), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [125] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1300), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1302), 1, + anon_sym_DOLLAR, + ACTIONS(1304), 1, + sym_special_character, + ACTIONS(1306), 1, + anon_sym_DQUOTE, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1312), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1316), 1, + anon_sym_BQUOTE, + ACTIONS(1318), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1322), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1324), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1328), 1, + sym_variable_name, + ACTIONS(1330), 1, + sym_test_operator, + ACTIONS(1332), 1, + sym_brace_start, + STATE(1042), 1, + aux_sym_for_statement_repeat1, + STATE(5279), 1, + sym_subscript, + ACTIONS(1296), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1326), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1138), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1294), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(484), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(694), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1136), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(562), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, + anon_sym_LT_LT_LT, + ACTIONS(1340), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1342), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1344), 1, + anon_sym_DOLLAR, + ACTIONS(1346), 1, + sym_special_character, + ACTIONS(1348), 1, + anon_sym_DQUOTE, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1354), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1358), 1, + anon_sym_BQUOTE, + ACTIONS(1360), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1364), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1366), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1368), 1, + sym_test_operator, + ACTIONS(1370), 1, + sym_bare_dollar, + ACTIONS(1372), 1, + sym_brace_start, + STATE(493), 1, + aux_sym_command_repeat2, + STATE(1080), 1, + aux_sym_for_statement_repeat1, + STATE(1216), 1, + sym_herestring_redirect, + STATE(1238), 1, + sym_concatenation, + STATE(3854), 1, + sym_subshell, + ACTIONS(1146), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1336), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1362), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1334), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(834), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1144), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [369] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1380), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1383), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1386), 1, + anon_sym_DOLLAR, + ACTIONS(1389), 1, + sym_special_character, + ACTIONS(1392), 1, + anon_sym_DQUOTE, + ACTIONS(1395), 1, + aux_sym_number_token1, + ACTIONS(1398), 1, + aux_sym_number_token2, + ACTIONS(1401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1404), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1407), 1, + anon_sym_BQUOTE, + ACTIONS(1410), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1416), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1419), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1425), 1, + sym_variable_name, + ACTIONS(1428), 1, + sym_test_operator, + ACTIONS(1431), 1, + sym_brace_start, + STATE(929), 1, + aux_sym_for_statement_repeat1, + STATE(5321), 1, + sym_subscript, + ACTIONS(1191), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1377), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1413), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1422), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1374), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(479), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(706), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1189), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [488] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1440), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1442), 1, + anon_sym_DOLLAR, + ACTIONS(1444), 1, + sym_special_character, + ACTIONS(1446), 1, + anon_sym_DQUOTE, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1456), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1462), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1464), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1468), 1, + sym_variable_name, + ACTIONS(1470), 1, + sym_test_operator, + ACTIONS(1472), 1, + sym_brace_start, + STATE(929), 1, + aux_sym_for_statement_repeat1, + STATE(5321), 1, + sym_subscript, + ACTIONS(1138), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1436), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1460), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1466), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1434), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(483), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(706), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1136), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [607] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1278), 1, + anon_sym_BQUOTE, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(490), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + STATE(3772), 1, + sym_subshell, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1252), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1250), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [732] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(562), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, + anon_sym_LT_LT_LT, + ACTIONS(1340), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1342), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1344), 1, + anon_sym_DOLLAR, + ACTIONS(1346), 1, + sym_special_character, + ACTIONS(1348), 1, + anon_sym_DQUOTE, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1354), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1358), 1, + anon_sym_BQUOTE, + ACTIONS(1360), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1364), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1366), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1368), 1, + sym_test_operator, + ACTIONS(1370), 1, + sym_bare_dollar, + ACTIONS(1372), 1, + sym_brace_start, + STATE(491), 1, + aux_sym_command_repeat2, + STATE(1080), 1, + aux_sym_for_statement_repeat1, + STATE(1216), 1, + sym_herestring_redirect, + STATE(1238), 1, + sym_concatenation, + STATE(3848), 1, + sym_subshell, + ACTIONS(1252), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1336), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1362), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1334), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(834), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1250), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [857] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1438), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1440), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1442), 1, + anon_sym_DOLLAR, + ACTIONS(1444), 1, + sym_special_character, + ACTIONS(1446), 1, + anon_sym_DQUOTE, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1452), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1456), 1, + anon_sym_BQUOTE, + ACTIONS(1458), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1462), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1464), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1468), 1, + sym_variable_name, + ACTIONS(1470), 1, + sym_test_operator, + ACTIONS(1472), 1, + sym_brace_start, + STATE(929), 1, + aux_sym_for_statement_repeat1, + STATE(5321), 1, + sym_subscript, + ACTIONS(1096), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1460), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1466), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1474), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1434), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(479), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(706), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1094), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [976] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1300), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1302), 1, + anon_sym_DOLLAR, + ACTIONS(1304), 1, + sym_special_character, + ACTIONS(1306), 1, + anon_sym_DQUOTE, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1312), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1316), 1, + anon_sym_BQUOTE, + ACTIONS(1318), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1322), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1324), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1328), 1, + sym_variable_name, + ACTIONS(1330), 1, + sym_test_operator, + ACTIONS(1332), 1, + sym_brace_start, + STATE(1042), 1, + aux_sym_for_statement_repeat1, + STATE(5279), 1, + sym_subscript, + ACTIONS(1320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1326), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1476), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1096), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1294), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(485), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(694), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1094), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1095] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1484), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1487), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1490), 1, + anon_sym_DOLLAR, + ACTIONS(1493), 1, + sym_special_character, + ACTIONS(1496), 1, + anon_sym_DQUOTE, + ACTIONS(1499), 1, + aux_sym_number_token1, + ACTIONS(1502), 1, + aux_sym_number_token2, + ACTIONS(1505), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1508), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1511), 1, + anon_sym_BQUOTE, + ACTIONS(1514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1520), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1523), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1529), 1, + sym_variable_name, + ACTIONS(1532), 1, + sym_test_operator, + ACTIONS(1535), 1, + sym_brace_start, + STATE(1042), 1, + aux_sym_for_statement_repeat1, + STATE(5279), 1, + sym_subscript, + ACTIONS(1481), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1517), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1526), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1191), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1478), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(485), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(694), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1189), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1214] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 1, + anon_sym_LT_LT_LT, + ACTIONS(1152), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1154), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1156), 1, + anon_sym_DOLLAR, + ACTIONS(1158), 1, + sym_special_character, + ACTIONS(1160), 1, + anon_sym_DQUOTE, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1166), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1170), 1, + anon_sym_BQUOTE, + ACTIONS(1172), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1176), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1178), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1180), 1, + sym_test_operator, + ACTIONS(1182), 1, + sym_bare_dollar, + ACTIONS(1184), 1, + sym_brace_start, + STATE(487), 1, + aux_sym_command_repeat2, + STATE(974), 1, + aux_sym_for_statement_repeat1, + STATE(1125), 1, + sym_concatenation, + STATE(1126), 1, + sym_herestring_redirect, + ACTIONS(1148), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1174), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1540), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1142), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(726), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1538), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1334] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + aux_sym_statements_token1, + ACTIONS(1552), 1, + anon_sym_LT_LT_LT, + ACTIONS(1555), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1558), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1561), 1, + anon_sym_DOLLAR, + ACTIONS(1564), 1, + sym_special_character, + ACTIONS(1567), 1, + anon_sym_DQUOTE, + ACTIONS(1570), 1, + aux_sym_number_token1, + ACTIONS(1573), 1, + aux_sym_number_token2, + ACTIONS(1576), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1579), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1582), 1, + anon_sym_BQUOTE, + ACTIONS(1585), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1591), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1594), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1597), 1, + sym_file_descriptor, + ACTIONS(1600), 1, + sym_test_operator, + ACTIONS(1603), 1, + sym_bare_dollar, + ACTIONS(1606), 1, + sym_brace_start, + STATE(487), 1, + aux_sym_command_repeat2, + STATE(974), 1, + aux_sym_for_statement_repeat1, + STATE(1125), 1, + sym_concatenation, + STATE(1126), 1, + sym_herestring_redirect, + ACTIONS(1549), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1588), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1542), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(726), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1545), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1456] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1150), 1, + anon_sym_LT_LT_LT, + ACTIONS(1152), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1154), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1156), 1, + anon_sym_DOLLAR, + ACTIONS(1158), 1, + sym_special_character, + ACTIONS(1160), 1, + anon_sym_DQUOTE, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1166), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1170), 1, + anon_sym_BQUOTE, + ACTIONS(1172), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1176), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1178), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1180), 1, + sym_test_operator, + ACTIONS(1182), 1, + sym_bare_dollar, + ACTIONS(1184), 1, + sym_brace_start, + STATE(487), 1, + aux_sym_command_repeat2, + STATE(974), 1, + aux_sym_for_statement_repeat1, + STATE(1125), 1, + sym_concatenation, + STATE(1126), 1, + sym_herestring_redirect, + ACTIONS(1148), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1174), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1611), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1142), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(726), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1609), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1576] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1547), 1, + aux_sym_statements_token1, + ACTIONS(1619), 1, + anon_sym_LT_LT_LT, + ACTIONS(1622), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1625), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1628), 1, + anon_sym_DOLLAR, + ACTIONS(1631), 1, + sym_special_character, + ACTIONS(1634), 1, + anon_sym_DQUOTE, + ACTIONS(1637), 1, + aux_sym_number_token1, + ACTIONS(1640), 1, + aux_sym_number_token2, + ACTIONS(1643), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1646), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1649), 1, + anon_sym_BQUOTE, + ACTIONS(1652), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1658), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1661), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1664), 1, + sym_file_descriptor, + ACTIONS(1667), 1, + sym_test_operator, + ACTIONS(1670), 1, + sym_bare_dollar, + ACTIONS(1673), 1, + sym_brace_start, + STATE(489), 1, + aux_sym_command_repeat2, + STATE(1080), 1, + aux_sym_for_statement_repeat1, + STATE(1216), 1, + sym_herestring_redirect, + STATE(1238), 1, + sym_concatenation, + ACTIONS(1616), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1655), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1613), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(834), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1545), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1697] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1278), 1, + anon_sym_BQUOTE, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(492), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(1611), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1609), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1816] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 1, + anon_sym_LT_LT_LT, + ACTIONS(1340), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1342), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1344), 1, + anon_sym_DOLLAR, + ACTIONS(1346), 1, + sym_special_character, + ACTIONS(1348), 1, + anon_sym_DQUOTE, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1354), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1358), 1, + anon_sym_BQUOTE, + ACTIONS(1360), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1364), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1366), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1368), 1, + sym_test_operator, + ACTIONS(1370), 1, + sym_bare_dollar, + ACTIONS(1372), 1, + sym_brace_start, + STATE(489), 1, + aux_sym_command_repeat2, + STATE(1080), 1, + aux_sym_for_statement_repeat1, + STATE(1216), 1, + sym_herestring_redirect, + STATE(1238), 1, + sym_concatenation, + ACTIONS(1336), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1362), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1611), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1334), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(834), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1609), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [1935] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1682), 1, + anon_sym_LT_LT_LT, + ACTIONS(1685), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1688), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1691), 1, + anon_sym_DOLLAR, + ACTIONS(1694), 1, + sym_special_character, + ACTIONS(1697), 1, + anon_sym_DQUOTE, + ACTIONS(1700), 1, + aux_sym_number_token1, + ACTIONS(1703), 1, + aux_sym_number_token2, + ACTIONS(1706), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1709), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1712), 1, + anon_sym_BQUOTE, + ACTIONS(1715), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1721), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1724), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1727), 1, + sym_file_descriptor, + ACTIONS(1730), 1, + sym_test_operator, + ACTIONS(1733), 1, + sym_bare_dollar, + ACTIONS(1736), 1, + sym_brace_start, + STATE(492), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + ACTIONS(1547), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1679), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1718), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1676), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1545), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [2056] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 1, + anon_sym_LT_LT_LT, + ACTIONS(1340), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1342), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1344), 1, + anon_sym_DOLLAR, + ACTIONS(1346), 1, + sym_special_character, + ACTIONS(1348), 1, + anon_sym_DQUOTE, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1354), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1358), 1, + anon_sym_BQUOTE, + ACTIONS(1360), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1364), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1366), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1368), 1, + sym_test_operator, + ACTIONS(1370), 1, + sym_bare_dollar, + ACTIONS(1372), 1, + sym_brace_start, + STATE(489), 1, + aux_sym_command_repeat2, + STATE(1080), 1, + aux_sym_for_statement_repeat1, + STATE(1216), 1, + sym_herestring_redirect, + STATE(1238), 1, + sym_concatenation, + ACTIONS(1336), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1362), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1540), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1334), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(834), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1538), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [2175] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1278), 1, + anon_sym_BQUOTE, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(492), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(1540), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1538), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [2294] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1046), 1, + aux_sym_for_statement_repeat1, + STATE(497), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(735), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [2369] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1046), 1, + aux_sym_for_statement_repeat1, + STATE(497), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(735), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [2444] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1754), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1757), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1760), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + sym_special_character, + ACTIONS(1766), 1, + anon_sym_DQUOTE, + ACTIONS(1769), 1, + aux_sym_number_token1, + ACTIONS(1772), 1, + aux_sym_number_token2, + ACTIONS(1775), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1778), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1781), 1, + anon_sym_BQUOTE, + ACTIONS(1784), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1790), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1793), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1796), 1, + sym_test_operator, + ACTIONS(1799), 1, + sym_brace_start, + STATE(1046), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1787), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(497), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1747), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(1752), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + STATE(735), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [2553] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1300), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1302), 1, + anon_sym_DOLLAR, + ACTIONS(1304), 1, + sym_special_character, + ACTIONS(1306), 1, + anon_sym_DQUOTE, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1312), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1318), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1322), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1324), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1328), 1, + sym_variable_name, + ACTIONS(1330), 1, + sym_test_operator, + ACTIONS(1332), 1, + sym_brace_start, + STATE(1042), 1, + aux_sym_for_statement_repeat1, + STATE(5279), 1, + sym_subscript, + ACTIONS(1138), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1326), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1802), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1294), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(500), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(694), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1136), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [2668] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(528), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + STATE(3772), 1, + sym_subshell, + ACTIONS(1252), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1250), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [2789] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1300), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1302), 1, + anon_sym_DOLLAR, + ACTIONS(1304), 1, + sym_special_character, + ACTIONS(1306), 1, + anon_sym_DQUOTE, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1312), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1318), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1322), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1324), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1328), 1, + sym_variable_name, + ACTIONS(1330), 1, + sym_test_operator, + ACTIONS(1332), 1, + sym_brace_start, + STATE(1042), 1, + aux_sym_for_statement_repeat1, + STATE(5279), 1, + sym_subscript, + ACTIONS(1096), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1320), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1326), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1476), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1294), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(485), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(694), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1094), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [2904] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(525), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + STATE(3676), 1, + sym_subshell, + ACTIONS(1146), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1144), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [3025] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1806), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1804), 4, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [3097] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1030), 1, + aux_sym_for_statement_repeat1, + STATE(1122), 1, + sym_concatenation, + ACTIONS(1810), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(702), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3171] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 33, + 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_then, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [3239] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1110), 1, + aux_sym_for_statement_repeat1, + STATE(512), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1745), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(819), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3313] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1025), 1, + aux_sym_for_statement_repeat1, + STATE(1118), 1, + sym_concatenation, + ACTIONS(1814), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(700), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3387] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1100), 1, + aux_sym_for_statement_repeat1, + STATE(511), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(763), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3461] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1110), 1, + aux_sym_for_statement_repeat1, + STATE(512), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1741), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(819), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3535] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1100), 1, + aux_sym_for_statement_repeat1, + STATE(511), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(763), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3609] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1818), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1816), 4, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [3681] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1823), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1826), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1829), 1, + anon_sym_DOLLAR, + ACTIONS(1832), 1, + sym_special_character, + ACTIONS(1835), 1, + anon_sym_DQUOTE, + ACTIONS(1838), 1, + aux_sym_number_token1, + ACTIONS(1841), 1, + aux_sym_number_token2, + ACTIONS(1844), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1847), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1850), 1, + anon_sym_BQUOTE, + ACTIONS(1853), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1859), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1862), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1865), 1, + sym_test_operator, + ACTIONS(1868), 1, + sym_brace_start, + STATE(1100), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1856), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(511), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1752), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1820), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(763), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3789] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1874), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1880), 1, + anon_sym_DOLLAR, + ACTIONS(1883), 1, + sym_special_character, + ACTIONS(1886), 1, + anon_sym_DQUOTE, + ACTIONS(1889), 1, + aux_sym_number_token1, + ACTIONS(1892), 1, + aux_sym_number_token2, + ACTIONS(1895), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1898), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1901), 1, + anon_sym_BQUOTE, + ACTIONS(1904), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1910), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1913), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1916), 1, + sym_test_operator, + ACTIONS(1919), 1, + sym_brace_start, + STATE(1110), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1907), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(512), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1871), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(1752), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(819), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [3897] = 38, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(51), 1, + sym_special_character, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(75), 1, + sym_semgrep_named_ellipsis, + ACTIONS(81), 1, + sym_variable_name, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1922), 1, + sym_word, + ACTIONS(1924), 1, + anon_sym_LPAREN, + STATE(481), 1, + sym_command_name, + STATE(635), 1, + aux_sym_command_repeat1, + STATE(987), 1, + aux_sym_for_statement_repeat1, + STATE(1068), 1, + sym_concatenation, + STATE(1200), 1, + sym_variable_assignment, + STATE(3685), 1, + sym_command, + STATE(5326), 1, + sym_subscript, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(77), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(3684), 2, + sym_subshell, + sym_test_command, + ACTIONS(55), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(722), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [4034] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1936), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1938), 1, + anon_sym_DOLLAR, + ACTIONS(1940), 1, + sym_special_character, + ACTIONS(1942), 1, + anon_sym_DQUOTE, + ACTIONS(1944), 1, + aux_sym_number_token1, + ACTIONS(1946), 1, + aux_sym_number_token2, + ACTIONS(1948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_BQUOTE, + ACTIONS(1954), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1958), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1960), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1962), 1, + sym_test_operator, + ACTIONS(1964), 1, + sym_brace_start, + STATE(1257), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1930), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1932), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(1956), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(520), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1926), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(957), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1928), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [4143] = 38, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(51), 1, + sym_special_character, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(75), 1, + sym_semgrep_named_ellipsis, + ACTIONS(81), 1, + sym_variable_name, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1922), 1, + sym_word, + ACTIONS(1924), 1, + anon_sym_LPAREN, + STATE(499), 1, + sym_command_name, + STATE(631), 1, + aux_sym_command_repeat1, + STATE(987), 1, + aux_sym_for_statement_repeat1, + STATE(1068), 1, + sym_concatenation, + STATE(1592), 1, + sym_variable_assignment, + STATE(3685), 1, + sym_command, + STATE(5326), 1, + sym_subscript, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(77), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(3684), 2, + sym_subshell, + sym_test_command, + ACTIONS(55), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(722), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [4280] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1060), 1, + aux_sym_for_statement_repeat1, + STATE(1164), 1, + sym_concatenation, + ACTIONS(1810), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(833), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [4353] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1804), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1806), 2, + anon_sym_SEMI_SEMI, + anon_sym_esac, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [4424] = 38, + ACTIONS(71), 1, + sym_comment, + ACTIONS(157), 1, + anon_sym_LBRACK, + ACTIONS(161), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(211), 1, + sym_variable_name, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(821), 1, + anon_sym_DOLLAR, + ACTIONS(823), 1, + sym_special_character, + ACTIONS(825), 1, + anon_sym_DQUOTE, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, + anon_sym_BQUOTE, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(843), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(845), 1, + sym_semgrep_named_ellipsis, + ACTIONS(849), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1966), 1, + sym_word, + ACTIONS(1968), 1, + anon_sym_LPAREN, + STATE(550), 1, + sym_command_name, + STATE(629), 1, + aux_sym_command_repeat1, + STATE(1679), 1, + aux_sym_for_statement_repeat1, + STATE(1760), 1, + sym_concatenation, + STATE(1820), 1, + sym_variable_assignment, + STATE(4263), 1, + sym_command, + STATE(5317), 1, + sym_subscript, + ACTIONS(207), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(841), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4262), 2, + sym_subshell, + sym_test_command, + ACTIONS(827), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1590), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [4561] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1934), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1936), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1938), 1, + anon_sym_DOLLAR, + ACTIONS(1940), 1, + sym_special_character, + ACTIONS(1942), 1, + anon_sym_DQUOTE, + ACTIONS(1944), 1, + aux_sym_number_token1, + ACTIONS(1946), 1, + aux_sym_number_token2, + ACTIONS(1948), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1952), 1, + anon_sym_BQUOTE, + ACTIONS(1954), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1958), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1960), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1962), 1, + sym_test_operator, + ACTIONS(1964), 1, + sym_brace_start, + STATE(1257), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1956), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1972), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1974), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(514), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1926), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(957), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1970), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [4670] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1986), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1989), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1992), 1, + anon_sym_DOLLAR, + ACTIONS(1995), 1, + sym_special_character, + ACTIONS(1998), 1, + anon_sym_DQUOTE, + ACTIONS(2001), 1, + aux_sym_number_token1, + ACTIONS(2004), 1, + aux_sym_number_token2, + ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2010), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2013), 1, + anon_sym_BQUOTE, + ACTIONS(2016), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2022), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2025), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2028), 1, + sym_test_operator, + ACTIONS(2031), 1, + sym_brace_start, + STATE(1257), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1981), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1983), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2019), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(520), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1976), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(957), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1979), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [4779] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1059), 1, + aux_sym_for_statement_repeat1, + STATE(1240), 1, + sym_concatenation, + ACTIONS(1814), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(766), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [4852] = 38, + ACTIONS(71), 1, + sym_comment, + ACTIONS(452), 1, + anon_sym_LBRACK, + ACTIONS(454), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(464), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(466), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(468), 1, + anon_sym_DOLLAR, + ACTIONS(470), 1, + sym_special_character, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, + aux_sym_number_token1, + ACTIONS(478), 1, + aux_sym_number_token2, + ACTIONS(480), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(482), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(484), 1, + anon_sym_BQUOTE, + ACTIONS(486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(490), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(492), 1, + sym_semgrep_named_ellipsis, + ACTIONS(498), 1, + sym_variable_name, + ACTIONS(500), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(2034), 1, + sym_word, + ACTIONS(2036), 1, + anon_sym_LPAREN, + STATE(475), 1, + sym_command_name, + STATE(639), 1, + aux_sym_command_repeat1, + STATE(922), 1, + aux_sym_for_statement_repeat1, + STATE(1048), 1, + sym_concatenation, + STATE(1103), 1, + sym_variable_assignment, + STATE(3748), 1, + sym_command, + STATE(5331), 1, + sym_subscript, + ACTIONS(488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(494), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(3741), 2, + sym_subshell, + sym_test_command, + ACTIONS(474), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(656), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [4989] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1053), 1, + aux_sym_for_statement_repeat1, + STATE(1266), 1, + sym_concatenation, + ACTIONS(1810), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(849), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [5062] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1146), 1, + aux_sym_for_statement_repeat1, + STATE(1262), 1, + sym_concatenation, + ACTIONS(1814), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + STATE(926), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [5135] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(492), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1540), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1538), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [5250] = 38, + ACTIONS(71), 1, + sym_comment, + ACTIONS(576), 1, + anon_sym_LBRACK, + ACTIONS(578), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(592), 1, + anon_sym_DOLLAR, + ACTIONS(594), 1, + sym_special_character, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(600), 1, + aux_sym_number_token1, + ACTIONS(602), 1, + aux_sym_number_token2, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(608), 1, + anon_sym_BQUOTE, + ACTIONS(610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(614), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(616), 1, + sym_semgrep_named_ellipsis, + ACTIONS(622), 1, + sym_variable_name, + ACTIONS(624), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(2038), 1, + sym_word, + ACTIONS(2040), 1, + anon_sym_LPAREN, + STATE(482), 1, + sym_command_name, + STATE(638), 1, + aux_sym_command_repeat1, + STATE(999), 1, + aux_sym_for_statement_repeat1, + STATE(1084), 1, + sym_concatenation, + STATE(1160), 1, + sym_variable_assignment, + STATE(3845), 1, + sym_command, + STATE(5311), 1, + sym_subscript, + ACTIONS(612), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(618), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(3844), 2, + sym_subshell, + sym_test_command, + ACTIONS(598), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(680), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [5387] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1816), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1818), 2, + anon_sym_SEMI_SEMI, + anon_sym_esac, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [5458] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1258), 1, + anon_sym_LT_LT_LT, + ACTIONS(1260), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1262), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1264), 1, + anon_sym_DOLLAR, + ACTIONS(1266), 1, + sym_special_character, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1274), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1280), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1284), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(1286), 1, + sym_semgrep_named_ellipsis, + ACTIONS(1288), 1, + sym_test_operator, + ACTIONS(1290), 1, + sym_bare_dollar, + ACTIONS(1292), 1, + sym_brace_start, + STATE(492), 1, + aux_sym_command_repeat2, + STATE(1113), 1, + aux_sym_for_statement_repeat1, + STATE(1175), 1, + sym_concatenation, + STATE(1179), 1, + sym_herestring_redirect, + ACTIONS(1256), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1282), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1611), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1254), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1609), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [5573] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 1, + aux_sym_for_statement_token1, + ACTIONS(2046), 1, + anon_sym_DQUOTE, + STATE(713), 1, + sym_string, + STATE(744), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2044), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [5650] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2054), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2057), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2060), 1, + anon_sym_DOLLAR, + ACTIONS(2063), 1, + sym_special_character, + ACTIONS(2066), 1, + anon_sym_DQUOTE, + ACTIONS(2069), 1, + aux_sym_number_token1, + ACTIONS(2072), 1, + aux_sym_number_token2, + ACTIONS(2075), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2078), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2081), 1, + anon_sym_BQUOTE, + ACTIONS(2084), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2090), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2093), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2096), 1, + sym_test_operator, + ACTIONS(2099), 1, + sym_brace_start, + STATE(1284), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2051), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2087), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(530), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1981), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2048), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1129), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1979), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [5758] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2108), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2110), 1, + anon_sym_DOLLAR, + ACTIONS(2112), 1, + sym_special_character, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(2116), 1, + aux_sym_number_token1, + ACTIONS(2118), 1, + aux_sym_number_token2, + ACTIONS(2120), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2122), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2124), 1, + anon_sym_BQUOTE, + ACTIONS(2126), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2130), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2132), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2134), 1, + sym_test_operator, + ACTIONS(2136), 1, + sym_brace_start, + STATE(1406), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1930), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2104), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2128), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(538), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2102), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1104), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1928), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [5866] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2140), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2142), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2144), 1, + anon_sym_DOLLAR, + ACTIONS(2146), 1, + sym_special_character, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2158), 1, + anon_sym_BQUOTE, + ACTIONS(2160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2164), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2166), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2168), 1, + sym_test_operator, + ACTIONS(2170), 1, + sym_brace_start, + STATE(1389), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(534), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2138), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1143), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [5972] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2140), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2142), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2144), 1, + anon_sym_DOLLAR, + ACTIONS(2146), 1, + sym_special_character, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2154), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2158), 1, + anon_sym_BQUOTE, + ACTIONS(2160), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2164), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2166), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2168), 1, + sym_test_operator, + ACTIONS(2170), 1, + sym_brace_start, + STATE(1389), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2162), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(534), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2138), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1143), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [6078] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2178), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2181), 1, + anon_sym_DOLLAR, + ACTIONS(2184), 1, + sym_special_character, + ACTIONS(2187), 1, + anon_sym_DQUOTE, + ACTIONS(2190), 1, + aux_sym_number_token1, + ACTIONS(2193), 1, + aux_sym_number_token2, + ACTIONS(2196), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2199), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2202), 1, + anon_sym_BQUOTE, + ACTIONS(2205), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2211), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2214), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2217), 1, + sym_test_operator, + ACTIONS(2220), 1, + sym_brace_start, + STATE(1389), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1752), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2208), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(534), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2172), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1143), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [6184] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2229), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2231), 1, + anon_sym_DOLLAR, + ACTIONS(2233), 1, + sym_special_character, + ACTIONS(2235), 1, + anon_sym_DQUOTE, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2245), 1, + anon_sym_BQUOTE, + ACTIONS(2247), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2251), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2253), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2255), 1, + sym_test_operator, + ACTIONS(2257), 1, + sym_brace_start, + STATE(1284), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2225), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2249), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(536), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1972), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2223), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1129), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1970), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [6292] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2229), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2231), 1, + anon_sym_DOLLAR, + ACTIONS(2233), 1, + sym_special_character, + ACTIONS(2235), 1, + anon_sym_DQUOTE, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2245), 1, + anon_sym_BQUOTE, + ACTIONS(2247), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2251), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2253), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2255), 1, + sym_test_operator, + ACTIONS(2257), 1, + sym_brace_start, + STATE(1284), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2249), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2259), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(530), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1930), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2223), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1129), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1928), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [6400] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2261), 1, + aux_sym_for_statement_token1, + ACTIONS(2265), 1, + anon_sym_DQUOTE, + STATE(804), 1, + sym_string, + STATE(927), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2263), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [6476] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2273), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2276), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2279), 1, + anon_sym_DOLLAR, + ACTIONS(2282), 1, + sym_special_character, + ACTIONS(2285), 1, + anon_sym_DQUOTE, + ACTIONS(2288), 1, + aux_sym_number_token1, + ACTIONS(2291), 1, + aux_sym_number_token2, + ACTIONS(2294), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2297), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2300), 1, + anon_sym_BQUOTE, + ACTIONS(2303), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2309), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2312), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2315), 1, + sym_test_operator, + ACTIONS(2318), 1, + sym_brace_start, + STATE(1406), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1981), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2270), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2306), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(538), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2267), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1104), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1979), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [6584] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2106), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2108), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2110), 1, + anon_sym_DOLLAR, + ACTIONS(2112), 1, + sym_special_character, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(2116), 1, + aux_sym_number_token1, + ACTIONS(2118), 1, + aux_sym_number_token2, + ACTIONS(2120), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2122), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2124), 1, + anon_sym_BQUOTE, + ACTIONS(2126), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2130), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2132), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2134), 1, + sym_test_operator, + ACTIONS(2136), 1, + sym_brace_start, + STATE(1406), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2128), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2321), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(531), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2102), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1104), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1970), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [6692] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2323), 1, + aux_sym_for_statement_token1, + ACTIONS(2327), 1, + anon_sym_DQUOTE, + STATE(774), 1, + sym_string, + STATE(803), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2325), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [6768] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_DQUOTE, + ACTIONS(2329), 1, + aux_sym_for_statement_token1, + STATE(670), 1, + sym_orig_simple_variable_name, + STATE(730), 1, + sym_string, + ACTIONS(943), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2331), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [6844] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1160), 1, + anon_sym_DQUOTE, + ACTIONS(2333), 1, + aux_sym_for_statement_token1, + STATE(787), 1, + sym_string, + STATE(823), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2335), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [6920] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 1, + aux_sym_for_statement_token1, + ACTIONS(2341), 1, + anon_sym_DQUOTE, + STATE(781), 1, + sym_orig_simple_variable_name, + STATE(782), 1, + sym_string, + ACTIONS(943), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2339), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [6996] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2349), 1, + anon_sym_DOLLAR, + ACTIONS(2351), 1, + sym_special_character, + ACTIONS(2353), 1, + anon_sym_DQUOTE, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2359), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2363), 1, + anon_sym_BQUOTE, + ACTIONS(2365), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2369), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2371), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2373), 1, + sym_test_operator, + ACTIONS(2375), 1, + sym_brace_start, + STATE(3280), 1, + aux_sym_for_statement_repeat1, + STATE(3624), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2367), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2343), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3247), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [7101] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2380), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2383), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2386), 1, + anon_sym_DOLLAR, + ACTIONS(2389), 1, + sym_special_character, + ACTIONS(2392), 1, + anon_sym_DQUOTE, + ACTIONS(2395), 1, + aux_sym_number_token1, + ACTIONS(2398), 1, + aux_sym_number_token2, + ACTIONS(2401), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2404), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2407), 1, + anon_sym_BQUOTE, + ACTIONS(2410), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2416), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2419), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2422), 1, + sym_test_operator, + ACTIONS(2425), 1, + sym_brace_start, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2413), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1752), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2377), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [7206] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2428), 1, + sym_word, + ACTIONS(2434), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2437), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2440), 1, + anon_sym_DOLLAR, + ACTIONS(2443), 1, + sym_special_character, + ACTIONS(2446), 1, + anon_sym_DQUOTE, + ACTIONS(2452), 1, + aux_sym_number_token1, + ACTIONS(2455), 1, + aux_sym_number_token2, + ACTIONS(2458), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2461), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2464), 1, + anon_sym_BQUOTE, + ACTIONS(2467), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2473), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2476), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2482), 1, + sym_variable_name, + ACTIONS(2485), 1, + sym_brace_start, + STATE(1721), 1, + aux_sym_for_statement_repeat1, + STATE(5299), 1, + sym_subscript, + ACTIONS(2431), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2470), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(2449), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(546), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1189), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1191), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1573), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [7319] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2488), 1, + sym_word, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2496), 1, + anon_sym_DOLLAR, + ACTIONS(2498), 1, + sym_special_character, + ACTIONS(2500), 1, + anon_sym_DQUOTE, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2510), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2512), 1, + anon_sym_BQUOTE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2520), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2524), 1, + sym_variable_name, + ACTIONS(2526), 1, + sym_brace_start, + STATE(1721), 1, + aux_sym_for_statement_repeat1, + STATE(5299), 1, + sym_subscript, + ACTIONS(2490), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2516), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2522), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(2502), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(559), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1136), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1138), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1573), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [7432] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN, + ACTIONS(2528), 1, + sym_word, + ACTIONS(2532), 1, + anon_sym_LT_LT_LT, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, + anon_sym_DOLLAR, + ACTIONS(2540), 1, + sym_special_character, + ACTIONS(2542), 1, + anon_sym_DQUOTE, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2552), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2554), 1, + anon_sym_BQUOTE, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2562), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2564), 1, + sym_bare_dollar, + ACTIONS(2566), 1, + sym_brace_start, + STATE(601), 1, + aux_sym_command_repeat2, + STATE(1753), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 1, + sym_concatenation, + STATE(1850), 1, + sym_herestring_redirect, + STATE(4273), 1, + sym_subshell, + ACTIONS(2530), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2558), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1144), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1146), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1623), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [7551] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2568), 1, + aux_sym_for_statement_token1, + ACTIONS(2572), 1, + anon_sym_DQUOTE, + STATE(932), 1, + sym_orig_simple_variable_name, + STATE(988), 1, + sym_string, + ACTIONS(943), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2570), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [7626] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1968), 1, + anon_sym_LPAREN, + ACTIONS(2528), 1, + sym_word, + ACTIONS(2532), 1, + anon_sym_LT_LT_LT, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, + anon_sym_DOLLAR, + ACTIONS(2540), 1, + sym_special_character, + ACTIONS(2542), 1, + anon_sym_DQUOTE, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2552), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2554), 1, + anon_sym_BQUOTE, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2562), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2564), 1, + sym_bare_dollar, + ACTIONS(2566), 1, + sym_brace_start, + STATE(594), 1, + aux_sym_command_repeat2, + STATE(1753), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 1, + sym_concatenation, + STATE(1850), 1, + sym_herestring_redirect, + STATE(4265), 1, + sym_subshell, + ACTIONS(2530), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2558), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1250), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1252), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1623), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [7745] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2580), 1, + anon_sym_DOLLAR, + ACTIONS(2582), 1, + sym_special_character, + ACTIONS(2584), 1, + anon_sym_DQUOTE, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2590), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2592), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2594), 1, + anon_sym_BQUOTE, + ACTIONS(2596), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2600), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2602), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2604), 1, + sym_test_operator, + ACTIONS(2606), 1, + sym_brace_start, + STATE(1480), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2598), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(553), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2574), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1239), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [7850] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2580), 1, + anon_sym_DOLLAR, + ACTIONS(2582), 1, + sym_special_character, + ACTIONS(2584), 1, + anon_sym_DQUOTE, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2590), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2592), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2594), 1, + anon_sym_BQUOTE, + ACTIONS(2596), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2600), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2602), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2604), 1, + sym_test_operator, + ACTIONS(2606), 1, + sym_brace_start, + STATE(1480), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2598), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(553), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2574), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1239), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [7955] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2614), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2617), 1, + anon_sym_DOLLAR, + ACTIONS(2620), 1, + sym_special_character, + ACTIONS(2623), 1, + anon_sym_DQUOTE, + ACTIONS(2626), 1, + aux_sym_number_token1, + ACTIONS(2629), 1, + aux_sym_number_token2, + ACTIONS(2632), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2638), 1, + anon_sym_BQUOTE, + ACTIONS(2641), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2647), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2650), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2653), 1, + sym_test_operator, + ACTIONS(2656), 1, + sym_brace_start, + STATE(1480), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1752), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2644), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(553), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2608), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1239), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [8060] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + anon_sym_DQUOTE, + ACTIONS(2659), 1, + aux_sym_for_statement_token1, + STATE(883), 1, + sym_string, + STATE(894), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2661), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [8135] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1446), 1, + anon_sym_DQUOTE, + ACTIONS(2663), 1, + aux_sym_for_statement_token1, + STATE(815), 1, + sym_string, + STATE(855), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2665), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [8210] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2671), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + sym_special_character, + ACTIONS(2677), 1, + anon_sym_DQUOTE, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2683), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2687), 1, + anon_sym_BQUOTE, + ACTIONS(2689), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2693), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2695), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2697), 1, + sym_test_operator, + ACTIONS(2699), 1, + sym_brace_start, + STATE(1591), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2691), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(563), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2667), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1260), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8315] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2669), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2671), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2673), 1, + anon_sym_DOLLAR, + ACTIONS(2675), 1, + sym_special_character, + ACTIONS(2677), 1, + anon_sym_DQUOTE, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2683), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2687), 1, + anon_sym_BQUOTE, + ACTIONS(2689), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2693), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2695), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2697), 1, + sym_test_operator, + ACTIONS(2699), 1, + sym_brace_start, + STATE(1591), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2691), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(563), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2667), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1260), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8420] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 1, + anon_sym_DQUOTE, + ACTIONS(2701), 1, + aux_sym_for_statement_token1, + STATE(1002), 1, + sym_string, + STATE(1027), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2703), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [8495] = 27, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2488), 1, + sym_word, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2496), 1, + anon_sym_DOLLAR, + ACTIONS(2498), 1, + sym_special_character, + ACTIONS(2500), 1, + anon_sym_DQUOTE, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2510), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2512), 1, + anon_sym_BQUOTE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2520), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2524), 1, + sym_variable_name, + ACTIONS(2526), 1, + sym_brace_start, + STATE(1721), 1, + aux_sym_for_statement_repeat1, + STATE(5299), 1, + sym_subscript, + ACTIONS(2516), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2522), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(2705), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + ACTIONS(2502), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(546), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1094), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1096), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1573), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [8608] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + aux_sym_for_statement_token1, + ACTIONS(2711), 1, + anon_sym_DQUOTE, + STATE(962), 1, + sym_orig_simple_variable_name, + STATE(1019), 1, + sym_string, + ACTIONS(943), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2709), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [8683] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + anon_sym_DQUOTE, + ACTIONS(2713), 1, + aux_sym_for_statement_token1, + STATE(938), 1, + sym_string, + STATE(967), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(2715), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [8758] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2721), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2723), 1, + anon_sym_DOLLAR, + ACTIONS(2725), 1, + sym_special_character, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2737), 1, + anon_sym_BQUOTE, + ACTIONS(2739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2743), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2745), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2747), 1, + sym_test_operator, + ACTIONS(2749), 1, + sym_brace_start, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2741), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2717), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [8863] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2754), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2757), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2760), 1, + anon_sym_DOLLAR, + ACTIONS(2763), 1, + sym_special_character, + ACTIONS(2766), 1, + anon_sym_DQUOTE, + ACTIONS(2769), 1, + aux_sym_number_token1, + ACTIONS(2772), 1, + aux_sym_number_token2, + ACTIONS(2775), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2778), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2781), 1, + anon_sym_BQUOTE, + ACTIONS(2784), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2790), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2793), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2796), 1, + sym_test_operator, + ACTIONS(2799), 1, + sym_brace_start, + STATE(1591), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1752), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2787), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(563), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2751), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1260), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [8968] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2349), 1, + anon_sym_DOLLAR, + ACTIONS(2351), 1, + sym_special_character, + ACTIONS(2353), 1, + anon_sym_DQUOTE, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2359), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2363), 1, + anon_sym_BQUOTE, + ACTIONS(2365), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2369), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2371), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2375), 1, + sym_brace_start, + ACTIONS(2804), 1, + sym_test_operator, + STATE(3327), 1, + aux_sym_for_statement_repeat1, + STATE(3623), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2367), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2802), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3231), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [9073] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2721), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2723), 1, + anon_sym_DOLLAR, + ACTIONS(2725), 1, + sym_special_character, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2737), 1, + anon_sym_BQUOTE, + ACTIONS(2739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2743), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2745), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2747), 1, + sym_test_operator, + ACTIONS(2749), 1, + sym_brace_start, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2741), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1745), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2717), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [9178] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2810), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + sym_special_character, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2822), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2826), 1, + anon_sym_BQUOTE, + ACTIONS(2828), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2832), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2834), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2836), 1, + sym_test_operator, + ACTIONS(2838), 1, + sym_brace_start, + STATE(3348), 1, + aux_sym_for_statement_repeat1, + STATE(3650), 1, + sym_concatenation, + ACTIONS(2830), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1814), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2806), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3242), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [9282] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, + sym_special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2860), 1, + anon_sym_BQUOTE, + ACTIONS(2862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2866), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2868), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2870), 1, + sym_test_operator, + ACTIONS(2872), 1, + sym_brace_start, + STATE(1598), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(589), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2840), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [9386] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2876), 1, + aux_sym_statements_token1, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4137), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5450), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [9506] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2922), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4141), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5452), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [9626] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2229), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2231), 1, + anon_sym_DOLLAR, + ACTIONS(2233), 1, + sym_special_character, + ACTIONS(2235), 1, + anon_sym_DQUOTE, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2247), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2251), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2253), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2255), 1, + sym_test_operator, + ACTIONS(2257), 1, + sym_brace_start, + STATE(1284), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1972), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2249), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2924), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(577), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2223), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1129), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1970), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [9730] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, + sym_special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2860), 1, + anon_sym_BQUOTE, + ACTIONS(2862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2866), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2868), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2870), 1, + sym_test_operator, + ACTIONS(2872), 1, + sym_brace_start, + STATE(1598), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(589), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1745), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2840), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [9834] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2926), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4156), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5655), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [9954] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2928), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4161), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5339), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [10074] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2932), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2934), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2936), 1, + anon_sym_DOLLAR, + ACTIONS(2938), 1, + sym_special_character, + ACTIONS(2940), 1, + anon_sym_DQUOTE, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2946), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2950), 1, + anon_sym_BQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2956), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2958), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2960), 1, + sym_test_operator, + ACTIONS(2962), 1, + sym_brace_start, + STATE(3516), 1, + aux_sym_for_statement_repeat1, + STATE(3756), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2930), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3376), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [10178] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2932), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2934), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2936), 1, + anon_sym_DOLLAR, + ACTIONS(2938), 1, + sym_special_character, + ACTIONS(2940), 1, + anon_sym_DQUOTE, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2946), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2950), 1, + anon_sym_BQUOTE, + ACTIONS(2952), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2956), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2958), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2962), 1, + sym_brace_start, + ACTIONS(2966), 1, + sym_test_operator, + STATE(3486), 1, + aux_sym_for_statement_repeat1, + STATE(3771), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2954), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2964), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3361), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [10282] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2968), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4173), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5342), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [10402] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2227), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2229), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2231), 1, + anon_sym_DOLLAR, + ACTIONS(2233), 1, + sym_special_character, + ACTIONS(2235), 1, + anon_sym_DQUOTE, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2241), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2247), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2251), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2253), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2255), 1, + sym_test_operator, + ACTIONS(2257), 1, + sym_brace_start, + STATE(1284), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1930), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2249), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2259), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(530), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2223), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1129), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1928), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [10506] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2970), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4167), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5428), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [10626] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2810), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + sym_special_character, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2822), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2826), 1, + anon_sym_BQUOTE, + ACTIONS(2828), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2832), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2834), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(2974), 1, + sym_test_operator, + STATE(3340), 1, + aux_sym_for_statement_repeat1, + STATE(3655), 1, + sym_concatenation, + ACTIONS(2830), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1810), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(2972), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3235), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [10730] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(735), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 29, + 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_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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [10794] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(2976), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4166), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5384), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [10914] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2982), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2984), 1, + anon_sym_DOLLAR, + ACTIONS(2986), 1, + sym_special_character, + ACTIONS(2988), 1, + anon_sym_DQUOTE, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2994), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2998), 1, + anon_sym_BQUOTE, + ACTIONS(3000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3004), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3006), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3008), 1, + sym_test_operator, + ACTIONS(3010), 1, + sym_brace_start, + STATE(1655), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(585), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2978), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1285), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [11018] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(3012), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4148), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5387), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [11138] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2982), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2984), 1, + anon_sym_DOLLAR, + ACTIONS(2986), 1, + sym_special_character, + ACTIONS(2988), 1, + anon_sym_DQUOTE, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2994), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2998), 1, + anon_sym_BQUOTE, + ACTIONS(3000), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3004), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3006), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3008), 1, + sym_test_operator, + ACTIONS(3010), 1, + sym_brace_start, + STATE(1655), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3002), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(585), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2978), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1285), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [11242] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3020), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3023), 1, + anon_sym_DOLLAR, + ACTIONS(3026), 1, + sym_special_character, + ACTIONS(3029), 1, + anon_sym_DQUOTE, + ACTIONS(3032), 1, + aux_sym_number_token1, + ACTIONS(3035), 1, + aux_sym_number_token2, + ACTIONS(3038), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3041), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3044), 1, + anon_sym_BQUOTE, + ACTIONS(3047), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3053), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3056), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3059), 1, + sym_test_operator, + ACTIONS(3062), 1, + sym_brace_start, + STATE(1655), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1752), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3050), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(585), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3014), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1285), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [11346] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3071), 1, + anon_sym_DOLLAR, + ACTIONS(3073), 1, + sym_special_character, + ACTIONS(3075), 1, + anon_sym_DQUOTE, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3085), 1, + anon_sym_BQUOTE, + ACTIONS(3087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3091), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3093), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3095), 1, + sym_test_operator, + ACTIONS(3097), 1, + sym_brace_start, + STATE(3514), 1, + aux_sym_for_statement_repeat1, + STATE(3711), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3065), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3301), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [11450] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3067), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3071), 1, + anon_sym_DOLLAR, + ACTIONS(3073), 1, + sym_special_character, + ACTIONS(3075), 1, + anon_sym_DQUOTE, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3081), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3085), 1, + anon_sym_BQUOTE, + ACTIONS(3087), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3091), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3093), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3097), 1, + sym_brace_start, + ACTIONS(3101), 1, + sym_test_operator, + STATE(3404), 1, + aux_sym_for_statement_repeat1, + STATE(3718), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3089), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3099), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3328), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [11554] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(735), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [11618] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3106), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3109), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3112), 1, + anon_sym_DOLLAR, + ACTIONS(3115), 1, + sym_special_character, + ACTIONS(3118), 1, + anon_sym_DQUOTE, + ACTIONS(3121), 1, + aux_sym_number_token1, + ACTIONS(3124), 1, + aux_sym_number_token2, + ACTIONS(3127), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3130), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3133), 1, + anon_sym_BQUOTE, + ACTIONS(3136), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3142), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3145), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3148), 1, + sym_test_operator, + ACTIONS(3151), 1, + sym_brace_start, + STATE(1598), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3139), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(589), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1752), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3103), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [11722] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(3154), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4139), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5425), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [11842] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, + sym_special_character, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, + anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(3156), 1, + aux_sym_statements_token1, + STATE(2654), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, + aux_sym_for_statement_repeat1, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2880), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4147), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + STATE(5863), 3, + sym_heredoc_pipeline, + sym_heredoc_expression, + sym_heredoc_command, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [11962] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2148), 1, + anon_sym_DQUOTE, + ACTIONS(3158), 1, + aux_sym_for_statement_token1, + STATE(1180), 1, + sym_orig_simple_variable_name, + STATE(1226), 1, + sym_string, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3160), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [12035] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1816), 1, + anon_sym_BQUOTE, + ACTIONS(735), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [12100] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2528), 1, + sym_word, + ACTIONS(2532), 1, + anon_sym_LT_LT_LT, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, + anon_sym_DOLLAR, + ACTIONS(2540), 1, + sym_special_character, + ACTIONS(2542), 1, + anon_sym_DQUOTE, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2552), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2554), 1, + anon_sym_BQUOTE, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2562), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2564), 1, + sym_bare_dollar, + ACTIONS(2566), 1, + sym_brace_start, + STATE(603), 1, + aux_sym_command_repeat2, + STATE(1753), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 1, + sym_concatenation, + STATE(1850), 1, + sym_herestring_redirect, + ACTIONS(2530), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2558), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1609), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1611), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1623), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [12213] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1732), 1, + aux_sym_for_statement_repeat1, + STATE(596), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + STATE(1588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [12282] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3162), 1, + sym_word, + ACTIONS(3165), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3168), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3171), 1, + anon_sym_DOLLAR, + ACTIONS(3174), 1, + sym_special_character, + ACTIONS(3177), 1, + anon_sym_DQUOTE, + ACTIONS(3183), 1, + aux_sym_number_token1, + ACTIONS(3186), 1, + aux_sym_number_token2, + ACTIONS(3189), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3192), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3195), 1, + anon_sym_BQUOTE, + ACTIONS(3198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3204), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3207), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3210), 1, + sym_brace_start, + STATE(1732), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3201), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(596), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3180), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1752), 15, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [12385] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3215), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3217), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3219), 1, + anon_sym_DOLLAR, + ACTIONS(3221), 1, + sym_special_character, + ACTIONS(3223), 1, + anon_sym_DQUOTE, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3229), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3233), 1, + anon_sym_BQUOTE, + ACTIONS(3235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3239), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3241), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3243), 1, + sym_test_operator, + ACTIONS(3245), 1, + sym_brace_start, + STATE(3628), 1, + aux_sym_for_statement_repeat1, + STATE(3852), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3237), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3213), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3417), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [12488] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3215), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3217), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3219), 1, + anon_sym_DOLLAR, + ACTIONS(3221), 1, + sym_special_character, + ACTIONS(3223), 1, + anon_sym_DQUOTE, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3229), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3233), 1, + anon_sym_BQUOTE, + ACTIONS(3235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3239), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3241), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3245), 1, + sym_brace_start, + ACTIONS(3249), 1, + sym_test_operator, + STATE(3631), 1, + aux_sym_for_statement_repeat1, + STATE(3853), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3237), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3247), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3394), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [12591] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2721), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2723), 1, + anon_sym_DOLLAR, + ACTIONS(2725), 1, + sym_special_character, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2743), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2745), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2747), 1, + sym_test_operator, + ACTIONS(2749), 1, + sym_brace_start, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2741), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2717), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [12692] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2721), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2723), 1, + anon_sym_DOLLAR, + ACTIONS(2725), 1, + sym_special_character, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2733), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2739), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2743), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2745), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2747), 1, + sym_test_operator, + ACTIONS(2749), 1, + sym_brace_start, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2741), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(545), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2717), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [12793] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2528), 1, + sym_word, + ACTIONS(2532), 1, + anon_sym_LT_LT_LT, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, + anon_sym_DOLLAR, + ACTIONS(2540), 1, + sym_special_character, + ACTIONS(2542), 1, + anon_sym_DQUOTE, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2552), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2554), 1, + anon_sym_BQUOTE, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2562), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2564), 1, + sym_bare_dollar, + ACTIONS(2566), 1, + sym_brace_start, + STATE(603), 1, + aux_sym_command_repeat2, + STATE(1753), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 1, + sym_concatenation, + STATE(1850), 1, + sym_herestring_redirect, + ACTIONS(2530), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2558), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1538), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1540), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1623), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [12906] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3257), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, + sym_special_character, + ACTIONS(3261), 1, + anon_sym_DQUOTE, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3271), 1, + anon_sym_BQUOTE, + ACTIONS(3273), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3277), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3279), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3281), 1, + sym_test_operator, + ACTIONS(3283), 1, + sym_brace_start, + STATE(3505), 1, + aux_sym_for_statement_repeat1, + STATE(3691), 1, + sym_concatenation, + ACTIONS(3275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1814), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3251), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3290), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [13009] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3285), 1, + sym_word, + ACTIONS(3291), 1, + anon_sym_LT_LT_LT, + ACTIONS(3294), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3297), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3300), 1, + anon_sym_DOLLAR, + ACTIONS(3303), 1, + sym_special_character, + ACTIONS(3306), 1, + anon_sym_DQUOTE, + ACTIONS(3312), 1, + aux_sym_number_token1, + ACTIONS(3315), 1, + aux_sym_number_token2, + ACTIONS(3318), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3321), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3324), 1, + anon_sym_BQUOTE, + ACTIONS(3327), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3333), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3336), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3339), 1, + sym_file_descriptor, + ACTIONS(3342), 1, + sym_bare_dollar, + ACTIONS(3345), 1, + sym_brace_start, + STATE(603), 1, + aux_sym_command_repeat2, + STATE(1753), 1, + aux_sym_for_statement_repeat1, + STATE(1798), 1, + sym_concatenation, + STATE(1850), 1, + sym_herestring_redirect, + ACTIONS(3288), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(3330), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3309), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1545), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1547), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1623), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [13124] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1804), 1, + anon_sym_BQUOTE, + ACTIONS(735), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(328), 28, + 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_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [13189] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1942), 1, + anon_sym_DQUOTE, + ACTIONS(3348), 1, + aux_sym_for_statement_token1, + STATE(1056), 1, + sym_string, + STATE(1141), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3350), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [13262] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3257), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, + sym_special_character, + ACTIONS(3261), 1, + anon_sym_DQUOTE, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3271), 1, + anon_sym_BQUOTE, + ACTIONS(3273), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3277), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3279), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(3354), 1, + sym_test_operator, + STATE(3461), 1, + aux_sym_for_statement_repeat1, + STATE(3698), 1, + sym_concatenation, + ACTIONS(3275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1810), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3352), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3343), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [13365] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1732), 1, + aux_sym_for_statement_repeat1, + STATE(596), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + STATE(1588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [13434] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1706), 1, + aux_sym_for_statement_repeat1, + STATE(1772), 1, + sym_concatenation, + STATE(1593), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1814), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [13502] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3356), 1, + sym_word, + ACTIONS(3359), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3362), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3365), 1, + anon_sym_DOLLAR, + ACTIONS(3368), 1, + sym_special_character, + ACTIONS(3371), 1, + anon_sym_DQUOTE, + ACTIONS(3377), 1, + aux_sym_number_token1, + ACTIONS(3380), 1, + aux_sym_number_token2, + ACTIONS(3383), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3386), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3389), 1, + anon_sym_BQUOTE, + ACTIONS(3392), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3398), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3401), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3404), 1, + sym_brace_start, + STATE(1754), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3395), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(609), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3374), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1642), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1752), 14, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [13604] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 1, + aux_sym_statements_token1, + ACTIONS(3424), 1, + sym_variable_name, + STATE(5308), 1, + sym_subscript, + ACTIONS(3409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3419), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3160), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [13688] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + sym_variable_name, + ACTIONS(3431), 1, + aux_sym_statements_token1, + STATE(5308), 1, + sym_subscript, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3419), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3427), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3160), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3429), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [13772] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2584), 1, + anon_sym_DQUOTE, + ACTIONS(3433), 1, + aux_sym_for_statement_token1, + STATE(1288), 1, + sym_orig_simple_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3435), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [13844] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1714), 1, + aux_sym_for_statement_repeat1, + STATE(1742), 1, + sym_concatenation, + STATE(1501), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1810), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [13912] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, + sym_special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2866), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2868), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2870), 1, + sym_test_operator, + ACTIONS(2872), 1, + sym_brace_start, + STATE(1598), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(589), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2840), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [14012] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2844), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2846), 1, + anon_sym_DOLLAR, + ACTIONS(2848), 1, + sym_special_character, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2856), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2862), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2866), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2868), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2870), 1, + sym_test_operator, + ACTIONS(2872), 1, + sym_brace_start, + STATE(1598), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2864), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(589), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2840), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [14112] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1754), 1, + aux_sym_for_statement_repeat1, + STATE(609), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + STATE(1642), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [14180] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2810), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + sym_special_character, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2822), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2828), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2832), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2834), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2836), 1, + sym_test_operator, + ACTIONS(2838), 1, + sym_brace_start, + STATE(3348), 1, + aux_sym_for_statement_repeat1, + STATE(3650), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2830), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2806), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3242), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [14280] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_DQUOTE, + ACTIONS(3437), 1, + aux_sym_for_statement_token1, + STATE(1401), 1, + sym_string, + STATE(1423), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3439), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 37, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [14352] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + sym_variable_name, + STATE(5308), 1, + sym_subscript, + ACTIONS(3419), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3422), 2, + sym_test_operator, + sym_brace_start, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3160), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 19, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + ACTIONS(3415), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [14428] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2808), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2810), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2812), 1, + anon_sym_DOLLAR, + ACTIONS(2814), 1, + sym_special_character, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2822), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2828), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2832), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2834), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(2974), 1, + sym_test_operator, + STATE(3340), 1, + aux_sym_for_statement_repeat1, + STATE(3655), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(2830), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2972), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3235), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [14528] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3424), 1, + sym_variable_name, + ACTIONS(3445), 1, + aux_sym_statements_token1, + STATE(5308), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3419), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3160), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [14606] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_DQUOTE, + ACTIONS(3447), 1, + aux_sym_for_statement_token1, + STATE(1305), 1, + sym_string, + STATE(1400), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3449), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [14678] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2235), 1, + anon_sym_DQUOTE, + ACTIONS(3451), 1, + aux_sym_for_statement_token1, + STATE(1156), 1, + sym_orig_simple_variable_name, + STATE(1247), 1, + sym_string, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3453), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 37, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [14750] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 1, + anon_sym_DQUOTE, + ACTIONS(3455), 1, + aux_sym_for_statement_token1, + STATE(1192), 1, + sym_string, + STATE(1218), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3457), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [14822] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1754), 1, + aux_sym_for_statement_repeat1, + STATE(609), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + STATE(1642), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [14890] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3257), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, + sym_special_character, + ACTIONS(3261), 1, + anon_sym_DQUOTE, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3273), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3277), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3279), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(3354), 1, + sym_test_operator, + STATE(3461), 1, + aux_sym_for_statement_repeat1, + STATE(3698), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3352), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3343), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [14989] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(3470), 1, + sym_variable_name, + STATE(5330), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3459), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3467), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3217), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(1818), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [15072] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1764), 1, + aux_sym_for_statement_repeat1, + STATE(1841), 1, + sym_concatenation, + STATE(1603), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1814), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [15139] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(821), 1, + anon_sym_DOLLAR, + ACTIONS(825), 1, + anon_sym_DQUOTE, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(835), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(837), 1, + anon_sym_BQUOTE, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(843), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(845), 1, + sym_semgrep_named_ellipsis, + ACTIONS(849), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1966), 1, + sym_word, + ACTIONS(3473), 1, + sym_special_character, + ACTIONS(3477), 1, + sym_variable_name, + STATE(548), 1, + sym_command_name, + STATE(1679), 1, + aux_sym_for_statement_repeat1, + STATE(1760), 1, + sym_concatenation, + STATE(5277), 1, + sym_subscript, + ACTIONS(841), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3475), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(827), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1590), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [15258] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(3422), 2, + sym_test_operator, + sym_brace_start, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3441), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 19, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [15333] = 32, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(75), 1, + sym_semgrep_named_ellipsis, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1922), 1, + sym_word, + ACTIONS(3477), 1, + sym_variable_name, + ACTIONS(3485), 1, + sym_special_character, + STATE(501), 1, + sym_command_name, + STATE(987), 1, + aux_sym_for_statement_repeat1, + STATE(1068), 1, + sym_concatenation, + STATE(5277), 1, + sym_subscript, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3475), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(55), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(722), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [15452] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(1737), 1, + aux_sym_for_statement_repeat1, + STATE(1788), 1, + sym_concatenation, + STATE(1619), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1810), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [15519] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_RPAREN, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(3487), 1, + ts_builtin_sym_end, + ACTIONS(3491), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3489), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [15604] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2850), 1, + anon_sym_DQUOTE, + ACTIONS(3497), 1, + aux_sym_for_statement_token1, + STATE(1512), 1, + sym_string, + STATE(1566), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3499), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 36, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [15675] = 32, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(65), 1, + anon_sym_BQUOTE, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(73), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(75), 1, + sym_semgrep_named_ellipsis, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(1922), 1, + sym_word, + ACTIONS(3477), 1, + sym_variable_name, + ACTIONS(3485), 1, + sym_special_character, + STATE(476), 1, + sym_command_name, + STATE(987), 1, + aux_sym_for_statement_repeat1, + STATE(1068), 1, + sym_concatenation, + STATE(5277), 1, + sym_subscript, + ACTIONS(69), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3475), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(55), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(722), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [15794] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3470), 1, + sym_variable_name, + ACTIONS(3491), 1, + aux_sym_statements_token1, + STATE(5330), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3467), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3489), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3217), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3429), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [15877] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 1, + anon_sym_DQUOTE, + ACTIONS(3501), 1, + aux_sym_for_statement_token1, + STATE(1471), 1, + sym_orig_simple_variable_name, + STATE(1549), 1, + sym_string, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3503), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 37, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [15948] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(592), 1, + anon_sym_DOLLAR, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(600), 1, + aux_sym_number_token1, + ACTIONS(602), 1, + aux_sym_number_token2, + ACTIONS(604), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(606), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(608), 1, + anon_sym_BQUOTE, + ACTIONS(610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(614), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(616), 1, + sym_semgrep_named_ellipsis, + ACTIONS(624), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(2038), 1, + sym_word, + ACTIONS(3477), 1, + sym_variable_name, + ACTIONS(3505), 1, + sym_special_character, + STATE(478), 1, + sym_command_name, + STATE(999), 1, + aux_sym_for_statement_repeat1, + STATE(1084), 1, + sym_concatenation, + STATE(5277), 1, + sym_subscript, + ACTIONS(612), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3475), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(598), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(680), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [16067] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(464), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(466), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(468), 1, + anon_sym_DOLLAR, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(476), 1, + aux_sym_number_token1, + ACTIONS(478), 1, + aux_sym_number_token2, + ACTIONS(480), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(482), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(484), 1, + anon_sym_BQUOTE, + ACTIONS(486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(490), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(492), 1, + sym_semgrep_named_ellipsis, + ACTIONS(500), 1, + sym_brace_start, + ACTIONS(1079), 1, + anon_sym_LT_LT_LT, + ACTIONS(1081), 1, + sym_file_descriptor, + ACTIONS(2034), 1, + sym_word, + ACTIONS(3477), 1, + sym_variable_name, + ACTIONS(3507), 1, + sym_special_character, + STATE(473), 1, + sym_command_name, + STATE(922), 1, + aux_sym_for_statement_repeat1, + STATE(1048), 1, + sym_concatenation, + STATE(5277), 1, + sym_subscript, + ACTIONS(488), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1077), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3475), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(474), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1073), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1071), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(656), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [16186] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1816), 1, + ts_builtin_sym_end, + ACTIONS(1818), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(3482), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3459), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16271] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 1, + aux_sym_statements_token1, + ACTIONS(3470), 1, + sym_variable_name, + STATE(5330), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3467), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3217), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16348] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3470), 1, + sym_variable_name, + STATE(5330), 1, + sym_subscript, + ACTIONS(3422), 2, + sym_test_operator, + sym_brace_start, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3467), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3217), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 19, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + ACTIONS(3415), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16423] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 8, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16500] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3253), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3255), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3257), 1, + anon_sym_DOLLAR, + ACTIONS(3259), 1, + sym_special_character, + ACTIONS(3261), 1, + anon_sym_DQUOTE, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3273), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3277), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3279), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3281), 1, + sym_test_operator, + ACTIONS(3283), 1, + sym_brace_start, + STATE(3505), 1, + aux_sym_for_statement_repeat1, + STATE(3691), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3251), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3290), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [16599] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(825), 1, + anon_sym_DQUOTE, + ACTIONS(3509), 1, + aux_sym_for_statement_token1, + ACTIONS(3513), 1, + anon_sym_POUND, + STATE(1651), 1, + sym_orig_simple_variable_name, + STATE(1673), 1, + sym_string, + ACTIONS(3511), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 13, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 1, + aux_sym_concatenation_token1, + ACTIONS(3517), 1, + sym_concat, + STATE(647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16737] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3519), 1, + aux_sym_concatenation_token1, + ACTIONS(3522), 1, + sym_concat, + STATE(647), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16803] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3525), 1, + sym_word, + ACTIONS(3528), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3531), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(3537), 1, + sym_special_character, + ACTIONS(3540), 1, + anon_sym_DQUOTE, + ACTIONS(3546), 1, + aux_sym_number_token1, + ACTIONS(3549), 1, + aux_sym_number_token2, + ACTIONS(3552), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3555), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3558), 1, + anon_sym_BQUOTE, + ACTIONS(3561), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3567), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3570), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3573), 1, + sym_brace_start, + STATE(1883), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3564), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(648), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3543), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1743), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1752), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [16903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 1, + aux_sym_concatenation_token1, + ACTIONS(3576), 1, + sym_concat, + STATE(646), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [16969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_concatenation_token1, + ACTIONS(3580), 1, + sym_concat, + STATE(651), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [17035] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3582), 1, + aux_sym_concatenation_token1, + ACTIONS(3585), 1, + sym_concat, + STATE(651), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [17101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_concatenation_token1, + ACTIONS(3592), 1, + sym_concat, + STATE(650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [17167] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3594), 1, + sym_word, + ACTIONS(3596), 1, + aux_sym_for_statement_token1, + ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3600), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3602), 1, + anon_sym_DOLLAR, + ACTIONS(3604), 1, + sym_special_character, + ACTIONS(3606), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3626), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3628), 1, + sym_semgrep_metavariable, + ACTIONS(3630), 1, + sym_brace_start, + STATE(1908), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(654), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3608), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1928), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1930), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1757), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [17271] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3632), 1, + sym_word, + ACTIONS(3635), 1, + aux_sym_for_statement_token1, + ACTIONS(3638), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3641), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3644), 1, + anon_sym_DOLLAR, + ACTIONS(3647), 1, + sym_special_character, + ACTIONS(3650), 1, + anon_sym_DQUOTE, + ACTIONS(3656), 1, + aux_sym_number_token1, + ACTIONS(3659), 1, + aux_sym_number_token2, + ACTIONS(3662), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3665), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3668), 1, + anon_sym_BQUOTE, + ACTIONS(3671), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3677), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3680), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3683), 1, + sym_semgrep_metavariable, + ACTIONS(3686), 1, + sym_brace_start, + STATE(1908), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3674), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(654), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3653), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1979), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1981), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1757), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [17375] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_concatenation_token1, + ACTIONS(3592), 1, + sym_concat, + STATE(650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [17441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 1, + aux_sym_concatenation_token1, + ACTIONS(3576), 1, + sym_concat, + STATE(646), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [17507] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3689), 1, + sym_word, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(3697), 1, + sym_special_character, + ACTIONS(3699), 1, + anon_sym_DQUOTE, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3709), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3711), 1, + anon_sym_BQUOTE, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3719), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3721), 1, + sym_brace_start, + STATE(1883), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3715), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(648), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3701), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1743), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1741), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [17607] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3594), 1, + sym_word, + ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3600), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3602), 1, + anon_sym_DOLLAR, + ACTIONS(3604), 1, + sym_special_character, + ACTIONS(3606), 1, + anon_sym_DQUOTE, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3616), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3626), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3630), 1, + sym_brace_start, + ACTIONS(3723), 1, + aux_sym_for_statement_token1, + ACTIONS(3725), 1, + sym_semgrep_metavariable, + STATE(1908), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3622), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(653), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(3608), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1970), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1972), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1757), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [17711] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3515), 1, + aux_sym_concatenation_token1, + ACTIONS(3576), 1, + sym_concat, + ACTIONS(3727), 1, + anon_sym_LPAREN, + STATE(646), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [17779] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_concatenation_token1, + ACTIONS(3592), 1, + sym_concat, + STATE(650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [17845] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3689), 1, + sym_word, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3695), 1, + anon_sym_DOLLAR, + ACTIONS(3697), 1, + sym_special_character, + ACTIONS(3699), 1, + anon_sym_DQUOTE, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3709), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3711), 1, + anon_sym_BQUOTE, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3719), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3721), 1, + sym_brace_start, + STATE(1883), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3715), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(648), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3701), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1743), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1745), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [17945] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3734), 1, + aux_sym_for_statement_token1, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + ACTIONS(3740), 1, + anon_sym_POUND, + STATE(1605), 1, + sym_string, + STATE(1653), 1, + sym_orig_simple_variable_name, + ACTIONS(3736), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3578), 1, + aux_sym_concatenation_token1, + ACTIONS(3592), 1, + sym_concat, + STATE(650), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3744), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3742), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18142] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + aux_sym_concatenation_token1, + ACTIONS(3748), 1, + sym_concat, + STATE(677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18207] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3750), 1, + sym_word, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3756), 1, + anon_sym_DOLLAR, + ACTIONS(3758), 1, + sym_special_character, + ACTIONS(3760), 1, + anon_sym_DQUOTE, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3772), 1, + anon_sym_BQUOTE, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3780), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3782), 1, + sym_brace_start, + STATE(2009), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3762), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1837), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [18306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3784), 1, + aux_sym_concatenation_token1, + ACTIONS(3787), 1, + sym_concat, + STATE(667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18430] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2500), 1, + anon_sym_DQUOTE, + ACTIONS(3790), 1, + aux_sym_for_statement_token1, + ACTIONS(3794), 1, + anon_sym_POUND, + STATE(1611), 1, + sym_orig_simple_variable_name, + STATE(1652), 1, + sym_string, + ACTIONS(3792), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(943), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18501] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [18560] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3796), 1, + sym_word, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3802), 1, + anon_sym_DOLLAR, + ACTIONS(3804), 1, + sym_special_character, + ACTIONS(3806), 1, + anon_sym_DQUOTE, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3816), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3826), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3828), 1, + sym_brace_start, + STATE(4057), 1, + aux_sym_for_statement_repeat1, + STATE(4162), 1, + sym_concatenation, + ACTIONS(3822), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3808), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1812), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(3940), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1814), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [18659] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3802), 1, + anon_sym_DOLLAR, + ACTIONS(3804), 1, + sym_special_character, + ACTIONS(3806), 1, + anon_sym_DQUOTE, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3816), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3826), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3828), 1, + sym_brace_start, + ACTIONS(3830), 1, + sym_word, + STATE(4046), 1, + aux_sym_for_statement_repeat1, + STATE(4143), 1, + sym_concatenation, + ACTIONS(3822), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3832), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1808), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(3988), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1810), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [18758] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym_concat, + STATE(737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [18823] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(3844), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3842), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [18902] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym_concat, + STATE(737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [18967] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym_concat, + STATE(737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19032] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + aux_sym_concatenation_token1, + ACTIONS(3857), 1, + sym_concat, + STATE(677), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [19097] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3860), 1, + aux_sym_concatenation_token1, + ACTIONS(3863), 1, + sym_concat, + STATE(678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19221] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + aux_sym_concatenation_token1, + ACTIONS(3868), 1, + sym_concat, + STATE(709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [19351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + aux_sym_concatenation_token1, + ACTIONS(3876), 1, + sym_concat, + STATE(734), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19416] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [19481] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3878), 1, + sym_word, + ACTIONS(3881), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3884), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3887), 1, + anon_sym_DOLLAR, + ACTIONS(3890), 1, + sym_special_character, + ACTIONS(3893), 1, + anon_sym_DQUOTE, + ACTIONS(3899), 1, + aux_sym_number_token1, + ACTIONS(3902), 1, + aux_sym_number_token2, + ACTIONS(3905), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3908), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3911), 1, + anon_sym_BQUOTE, + ACTIONS(3914), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3920), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3923), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3926), 1, + sym_brace_start, + STATE(2009), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3917), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3896), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1837), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1752), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [19580] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + aux_sym_concatenation_token1, + ACTIONS(3929), 1, + sym_concat, + STATE(665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [19645] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3931), 1, + aux_sym_for_statement_token1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(3937), 1, + anon_sym_POUND, + STATE(1682), 1, + sym_orig_simple_variable_name, + STATE(1722), 1, + sym_string, + ACTIONS(3933), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 11, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [19716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19834] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(3941), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3939), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19913] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + aux_sym_concatenation_token1, + ACTIONS(3868), 1, + sym_concat, + ACTIONS(3943), 1, + anon_sym_LPAREN, + STATE(709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [19980] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 1, + aux_sym_statements_token1, + ACTIONS(3482), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 7, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [20055] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + aux_sym_concatenation_token1, + ACTIONS(3946), 1, + sym_concat, + STATE(682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [20120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20179] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(3950), 1, + sym_concat, + STATE(758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3744), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3742), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20303] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20362] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1818), 1, + anon_sym_BQUOTE, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(3954), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3952), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 28, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [20443] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2542), 1, + anon_sym_DQUOTE, + ACTIONS(3958), 1, + aux_sym_for_statement_token1, + ACTIONS(3962), 1, + anon_sym_POUND, + STATE(1697), 1, + sym_orig_simple_variable_name, + STATE(1727), 1, + sym_string, + ACTIONS(3960), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 13, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [20514] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(3422), 2, + sym_test_operator, + sym_brace_start, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 18, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [20587] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + aux_sym_concatenation_token1, + ACTIONS(3929), 1, + sym_concat, + STATE(665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + aux_sym_concatenation_token1, + ACTIONS(3929), 1, + sym_concat, + STATE(665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [20847] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(3966), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(3964), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [20926] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, + anon_sym_DOLLAR, + ACTIONS(3976), 1, + sym_special_character, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, + anon_sym_BQUOTE, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3998), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4000), 1, + sym_brace_start, + STATE(1957), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(710), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3980), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1795), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [21025] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 1, + aux_sym_concatenation_token1, + ACTIONS(3929), 1, + sym_concat, + STATE(665), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3744), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3742), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [21090] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, + anon_sym_DOLLAR, + ACTIONS(3976), 1, + sym_special_character, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3990), 1, + anon_sym_BQUOTE, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3998), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4000), 1, + sym_brace_start, + STATE(1957), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(710), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3980), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1795), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [21189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [21248] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + aux_sym_concatenation_token1, + ACTIONS(4002), 1, + sym_concat, + STATE(678), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21313] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4004), 1, + sym_word, + ACTIONS(4007), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4010), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4013), 1, + anon_sym_DOLLAR, + ACTIONS(4016), 1, + sym_special_character, + ACTIONS(4019), 1, + anon_sym_DQUOTE, + ACTIONS(4025), 1, + aux_sym_number_token1, + ACTIONS(4028), 1, + aux_sym_number_token2, + ACTIONS(4031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4034), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4037), 1, + anon_sym_BQUOTE, + ACTIONS(4040), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4046), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4049), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4052), 1, + sym_brace_start, + STATE(1957), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4043), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(710), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4022), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1795), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1752), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [21412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(3950), 1, + sym_concat, + STATE(758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [21536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21831] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(957), 1, + anon_sym_LPAREN, + ACTIONS(3874), 1, + aux_sym_concatenation_token1, + ACTIONS(3946), 1, + sym_concat, + STATE(682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(241), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [21957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22016] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(4055), 1, + sym_concat, + STATE(723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + aux_sym_concatenation_token1, + ACTIONS(3946), 1, + sym_concat, + STATE(682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(241), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4057), 1, + aux_sym_concatenation_token1, + ACTIONS(4060), 1, + sym_concat, + STATE(723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym_concat, + STATE(737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22394] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_BQUOTE, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(4069), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ACTIONS(4067), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 28, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22717] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22835] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4071), 1, + aux_sym_concatenation_token1, + ACTIONS(4074), 1, + sym_concat, + STATE(734), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [22900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [22965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(4081), 1, + sym_concat, + STATE(738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23089] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4083), 1, + aux_sym_concatenation_token1, + ACTIONS(4086), 1, + sym_concat, + STATE(738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23455] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23514] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23573] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3838), 1, + aux_sym_concatenation_token1, + ACTIONS(3840), 1, + sym_concat, + STATE(737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23638] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3866), 1, + aux_sym_concatenation_token1, + ACTIONS(3868), 1, + sym_concat, + STATE(709), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23703] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3870), 1, + aux_sym_concatenation_token1, + ACTIONS(3872), 1, + sym_concat, + STATE(721), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [23886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [23945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24063] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24122] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(3950), 1, + sym_concat, + STATE(758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24246] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(3950), 1, + sym_concat, + STATE(758), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24311] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3948), 1, + aux_sym_concatenation_token1, + ACTIONS(4089), 1, + sym_concat, + STATE(667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24376] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3750), 1, + sym_word, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3756), 1, + anon_sym_DOLLAR, + ACTIONS(3758), 1, + sym_special_character, + ACTIONS(3760), 1, + anon_sym_DQUOTE, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3770), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3772), 1, + anon_sym_BQUOTE, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(3780), 1, + sym_semgrep_named_ellipsis, + ACTIONS(3782), 1, + sym_brace_start, + STATE(2009), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3762), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1837), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 45, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + sym_special_character, + STATE(788), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3744), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3742), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24654] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24718] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4099), 1, + sym_concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3852), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3850), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [24782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24910] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [24974] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25038] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4107), 1, + sym_concat, + STATE(821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4107), 1, + sym_concat, + STATE(821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25282] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 1, + sym_special_character, + STATE(773), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25344] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [25750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [25982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4112), 1, + sym_special_character, + STATE(788), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26682] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [26862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4115), 1, + sym_concat, + STATE(806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [26984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27216] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 1, + aux_sym_concatenation_token1, + ACTIONS(4120), 1, + sym_concat, + STATE(806), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4099), 1, + sym_concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4065), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4063), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [27692] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [27988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4123), 1, + sym_concat, + STATE(824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28290] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 1, + aux_sym_concatenation_token1, + ACTIONS(4128), 1, + sym_concat, + STATE(824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4107), 1, + sym_concat, + STATE(821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [28888] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4107), 1, + sym_concat, + STATE(821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [28952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29300] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29474] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29706] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [29828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [29944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30118] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30466] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30524] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30814] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [30872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [30988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31168] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 1, + aux_sym_concatenation_token1, + ACTIONS(4107), 1, + sym_concat, + STATE(821), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [31296] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4103), 1, + sym_concat, + STATE(876), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31360] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 1, + aux_sym_concatenation_token1, + ACTIONS(4131), 1, + sym_concat, + STATE(885), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [31482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [31540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4099), 1, + sym_concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [31604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4099), 1, + sym_concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [31668] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4133), 1, + sym_word, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4139), 1, + anon_sym_DOLLAR, + ACTIONS(4141), 1, + sym_special_character, + ACTIONS(4143), 1, + anon_sym_DQUOTE, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4155), 1, + anon_sym_BQUOTE, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4163), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4165), 1, + sym_brace_start, + STATE(4096), 1, + aux_sym_for_statement_repeat1, + STATE(4212), 1, + sym_concatenation, + ACTIONS(4159), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4145), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1812), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(4058), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1814), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [31766] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4139), 1, + anon_sym_DOLLAR, + ACTIONS(4141), 1, + sym_special_character, + ACTIONS(4143), 1, + anon_sym_DQUOTE, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4153), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4155), 1, + anon_sym_BQUOTE, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4163), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4165), 1, + sym_brace_start, + ACTIONS(4167), 1, + sym_word, + STATE(4102), 1, + aux_sym_for_statement_repeat1, + STATE(4211), 1, + sym_concatenation, + ACTIONS(4159), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4169), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1808), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(4059), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1810), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [31864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [31980] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4171), 1, + aux_sym_concatenation_token1, + ACTIONS(4174), 1, + sym_concat, + STATE(885), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32450] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32566] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32914] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [32972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33088] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4099), 1, + sym_concat, + STATE(905), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [33152] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 1, + aux_sym_concatenation_token1, + ACTIONS(4177), 1, + sym_concat, + STATE(908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [33216] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + sym_special_character, + STATE(788), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33278] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4091), 1, + sym_special_character, + STATE(788), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4179), 1, + aux_sym_concatenation_token1, + ACTIONS(4182), 1, + sym_concat, + STATE(908), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [33404] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33468] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [33532] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4185), 1, + sym_word, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4191), 1, + anon_sym_DOLLAR, + ACTIONS(4193), 1, + sym_special_character, + ACTIONS(4195), 1, + anon_sym_DQUOTE, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4207), 1, + anon_sym_BQUOTE, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4217), 1, + sym_brace_start, + STATE(2141), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4211), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(913), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4197), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1895), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [33630] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4185), 1, + sym_word, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4191), 1, + anon_sym_DOLLAR, + ACTIONS(4193), 1, + sym_special_character, + ACTIONS(4195), 1, + anon_sym_DQUOTE, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4207), 1, + anon_sym_BQUOTE, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4217), 1, + sym_brace_start, + STATE(2141), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4211), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(913), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4197), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1895), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [33728] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4219), 1, + sym_word, + ACTIONS(4222), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4225), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4228), 1, + anon_sym_DOLLAR, + ACTIONS(4231), 1, + sym_special_character, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4240), 1, + aux_sym_number_token1, + ACTIONS(4243), 1, + aux_sym_number_token2, + ACTIONS(4246), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4249), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4252), 1, + anon_sym_BQUOTE, + ACTIONS(4255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4261), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4264), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4267), 1, + sym_brace_start, + STATE(2141), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4258), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(913), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4237), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1752), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(1895), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [33826] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [33884] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4270), 1, + sym_word, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4278), 1, + sym_special_character, + ACTIONS(4280), 1, + anon_sym_DQUOTE, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4292), 1, + anon_sym_BQUOTE, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4300), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4302), 1, + sym_brace_start, + STATE(4093), 1, + aux_sym_for_statement_repeat1, + STATE(4180), 1, + sym_concatenation, + ACTIONS(4296), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4282), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1812), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(4021), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1814), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [33982] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4276), 1, + anon_sym_DOLLAR, + ACTIONS(4278), 1, + sym_special_character, + ACTIONS(4280), 1, + anon_sym_DQUOTE, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4290), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4292), 1, + anon_sym_BQUOTE, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4300), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4302), 1, + sym_brace_start, + ACTIONS(4304), 1, + sym_word, + STATE(4062), 1, + aux_sym_for_statement_repeat1, + STATE(4206), 1, + sym_concatenation, + ACTIONS(4296), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4306), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1808), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(4012), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1810), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [34080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34370] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4308), 1, + sym_special_character, + STATE(773), 1, + aux_sym_for_statement_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 1, + aux_sym_concatenation_token1, + ACTIONS(4095), 1, + sym_concat, + STATE(801), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [34670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34728] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3874), 1, + aux_sym_concatenation_token1, + ACTIONS(3946), 1, + sym_concat, + ACTIONS(4310), 1, + anon_sym_LPAREN, + STATE(682), 1, + aux_sym_concatenation_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [34793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 1, + sym_special_character, + STATE(941), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3744), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3742), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [34854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [34911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [34968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35253] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 1, + aux_sym_concatenation_token1, + ACTIONS(4317), 1, + sym_concat, + STATE(942), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [35316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35373] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35487] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4319), 1, + sym_special_character, + STATE(941), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4322), 1, + aux_sym_concatenation_token1, + ACTIONS(4325), 1, + sym_concat, + STATE(942), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [35611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35725] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [35839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4328), 1, + sym_special_character, + STATE(947), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [35957] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [36128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, + sym_special_character, + STATE(994), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4333), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36364] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + sym_special_character, + STATE(975), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [36425] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym_concat, + STATE(937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4340), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4338), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [36488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4315), 1, + aux_sym_concatenation_token1, + ACTIONS(4342), 1, + sym_concat, + STATE(937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [36551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [36608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [36836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [36893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [36950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37007] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37178] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37349] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + sym_special_character, + STATE(975), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37410] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + sym_special_character, + STATE(975), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37471] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4344), 1, + sym_special_character, + STATE(975), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37589] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [37703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [37988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [38045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [38102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [38159] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4347), 1, + sym_special_character, + STATE(947), 1, + aux_sym_for_statement_repeat1, + ACTIONS(284), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(241), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [38220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [38277] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4349), 1, + sym_word, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4361), 1, + sym_test_operator, + STATE(1898), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4357), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5310), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2161), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1897), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [38392] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4363), 1, + sym_word, + ACTIONS(4367), 1, + sym_test_operator, + STATE(1901), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4365), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5283), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2104), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1938), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [38507] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4369), 1, + sym_word, + ACTIONS(4373), 1, + sym_test_operator, + STATE(1905), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4371), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5285), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2027), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1904), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [38622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [38679] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4375), 1, + sym_word, + ACTIONS(4379), 1, + sym_test_operator, + STATE(1910), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4377), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5324), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2038), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1909), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [38794] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4381), 1, + sym_special_character, + STATE(994), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [38855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [38912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4336), 1, + sym_special_character, + STATE(975), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [38973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39030] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4384), 1, + sym_word, + ACTIONS(4388), 1, + sym_test_operator, + STATE(1922), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4386), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5278), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2152), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1912), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [39145] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4390), 1, + sym_special_character, + STATE(1050), 1, + aux_sym_for_statement_repeat1, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39206] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39267] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [39898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [39955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4394), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [40012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4398), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [40126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [40354] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40411] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40468] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4402), 1, + sym_word, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4408), 1, + anon_sym_DOLLAR, + ACTIONS(4410), 1, + sym_special_character, + ACTIONS(4412), 1, + anon_sym_DQUOTE, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4422), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4424), 1, + anon_sym_BQUOTE, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4432), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4434), 1, + sym_brace_start, + STATE(4165), 1, + aux_sym_for_statement_repeat1, + STATE(4266), 1, + sym_concatenation, + ACTIONS(4428), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4414), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1812), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1814), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(4125), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [40565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40622] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4408), 1, + anon_sym_DOLLAR, + ACTIONS(4410), 1, + sym_special_character, + ACTIONS(4412), 1, + anon_sym_DQUOTE, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4422), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4424), 1, + anon_sym_BQUOTE, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4432), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4434), 1, + sym_brace_start, + ACTIONS(4436), 1, + sym_word, + STATE(4153), 1, + aux_sym_for_statement_repeat1, + STATE(4278), 1, + sym_concatenation, + ACTIONS(4428), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4438), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1808), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1810), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(4069), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [40719] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [40780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [40951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 1, + sym_special_character, + STATE(941), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41012] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41073] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4313), 1, + sym_special_character, + STATE(941), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41191] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [41248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41305] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3699), 1, + anon_sym_DQUOTE, + ACTIONS(4440), 1, + aux_sym_for_statement_token1, + ACTIONS(4444), 1, + anon_sym_POUND, + STATE(1803), 1, + sym_orig_simple_variable_name, + STATE(1847), 1, + sym_string, + ACTIONS(4442), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [41374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41431] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [41602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [41659] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 7, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [41716] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, + sym_special_character, + STATE(994), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3744), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3742), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41777] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4331), 1, + sym_special_character, + STATE(994), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 7, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [41952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42013] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 44, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [42131] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4392), 1, + sym_special_character, + STATE(954), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42192] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4446), 1, + sym_special_character, + STATE(1050), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [42253] = 32, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(901), 1, + sym_special_character, + ACTIONS(4351), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(4353), 1, + anon_sym_LPAREN, + ACTIONS(4355), 1, + anon_sym_LBRACE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4449), 1, + sym_word, + ACTIONS(4453), 1, + sym_test_operator, + STATE(1907), 1, + aux_sym_for_statement_repeat1, + STATE(2507), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(4451), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(5294), 2, + sym_compound_statement, + sym_subshell, + STATE(1974), 3, + sym_ternary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + STATE(2033), 3, + sym_binary_expression, + sym_unary_expression, + sym_concatenation, + STATE(1906), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [42368] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2397), 1, + aux_sym_for_statement_repeat1, + STATE(1085), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1743), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2173), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1745), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42430] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [42546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [42602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [42658] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [42714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + aux_sym_concatenation_token1, + ACTIONS(4459), 1, + sym_concat, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [42776] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [42896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4463), 1, + aux_sym_concatenation_token1, + ACTIONS(4466), 1, + sym_concat, + STATE(1061), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [42958] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43018] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + sym_special_character, + STATE(1144), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43078] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(4471), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43152] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_variable_name, + ACTIONS(4473), 1, + aux_sym_statements_token1, + STATE(5320), 1, + sym_subscript, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3479), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(3155), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3422), 3, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 29, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43226] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2397), 1, + aux_sym_for_statement_repeat1, + STATE(1085), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1739), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2173), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1741), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(241), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43404] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4477), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43468] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4477), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [43592] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + sym_special_character, + STATE(1101), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [43708] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + sym_special_character, + STATE(1101), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3852), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3850), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43768] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + sym_special_character, + STATE(1101), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43828] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(4491), 1, + aux_sym_for_statement_token1, + STATE(1832), 1, + sym_string, + STATE(1838), 1, + sym_orig_simple_variable_name, + ACTIONS(4493), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym__, + ACTIONS(4495), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(941), 12, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(943), 24, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [43896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [43952] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4497), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [44012] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + aux_sym_concatenation_token1, + ACTIONS(4500), 1, + sym_concat, + STATE(1058), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44074] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + sym_special_character, + STATE(1144), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(284), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(241), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44358] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4502), 1, + sym_word, + ACTIONS(4505), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4508), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4511), 1, + anon_sym_DOLLAR, + ACTIONS(4514), 1, + sym_special_character, + ACTIONS(4517), 1, + anon_sym_DQUOTE, + ACTIONS(4523), 1, + aux_sym_number_token1, + ACTIONS(4526), 1, + aux_sym_number_token2, + ACTIONS(4529), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4532), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4535), 1, + anon_sym_BQUOTE, + ACTIONS(4538), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4544), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4547), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4550), 1, + sym_brace_start, + STATE(2397), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4541), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1085), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4520), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1750), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1752), 10, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(2173), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [44454] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + aux_sym_concatenation_token1, + ACTIONS(4555), 1, + sym_concat, + STATE(1089), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44516] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [44576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44632] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + aux_sym_concatenation_token1, + ACTIONS(4557), 1, + sym_concat, + STATE(1092), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44694] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + sym_special_character, + STATE(1144), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44810] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4559), 1, + aux_sym_concatenation_token1, + ACTIONS(4562), 1, + sym_concat, + STATE(1092), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44872] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4469), 1, + sym_special_character, + STATE(1144), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [44932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [44988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [45044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [45212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4565), 1, + sym_special_character, + STATE(1101), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [45388] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [45444] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3422), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(3407), 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(4568), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [45504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_concatenation_token1, + ACTIONS(4574), 1, + sym_concat, + STATE(1136), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4340), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4338), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [45566] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4394), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4398), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45794] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_concatenation_token1, + ACTIONS(4574), 1, + sym_concat, + STATE(1136), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [45856] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4461), 1, + sym_special_character, + STATE(1078), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [45916] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4580), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4582), 1, + anon_sym_DOLLAR, + ACTIONS(4584), 1, + sym_special_character, + ACTIONS(4586), 1, + anon_sym_DQUOTE, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4596), 1, + anon_sym_BQUOTE, + ACTIONS(4598), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4602), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4604), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4606), 1, + sym_test_operator, + ACTIONS(4608), 1, + sym_brace_start, + STATE(2407), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4600), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1117), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4576), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2176), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1739), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [46012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [46068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4489), 1, + sym_special_character, + STATE(1101), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4065), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4063), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [46128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46188] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4578), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4580), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4582), 1, + anon_sym_DOLLAR, + ACTIONS(4584), 1, + sym_special_character, + ACTIONS(4586), 1, + anon_sym_DQUOTE, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4592), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4596), 1, + anon_sym_BQUOTE, + ACTIONS(4598), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4602), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4604), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4606), 1, + sym_test_operator, + ACTIONS(4608), 1, + sym_brace_start, + STATE(2407), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4600), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1117), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4576), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2176), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1743), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [46284] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46344] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4616), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4619), 1, + anon_sym_DOLLAR, + ACTIONS(4622), 1, + sym_special_character, + ACTIONS(4625), 1, + anon_sym_DQUOTE, + ACTIONS(4628), 1, + aux_sym_number_token1, + ACTIONS(4631), 1, + aux_sym_number_token2, + ACTIONS(4634), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4637), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4640), 1, + anon_sym_BQUOTE, + ACTIONS(4643), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4649), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4652), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4655), 1, + sym_test_operator, + ACTIONS(4658), 1, + sym_brace_start, + STATE(2407), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1752), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4646), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1117), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(4610), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(2176), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1750), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [46440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46552] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4661), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46612] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3760), 1, + anon_sym_DQUOTE, + ACTIONS(4664), 1, + aux_sym_for_statement_token1, + ACTIONS(4668), 1, + anon_sym_POUND, + STATE(1915), 1, + sym_string, + STATE(1931), 1, + sym_orig_simple_variable_name, + ACTIONS(4666), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [46680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [46792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [46848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [46904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4670), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [46960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4398), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47016] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(4674), 1, + aux_sym_for_statement_token1, + ACTIONS(4678), 1, + anon_sym_POUND, + STATE(1863), 1, + sym_string, + STATE(1882), 1, + sym_orig_simple_variable_name, + ACTIONS(4676), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 11, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [47084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4553), 1, + aux_sym_concatenation_token1, + ACTIONS(4555), 1, + sym_concat, + STATE(1089), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4340), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4338), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4394), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4398), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47314] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4394), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4572), 1, + aux_sym_concatenation_token1, + ACTIONS(4680), 1, + sym_concat, + STATE(1145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47656] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47772] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [47828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 43, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [47884] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4457), 1, + aux_sym_concatenation_token1, + ACTIONS(4500), 1, + sym_concat, + STATE(1058), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [47946] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4682), 1, + sym_special_character, + STATE(1144), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [48006] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4685), 1, + aux_sym_concatenation_token1, + ACTIONS(4688), 1, + sym_concat, + STATE(1145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48068] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4455), 1, + sym_special_character, + STATE(1120), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [48128] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3606), 1, + anon_sym_DQUOTE, + ACTIONS(4691), 1, + aux_sym_for_statement_token1, + ACTIONS(4695), 1, + anon_sym_POUND, + STATE(1812), 1, + sym_orig_simple_variable_name, + STATE(1849), 1, + sym_string, + ACTIONS(4693), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 11, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [48251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48361] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 1, + aux_sym_concatenation_token1, + ACTIONS(4699), 1, + sym_concat, + STATE(1171), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [48422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48587] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [48862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3422), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(3407), 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(4568), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [48921] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 1, + aux_sym_concatenation_token1, + ACTIONS(4703), 1, + sym_concat, + STATE(1187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [48982] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4709), 1, + sym_extglob_pattern, + STATE(1943), 1, + sym_extglob_blob, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2224), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [49091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [49146] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [49201] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49531] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 1, + aux_sym_concatenation_token1, + ACTIONS(4714), 1, + sym_concat, + STATE(1171), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [49592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [49647] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 1, + aux_sym_concatenation_token1, + ACTIONS(4717), 1, + sym_concat, + STATE(1161), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [49708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4063), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [49818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [49873] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + ACTIONS(4721), 1, + sym_extglob_pattern, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2270), 1, + sym_expression, + STATE(2272), 1, + sym_extglob_blob, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [49982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [50037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4670), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50092] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3850), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [50312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50367] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4725), 1, + sym_concat, + STATE(1225), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50483] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4727), 1, + aux_sym_concatenation_token1, + ACTIONS(4730), 1, + sym_concat, + STATE(1187), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50544] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_DQUOTE, + ACTIONS(4739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4741), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4743), 1, + anon_sym_BQUOTE, + ACTIONS(4745), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1896), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4733), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(4735), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [50611] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [50666] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(3443), 1, + anon_sym_LT_LT, + ACTIONS(4750), 1, + sym_variable_name, + STATE(5319), 1, + sym_subscript, + ACTIONS(4747), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3849), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3445), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT_DASH, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3422), 22, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [50739] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2513), 1, + aux_sym_for_statement_repeat1, + STATE(2625), 1, + sym_concatenation, + ACTIONS(1812), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2040), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1814), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [50800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [50855] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(4753), 1, + aux_sym_for_statement_token1, + STATE(1959), 1, + sym_orig_simple_variable_name, + STATE(2010), 1, + sym_string, + ACTIONS(4755), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym__, + ACTIONS(4757), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(941), 12, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(943), 23, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [50922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [50977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [51032] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4765), 1, + anon_sym_DOLLAR, + ACTIONS(4767), 1, + sym_special_character, + ACTIONS(4769), 1, + anon_sym_DQUOTE, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4775), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4781), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4785), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4787), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4789), 1, + sym_test_operator, + ACTIONS(4791), 1, + sym_brace_start, + STATE(4232), 1, + aux_sym_for_statement_repeat1, + STATE(4380), 1, + sym_concatenation, + ACTIONS(1814), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4783), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4759), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4184), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1812), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [51127] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + ACTIONS(4795), 1, + sym_extglob_pattern, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2122), 1, + sym_expression, + STATE(2123), 1, + sym_extglob_blob, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [51236] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4761), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4763), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4765), 1, + anon_sym_DOLLAR, + ACTIONS(4767), 1, + sym_special_character, + ACTIONS(4769), 1, + anon_sym_DQUOTE, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4775), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4779), 1, + anon_sym_BQUOTE, + ACTIONS(4781), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4785), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4787), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4791), 1, + sym_brace_start, + ACTIONS(4799), 1, + sym_test_operator, + STATE(4238), 1, + aux_sym_for_statement_repeat1, + STATE(4311), 1, + sym_concatenation, + ACTIONS(1810), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4783), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4797), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4209), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1808), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [51331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [51386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3422), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4570), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4568), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3588), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51563] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [51681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [51736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3730), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [51846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4394), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [51901] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 1, + aux_sym_concatenation_token1, + ACTIONS(4801), 1, + sym_concat, + STATE(1151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [51962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52072] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52237] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4697), 1, + aux_sym_concatenation_token1, + ACTIONS(4801), 1, + sym_concat, + STATE(1151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4672), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4670), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52353] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52518] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4750), 1, + sym_variable_name, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + STATE(5319), 1, + sym_subscript, + ACTIONS(4747), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(4803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(3849), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3422), 22, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52593] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4709), 1, + sym_extglob_pattern, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(1943), 1, + sym_extglob_blob, + STATE(2353), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [52702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [52757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [52812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3732), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [52867] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4809), 1, + aux_sym_concatenation_token1, + ACTIONS(4812), 1, + sym_concat, + STATE(1225), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [52983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3852), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3850), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53093] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4394), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4398), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4398), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53588] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4063), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53643] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4701), 1, + aux_sym_concatenation_token1, + ACTIONS(4717), 1, + sym_concat, + STATE(1161), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [53704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53759] = 6, + ACTIONS(71), 1, + sym_comment, + STATE(2457), 1, + aux_sym_for_statement_repeat1, + STATE(2640), 1, + sym_concatenation, + ACTIONS(1808), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(2089), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + ACTIONS(1810), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [53820] = 30, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4709), 1, + sym_extglob_pattern, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(1943), 1, + sym_extglob_blob, + STATE(2310), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [53929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [53984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3834), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [54039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [54094] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + sym_special_character, + STATE(1246), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [54263] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4479), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [54326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 5, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(3846), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [54381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [54546] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54601] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4818), 1, + sym_concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [54662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54717] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4820), 1, + sym_special_character, + STATE(1246), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4340), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4338), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [54886] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4818), 1, + sym_concat, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [54947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [55002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1739), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [55057] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4479), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [55120] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4750), 1, + sym_variable_name, + STATE(5319), 1, + sym_subscript, + ACTIONS(4747), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3849), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3407), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3415), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3441), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(3422), 16, + sym_test_operator, + sym_brace_start, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55189] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4195), 1, + anon_sym_DQUOTE, + ACTIONS(4822), 1, + aux_sym_for_statement_token1, + ACTIONS(4826), 1, + anon_sym_POUND, + STATE(1939), 1, + sym_string, + STATE(1973), 1, + sym_orig_simple_variable_name, + ACTIONS(4824), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym__, + ACTIONS(941), 11, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1743), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [55311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [55366] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 42, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55421] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(4753), 1, + aux_sym_for_statement_token1, + STATE(1959), 1, + sym_orig_simple_variable_name, + STATE(2010), 1, + sym_string, + ACTIONS(4755), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym__, + ACTIONS(4757), 4, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(941), 12, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(943), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [55487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55703] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [55973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56189] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4828), 1, + sym_regex_no_space, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2303), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [56295] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4830), 1, + sym_special_character, + STATE(1391), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4340), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4338), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [56353] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_concatenation_token1, + ACTIONS(4834), 1, + sym_concat, + STATE(1398), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [56953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57007] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4836), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57071] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + ACTIONS(4839), 1, + sym_regex_no_space, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2067), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [57177] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4828), 1, + sym_regex_no_space, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2347), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [57283] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4841), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57401] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4844), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57465] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4847), 1, + anon_sym_DQUOTE, + ACTIONS(4849), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4851), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4853), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1986), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4733), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(4735), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [57531] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4857), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57649] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4860), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57767] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4863), 1, + aux_sym_concatenation_token1, + ACTIONS(4865), 1, + sym_concat, + STATE(1388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57827] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4867), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [57891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [57945] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4870), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58009] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4873), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58073] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4876), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58137] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4879), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58201] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4882), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58265] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4885), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58329] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4888), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58393] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4891), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58457] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4894), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58521] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4897), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58585] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4900), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58649] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4903), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58713] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4906), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58777] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4909), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58841] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4912), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58905] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4915), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [58969] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4918), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59033] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4921), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59097] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4924), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59161] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4927), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59225] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4930), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59289] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4933), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59353] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4936), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59417] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4939), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59481] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4942), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59545] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4945), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59609] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4948), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59673] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4951), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59737] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4954), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59801] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4957), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59865] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4960), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59929] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4963), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [59993] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4966), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60057] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4969), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60121] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4972), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60185] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4975), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60249] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4978), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60313] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4981), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60377] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4984), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60441] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4987), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60505] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4990), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60569] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4993), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60633] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4996), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60697] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4999), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60761] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5002), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60825] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5005), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [60889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [60943] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5008), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61007] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5011), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61071] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5014), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61135] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5017), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61199] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5020), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61263] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5023), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61327] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5026), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61391] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5029), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61455] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5032), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61519] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5035), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5038), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61647] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5041), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61711] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5044), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61775] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5047), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61839] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5050), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61903] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5053), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [61967] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5056), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [62031] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5059), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [62095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [62149] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2193), 1, + sym_expression, + STATE(5451), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [62309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [62363] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2216), 1, + sym_expression, + STATE(5794), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62469] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5062), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [62533] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2234), 1, + sym_expression, + STATE(5471), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62639] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2242), 1, + sym_expression, + STATE(5941), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62745] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2248), 1, + sym_expression, + STATE(5936), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62851] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2255), 1, + sym_expression, + STATE(5618), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [62957] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2263), 1, + sym_expression, + STATE(5848), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [63063] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2223), 1, + sym_expression, + STATE(5409), 1, + sym_test_command_binary_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [63169] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4863), 1, + aux_sym_concatenation_token1, + ACTIONS(5065), 1, + sym_concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63229] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5067), 1, + sym_special_character, + STATE(1390), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5069), 1, + sym_special_character, + STATE(1390), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63345] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5072), 1, + sym_special_character, + STATE(1391), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [63403] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5075), 1, + aux_sym_concatenation_token1, + ACTIONS(5078), 1, + sym_concat, + STATE(1392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63517] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63571] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(4828), 1, + sym_regex_no_space, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2388), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [63677] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4863), 1, + aux_sym_concatenation_token1, + ACTIONS(4865), 1, + sym_concat, + STATE(1388), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 38, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63737] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_concatenation_token1, + ACTIONS(5081), 1, + sym_concat, + STATE(1403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63851] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [63959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5083), 1, + aux_sym_concatenation_token1, + ACTIONS(5086), 1, + sym_concat, + STATE(1403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64235] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5089), 1, + sym_special_character, + STATE(1409), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4340), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4338), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [64293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5091), 1, + sym_special_character, + STATE(1409), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + aux_sym_for_statement_token1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavariable, + [64459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64567] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4832), 1, + aux_sym_concatenation_token1, + ACTIONS(4834), 1, + sym_concat, + STATE(1398), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64627] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + ACTIONS(5094), 1, + sym_regex_no_space, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2287), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [64733] = 29, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(5096), 1, + sym_regex_no_space, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2388), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [64839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [64947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 41, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65649] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(5098), 1, + anon_sym_RPAREN, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4475), 20, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [65713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65766] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65819] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [65978] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2318), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66081] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66187] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66240] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2305), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66343] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2306), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66446] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2307), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66549] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2308), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66652] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2309), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [66755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5101), 1, + sym_special_character, + STATE(1445), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66865] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5104), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66922] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1066), 1, + anon_sym_LPAREN, + STATE(1580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5107), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(241), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(284), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [66981] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2345), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67084] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2346), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67187] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2348), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67290] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(1990), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67393] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2335), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [67549] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2349), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67652] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2350), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67755] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2351), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67858] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2037), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [67961] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2055), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68064] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2067), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68167] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2105), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68270] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2108), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68373] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2110), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68476] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2113), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68579] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2120), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68682] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2137), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68785] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2147), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68888] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2149), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [68991] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2151), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69094] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2153), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [69250] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2352), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69353] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2354), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69456] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2107), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69559] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2347), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69662] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2355), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69765] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2356), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69868] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2357), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [69971] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3836), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [70028] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(403), 1, - aux_sym_for_statement_token1, - ACTIONS(405), 1, + ACTIONS(5111), 1, + sym_special_character, + STATE(1445), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [70085] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2359), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [70188] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(407), 1, - sym_special_character, - ACTIONS(409), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(411), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(413), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(415), 1, - anon_sym_BQUOTE, - ACTIONS(419), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(421), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(423), 1, - sym_semgrep_metavariable, - ACTIONS(427), 1, - sym_variable_name, - STATE(288), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(3534), 1, - sym_subscript, - ACTIONS(399), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(417), 2, + STATE(2317), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(425), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(397), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(155), 3, - sym_variable_assignment, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(258), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(401), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [97] = 21, - ACTIONS(3), 1, + [70291] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(403), 1, - aux_sym_for_statement_token1, - ACTIONS(405), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(407), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, sym_special_character, - ACTIONS(409), 1, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2208), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [70394] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(411), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(413), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(415), 1, - anon_sym_BQUOTE, - ACTIONS(419), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(421), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(427), 1, - sym_variable_name, - ACTIONS(433), 1, - sym_semgrep_metavariable, - STATE(288), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3534), 1, - sym_subscript, - ACTIONS(417), 2, + STATE(2225), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(425), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(429), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(397), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(153), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(258), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(431), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [194] = 21, - ACTIONS(3), 1, + [70497] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(442), 1, - aux_sym_for_statement_token1, - ACTIONS(445), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(448), 1, - sym_special_character, - ACTIONS(451), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(454), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(457), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(460), 1, - anon_sym_BQUOTE, - ACTIONS(466), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(469), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(472), 1, - sym_semgrep_metavariable, - ACTIONS(478), 1, - sym_variable_name, - STATE(288), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3534), 1, - sym_subscript, - ACTIONS(438), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(463), 2, + STATE(2271), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(475), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(435), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(155), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(258), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(440), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291] = 21, - ACTIONS(3), 1, + [70600] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(483), 1, - aux_sym_for_statement_token1, - ACTIONS(485), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(487), 1, - sym_special_character, - ACTIONS(489), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(491), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(493), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(495), 1, - anon_sym_BQUOTE, - ACTIONS(499), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(501), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(503), 1, - sym_semgrep_metavariable, - ACTIONS(507), 1, - sym_variable_name, - STATE(364), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3541), 1, - sym_subscript, - ACTIONS(429), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(497), 2, + STATE(2287), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(505), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(481), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(157), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(268), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(431), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + [70703] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4586), 1, + anon_sym_DQUOTE, + ACTIONS(5113), 1, + aux_sym_for_statement_token1, + STATE(2360), 1, + sym_orig_simple_variable_name, + STATE(2376), 1, + sym_string, + ACTIONS(943), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(5115), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 29, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -25733,5165 +130637,6015 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [387] = 21, - ACTIONS(3), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [70766] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(483), 1, - aux_sym_for_statement_token1, - ACTIONS(485), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(487), 1, - sym_special_character, - ACTIONS(489), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(491), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(493), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(495), 1, - anon_sym_BQUOTE, - ACTIONS(499), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(501), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(507), 1, - sym_variable_name, - ACTIONS(509), 1, - sym_semgrep_metavariable, - STATE(364), 1, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, aux_sym_for_statement_repeat1, - STATE(3541), 1, - sym_subscript, - ACTIONS(399), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(497), 2, + STATE(2155), 1, + sym_expression, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(505), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(481), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(158), 3, - sym_variable_assignment, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(268), 7, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(401), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [483] = 21, - ACTIONS(3), 1, + [70869] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(514), 1, - aux_sym_for_statement_token1, - ACTIONS(517), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(520), 1, - sym_special_character, - ACTIONS(523), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(526), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(529), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(532), 1, - anon_sym_BQUOTE, - ACTIONS(538), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(541), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(544), 1, - sym_semgrep_metavariable, - ACTIONS(550), 1, - sym_variable_name, - STATE(364), 1, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, aux_sym_for_statement_repeat1, - STATE(3541), 1, - sym_subscript, - ACTIONS(438), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(535), 2, + STATE(2158), 1, + sym_expression, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(547), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(511), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(158), 3, - sym_variable_assignment, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(268), 7, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(440), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [579] = 8, - ACTIONS(57), 1, + [70972] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(557), 1, - sym_simple_heredoc_body, - ACTIONS(559), 1, - sym_heredoc_body_beginning, - STATE(3086), 1, - sym_heredoc_body, - ACTIONS(553), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(555), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(260), 1, anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2222), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [71075] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2226), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [71178] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [648] = 8, - ACTIONS(57), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2218), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [71281] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(557), 1, - sym_simple_heredoc_body, - ACTIONS(559), 1, - sym_heredoc_body_beginning, - STATE(3092), 1, - sym_heredoc_body, - ACTIONS(561), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(563), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, anon_sym_LPAREN, + ACTIONS(653), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(665), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2244), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [717] = 21, - ACTIONS(3), 1, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [71384] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(567), 1, - aux_sym_for_statement_token1, - ACTIONS(569), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, - sym_special_character, - ACTIONS(573), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(575), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(577), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(579), 1, - anon_sym_BQUOTE, - ACTIONS(583), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(585), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(587), 1, - sym_semgrep_metavariable, - ACTIONS(591), 1, - sym_variable_name, - STATE(441), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(3525), 1, - sym_subscript, - ACTIONS(581), 2, + STATE(2311), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(589), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(399), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(565), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(167), 3, - sym_variable_assignment, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(366), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(401), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [812] = 21, - ACTIONS(3), 1, + [71487] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(595), 1, - aux_sym_for_statement_token1, - ACTIONS(597), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(599), 1, - sym_special_character, - ACTIONS(601), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(603), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(605), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(607), 1, - anon_sym_BQUOTE, - ACTIONS(611), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(613), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(615), 1, - sym_semgrep_metavariable, - ACTIONS(619), 1, - sym_variable_name, - STATE(455), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3528), 1, - sym_subscript, - ACTIONS(429), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(609), 2, + STATE(2251), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(617), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(593), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(164), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(371), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(431), 19, + [71590] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5117), 1, + sym_special_character, + STATE(1496), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [907] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(409), 1, - anon_sym_DQUOTE, - ACTIONS(625), 1, - aux_sym_for_statement_token1, - ACTIONS(629), 1, - sym_raw_string, - STATE(269), 1, - sym_string, - STATE(278), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(627), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_GT_GT, anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym_special_character, - sym_ansii_c_string, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [978] = 21, - ACTIONS(3), 1, + [71647] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(595), 1, - aux_sym_for_statement_token1, - ACTIONS(597), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(599), 1, - sym_special_character, - ACTIONS(601), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(603), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(607), 1, - anon_sym_BQUOTE, - ACTIONS(611), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(613), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(619), 1, - sym_variable_name, - ACTIONS(631), 1, - sym_semgrep_metavariable, - STATE(455), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(3528), 1, - sym_subscript, - ACTIONS(399), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(609), 2, + STATE(2237), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(617), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(593), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(165), 3, - sym_variable_assignment, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(371), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(401), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [1073] = 21, - ACTIONS(3), 1, + [71750] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(636), 1, - aux_sym_for_statement_token1, - ACTIONS(639), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(642), 1, - sym_special_character, - ACTIONS(645), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(648), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(651), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(654), 1, - anon_sym_BQUOTE, - ACTIONS(660), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(663), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(666), 1, - sym_semgrep_metavariable, - ACTIONS(672), 1, - sym_variable_name, - STATE(455), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(3528), 1, - sym_subscript, - ACTIONS(438), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(657), 2, + STATE(2238), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(669), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(633), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(165), 3, - sym_variable_assignment, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(371), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(440), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [1168] = 21, - ACTIONS(3), 1, + [71853] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(567), 1, - aux_sym_for_statement_token1, - ACTIONS(569), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, - sym_special_character, - ACTIONS(573), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(575), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(577), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(579), 1, - anon_sym_BQUOTE, - ACTIONS(583), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(585), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(591), 1, - sym_variable_name, - ACTIONS(675), 1, - sym_semgrep_metavariable, - STATE(441), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3525), 1, - sym_subscript, - ACTIONS(581), 2, + STATE(2264), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(589), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(429), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(565), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(161), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(366), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(431), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [1263] = 21, - ACTIONS(3), 1, + [71956] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(680), 1, - aux_sym_for_statement_token1, - ACTIONS(683), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(686), 1, - sym_special_character, - ACTIONS(689), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(692), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(695), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(698), 1, - anon_sym_BQUOTE, - ACTIONS(704), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(707), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(710), 1, - sym_semgrep_metavariable, - ACTIONS(716), 1, - sym_variable_name, - STATE(441), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(3525), 1, - sym_subscript, - ACTIONS(701), 2, + STATE(2293), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(713), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(438), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(677), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(167), 3, - sym_variable_assignment, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(366), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(440), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [1358] = 6, - ACTIONS(57), 1, - sym_comment, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3243), 1, - sym_heredoc_body, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(234), 26, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - [1423] = 8, - ACTIONS(57), 1, + [72059] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_SEMI_SEMI, - ACTIONS(557), 1, - sym_simple_heredoc_body, - ACTIONS(559), 1, - sym_heredoc_body_beginning, - STATE(3150), 1, - sym_heredoc_body, - ACTIONS(555), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1743), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(371), 22, + ACTIONS(1745), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [1491] = 20, + [72116] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(595), 1, - aux_sym_for_statement_token1, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(599), 1, + ACTIONS(5120), 1, sym_special_character, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(603), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(611), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(613), 1, - sym_semgrep_named_ellipsis, - ACTIONS(619), 1, - sym_variable_name, - ACTIONS(723), 1, - sym_semgrep_metavariable, - STATE(455), 1, + STATE(1570), 1, aux_sym_for_statement_repeat1, - STATE(3528), 1, - sym_subscript, - ACTIONS(429), 2, + ACTIONS(4079), 5, sym_file_descriptor, - anon_sym_LF, - ACTIONS(609), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(617), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(593), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(172), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(371), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(431), 19, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 38, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [1583] = 8, - ACTIONS(57), 1, - sym_comment, - ACTIONS(557), 1, - sym_simple_heredoc_body, - ACTIONS(559), 1, - sym_heredoc_body_beginning, - ACTIONS(561), 1, - anon_sym_SEMI_SEMI, - STATE(3143), 1, - sym_heredoc_body, - ACTIONS(563), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [1651] = 20, - ACTIONS(3), 1, + [72173] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(595), 1, - aux_sym_for_statement_token1, - ACTIONS(597), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(599), 1, - sym_special_character, - ACTIONS(601), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(603), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(605), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(611), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(613), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(619), 1, - sym_variable_name, - ACTIONS(631), 1, - sym_semgrep_metavariable, - STATE(455), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(3528), 1, - sym_subscript, - ACTIONS(399), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(609), 2, + STATE(2312), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(617), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(593), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(165), 3, - sym_variable_assignment, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(371), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(401), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [72276] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5122), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3588), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [1743] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(489), 1, - anon_sym_DQUOTE, - ACTIONS(725), 1, - aux_sym_for_statement_token1, - ACTIONS(729), 1, - sym_raw_string, - STATE(322), 1, - sym_orig_simple_variable_name, - STATE(352), 1, - sym_string, - ACTIONS(623), 3, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3590), 27, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(727), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - sym_ansii_c_string, + 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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [1813] = 9, - ACTIONS(3), 1, + [72333] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(731), 1, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5122), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3730), 15, aux_sym_for_statement_token1, - ACTIONS(735), 1, - anon_sym_DQUOTE, - ACTIONS(737), 1, - sym_raw_string, - STATE(390), 1, - sym_orig_simple_variable_name, - STATE(452), 1, - sym_string, - ACTIONS(623), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(733), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3732), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - sym_ansii_c_string, + 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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [1883] = 9, - ACTIONS(3), 1, + [72390] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(573), 1, - anon_sym_DQUOTE, - ACTIONS(739), 1, - aux_sym_for_statement_token1, - ACTIONS(743), 1, - sym_raw_string, - STATE(453), 1, - sym_orig_simple_variable_name, - STATE(456), 1, - sym_string, - ACTIONS(623), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(741), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 31, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3846), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [1952] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(601), 1, - anon_sym_DQUOTE, - ACTIONS(745), 1, - aux_sym_for_statement_token1, - ACTIONS(749), 1, - sym_raw_string, - STATE(437), 1, - sym_string, - STATE(465), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 3, + ACTIONS(3848), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(747), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym_special_character, - sym_ansii_c_string, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [2021] = 9, - ACTIONS(3), 1, + [72447] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(751), 1, - aux_sym_for_statement_token1, - ACTIONS(755), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(757), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2267), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, sym_raw_string, - STATE(534), 1, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - STATE(543), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(753), 9, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [72550] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(260), 1, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym_special_character, - sym_ansii_c_string, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(1990), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [72653] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2386), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [72756] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - [2090] = 9, - ACTIONS(3), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2212), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [72859] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(759), 1, - aux_sym_for_statement_token1, - ACTIONS(763), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(765), 1, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2387), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, sym_raw_string, - STATE(611), 1, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - STATE(626), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [72962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 6, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(761), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 32, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2159] = 7, - ACTIONS(57), 1, + [73015] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(563), 1, - ts_builtin_sym_end, - ACTIONS(767), 1, - sym_simple_heredoc_body, - ACTIONS(769), 1, - sym_heredoc_body_beginning, - STATE(3170), 1, - sym_heredoc_body, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(260), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2223] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(773), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(777), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(917), 1, sym_special_character, - sym_word, - ACTIONS(775), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2313), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2283] = 7, - ACTIONS(57), 1, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73118] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(563), 1, - anon_sym_RPAREN, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3202), 1, - sym_heredoc_body, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(260), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2347] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(561), 1, - anon_sym_SEMI_SEMI, - ACTIONS(563), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(917), 1, sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2303), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2407] = 9, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 1, - aux_sym_for_statement_token1, - ACTIONS(783), 1, - anon_sym_DQUOTE, - ACTIONS(785), 1, - sym_raw_string, - STATE(682), 1, - sym_string, - STATE(691), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 4, + ACTIONS(968), 6, sym_file_descriptor, - sym_variable_name, + sym_concat, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(781), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 30, + aux_sym_statements_token1, + ACTIONS(966), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2475] = 7, - ACTIONS(57), 1, + [73274] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(555), 1, - ts_builtin_sym_end, - ACTIONS(767), 1, - sym_simple_heredoc_body, - ACTIONS(769), 1, - sym_heredoc_body_beginning, - STATE(3169), 1, - sym_heredoc_body, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, anon_sym_LPAREN, + ACTIONS(853), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2389), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73377] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2390), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73480] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2539] = 5, - ACTIONS(57), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2326), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73583] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(787), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(789), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, anon_sym_LPAREN, + ACTIONS(853), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2391), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73686] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, sym_word, - ACTIONS(775), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2181), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2599] = 3, - ACTIONS(57), 1, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73789] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(371), 22, + ACTIONS(1014), 5, sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 40, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(234), 26, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - [2655] = 9, + [73842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 1, - aux_sym_for_statement_token1, - ACTIONS(795), 1, - anon_sym_DQUOTE, - ACTIONS(797), 1, - sym_raw_string, - STATE(770), 1, - sym_string, - STATE(810), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 3, + ACTIONS(994), 6, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(793), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 31, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2723] = 7, - ACTIONS(57), 1, + [73895] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(555), 1, - anon_sym_RPAREN, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3213), 1, - sym_heredoc_body, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(260), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2211), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2787] = 5, - ACTIONS(57), 1, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [73998] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(990), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 39, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - ACTIONS(555), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2847] = 5, - ACTIONS(57), 1, + [74051] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(773), 1, - anon_sym_SEMI_SEMI, - ACTIONS(777), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, anon_sym_LPAREN, + ACTIONS(853), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(775), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [2907] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(775), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2392), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(771), 26, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_done, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - [2963] = 5, - ACTIONS(57), 1, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [74154] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(787), 1, - anon_sym_SEMI_SEMI, - ACTIONS(789), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, anon_sym_LPAREN, + ACTIONS(653), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(775), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(665), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, + aux_sym_for_statement_repeat1, + STATE(2332), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [3023] = 18, - ACTIONS(3), 1, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [74257] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(175), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(177), 1, - sym_special_character, - ACTIONS(755), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(807), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(809), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(811), 1, - anon_sym_BQUOTE, - ACTIONS(815), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(817), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(200), 1, - aux_sym_command_repeat2, - STATE(575), 1, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, aux_sym_for_statement_repeat1, - STATE(708), 1, - sym_concatenation, - ACTIONS(801), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(805), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(813), 2, + STATE(2282), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(799), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(496), 7, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(803), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3109] = 18, - ACTIONS(3), 1, + [74360] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(175), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(177), 1, - sym_special_character, - ACTIONS(755), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(807), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(809), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(811), 1, - anon_sym_BQUOTE, - ACTIONS(815), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(817), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(202), 1, - aux_sym_command_repeat2, - STATE(575), 1, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, aux_sym_for_statement_repeat1, - STATE(708), 1, - sym_concatenation, - ACTIONS(805), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(813), 2, + STATE(2277), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(819), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(799), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(496), 7, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(821), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3195] = 9, + [74463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 1, - aux_sym_for_statement_token1, - ACTIONS(827), 1, - anon_sym_DQUOTE, - ACTIONS(829), 1, - sym_raw_string, - STATE(544), 1, - sym_string, - STATE(579), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, + ACTIONS(986), 6, sym_file_descriptor, - anon_sym_LF, - ACTIONS(825), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 32, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [3263] = 18, - ACTIONS(3), 1, + [74516] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_DQUOTE, - ACTIONS(837), 1, - aux_sym_for_statement_token1, - ACTIONS(839), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(841), 1, - sym_special_character, - ACTIONS(843), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(845), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(847), 1, - anon_sym_BQUOTE, + ACTIONS(290), 1, + sym_brace_start, ACTIONS(851), 1, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_LPAREN, ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(855), 1, - sym_semgrep_metavariable, - STATE(532), 1, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, aux_sym_for_statement_repeat1, - ACTIONS(833), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(849), 2, + STATE(2284), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(199), 2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(831), 3, - sym_raw_string, - sym_ansii_c_string, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [74619] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, sym_word, - STATE(490), 7, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2286), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(835), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3349] = 9, - ACTIONS(3), 1, + [74722] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(857), 1, - aux_sym_for_statement_token1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2209), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [74825] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2365), 1, + sym_expression, + ACTIONS(871), 2, sym_raw_string, - STATE(727), 1, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - STATE(738), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [74928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 6, sym_file_descriptor, - anon_sym_LF, - ACTIONS(859), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 32, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [3417] = 5, - ACTIONS(57), 1, + [74981] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(561), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(563), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(239), 1, sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(1990), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [3477] = 18, - ACTIONS(3), 1, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [75084] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(872), 1, - aux_sym_for_statement_token1, - ACTIONS(875), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(878), 1, - sym_special_character, - ACTIONS(881), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(884), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(887), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(890), 1, - anon_sym_BQUOTE, - ACTIONS(896), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(899), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(902), 1, - sym_semgrep_metavariable, - STATE(532), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - ACTIONS(868), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(893), 2, + STATE(2273), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(199), 2, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(865), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(490), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(870), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3563] = 18, - ACTIONS(3), 1, + [75187] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(918), 1, - sym_special_character, - ACTIONS(921), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(924), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(927), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(930), 1, - anon_sym_BQUOTE, - ACTIONS(936), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(939), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(200), 1, - aux_sym_command_repeat2, - STATE(575), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(708), 1, - sym_concatenation, - ACTIONS(908), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(912), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(933), 2, + STATE(2229), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(905), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(496), 7, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(910), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3649] = 5, - ACTIONS(57), 1, + [75290] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(553), 2, - anon_sym_SEMI_SEMI, - anon_sym_esac, - ACTIONS(555), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(260), 1, anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2314), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [3709] = 18, - ACTIONS(3), 1, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [75393] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(175), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(177), 1, - sym_special_character, - ACTIONS(755), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(807), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(809), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(811), 1, - anon_sym_BQUOTE, - ACTIONS(815), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(817), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(200), 1, - aux_sym_command_repeat2, - STATE(575), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(708), 1, - sym_concatenation, - ACTIONS(805), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(813), 2, + STATE(2196), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(942), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(799), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(496), 7, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(944), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3795] = 18, - ACTIONS(3), 1, + [75496] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(827), 1, - anon_sym_DQUOTE, - ACTIONS(837), 1, - aux_sym_for_statement_token1, - ACTIONS(839), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(841), 1, - sym_special_character, - ACTIONS(843), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(845), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(847), 1, - anon_sym_BQUOTE, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(853), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(950), 1, - sym_semgrep_metavariable, - STATE(532), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - ACTIONS(849), 2, + STATE(2315), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(196), 2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(831), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(490), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(948), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + [75599] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5107), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [3881] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(175), 1, - anon_sym_DOLLAR, - ACTIONS(177), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(755), 1, anon_sym_DQUOTE, - ACTIONS(807), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(809), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(811), 1, - anon_sym_BQUOTE, - ACTIONS(815), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(817), 1, - sym_semgrep_named_ellipsis, - STATE(193), 1, - aux_sym_command_repeat2, - STATE(575), 1, - aux_sym_for_statement_repeat1, - STATE(708), 1, - sym_concatenation, - ACTIONS(805), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(813), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(952), 2, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [75656] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 5, sym_file_descriptor, - anon_sym_LF, - ACTIONS(799), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(496), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(954), 21, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [3967] = 6, - ACTIONS(57), 1, - sym_comment, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3219), 1, - sym_heredoc_body, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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_LT, - anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, - sym_word, - ACTIONS(371), 23, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [4029] = 9, + [75709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(956), 1, + ACTIONS(5124), 1, aux_sym_for_statement_token1, - ACTIONS(960), 1, + ACTIONS(5128), 1, anon_sym_DQUOTE, - ACTIONS(962), 1, - sym_raw_string, - STATE(969), 1, + ACTIONS(5130), 1, + anon_sym_POUND, + STATE(2203), 1, sym_orig_simple_variable_name, - STATE(992), 1, + STATE(2285), 1, sym_string, - ACTIONS(623), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(958), 9, - anon_sym_BANG, + ACTIONS(5126), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, anon_sym__, - anon_sym_POUND, - ACTIONS(621), 31, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(941), 9, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(943), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - sym_ansii_c_string, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [75774] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - [4096] = 7, - ACTIONS(57), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2199), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [75877] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(555), 1, + ACTIONS(5109), 1, + aux_sym_concatenation_token1, + ACTIONS(5132), 1, + sym_concat, + STATE(1557), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3209), 1, - sym_heredoc_body, - ACTIONS(371), 21, + sym_word, + ACTIONS(962), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [75936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, - sym_word, - [4159] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(966), 1, - aux_sym_for_statement_token1, - ACTIONS(968), 1, - anon_sym_DOLLAR, - ACTIONS(970), 1, - sym_special_character, - ACTIONS(972), 1, anon_sym_DQUOTE, - ACTIONS(974), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(976), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(978), 1, anon_sym_BQUOTE, - ACTIONS(982), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(984), 1, - sym_semgrep_named_ellipsis, - ACTIONS(986), 1, - sym_semgrep_metavariable, - STATE(771), 1, - aux_sym_for_statement_repeat1, - ACTIONS(946), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(980), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(212), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(964), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(612), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(948), 20, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [75989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4244] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(323), 1, sym_special_character, - ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(992), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(996), 1, anon_sym_BQUOTE, - ACTIONS(1000), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1002), 1, - sym_semgrep_named_ellipsis, - STATE(214), 1, - aux_sym_command_repeat2, - STATE(775), 1, - aux_sym_for_statement_repeat1, - STATE(866), 1, - sym_concatenation, - ACTIONS(952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(990), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(998), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(988), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(620), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(954), 20, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [76042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4329] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1007), 1, - aux_sym_for_statement_token1, - ACTIONS(1010), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1013), 1, sym_special_character, - ACTIONS(1016), 1, anon_sym_DQUOTE, - ACTIONS(1019), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1022), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1025), 1, anon_sym_BQUOTE, - ACTIONS(1031), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1034), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1037), 1, - sym_semgrep_metavariable, - STATE(771), 1, - aux_sym_for_statement_repeat1, - ACTIONS(868), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1028), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(210), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1004), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(612), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(870), 20, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [76095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4414] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(972), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, - ACTIONS(1040), 1, - aux_sym_for_statement_token1, - ACTIONS(1044), 1, sym_raw_string, - STATE(739), 1, - sym_string, - STATE(779), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [76148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 6, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1042), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 31, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [4481] = 18, - ACTIONS(3), 1, + [76201] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(966), 1, - aux_sym_for_statement_token1, - ACTIONS(968), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(970), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, sym_special_character, - ACTIONS(972), 1, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, + aux_sym_for_statement_repeat1, + STATE(2334), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [76304] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(974), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(976), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(978), 1, - anon_sym_BQUOTE, - ACTIONS(982), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(984), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(1046), 1, - sym_semgrep_metavariable, - STATE(771), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - ACTIONS(833), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(980), 2, + STATE(2274), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(210), 2, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(964), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(612), 7, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(835), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4566] = 18, - ACTIONS(3), 1, + [76407] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1057), 1, - sym_special_character, - ACTIONS(1060), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1063), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1066), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1069), 1, - anon_sym_BQUOTE, - ACTIONS(1075), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1078), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(775), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(866), 1, - sym_concatenation, - ACTIONS(908), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1051), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1072), 2, + STATE(2275), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1048), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(620), 7, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(910), 20, + [76510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4651] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(323), 1, sym_special_character, - ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(992), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(996), 1, anon_sym_BQUOTE, - ACTIONS(1000), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1002), 1, - sym_semgrep_named_ellipsis, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(775), 1, - aux_sym_for_statement_repeat1, - STATE(866), 1, - sym_concatenation, - ACTIONS(801), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(990), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(998), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(988), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(620), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(803), 20, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [76563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4736] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(321), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(323), 1, sym_special_character, - ACTIONS(861), 1, anon_sym_DQUOTE, - ACTIONS(992), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(996), 1, anon_sym_BQUOTE, - ACTIONS(1000), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1002), 1, sym_semgrep_named_ellipsis, - STATE(217), 1, - aux_sym_command_repeat2, - STATE(775), 1, + [76616] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(866), 1, - sym_concatenation, - ACTIONS(819), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(990), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(998), 2, + STATE(2276), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(988), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(620), 7, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(821), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [76719] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1557), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5134), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [4821] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1081), 1, - aux_sym_for_statement_token1, - ACTIONS(1085), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(1087), 1, sym_raw_string, - STATE(899), 1, - sym_orig_simple_variable_name, - STATE(902), 1, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [76776] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(685), 1, + sym_semgrep_named_ellipsis, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(885), 1, + sym_word, + ACTIONS(887), 1, + anon_sym_LPAREN, + ACTIONS(889), 1, + anon_sym_BANG, + ACTIONS(897), 1, + anon_sym_TILDE, + ACTIONS(907), 1, + sym_test_operator, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4793), 1, + sym_special_character, + STATE(1902), 1, + aux_sym_for_statement_repeat1, + STATE(2145), 1, + sym_expression, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(893), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(895), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(903), 2, + sym_raw_string, + sym_ansi_c_string, + STATE(2032), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1879), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(623), 3, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [76879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1083), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 30, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [4888] = 18, - ACTIONS(3), 1, + [76932] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(321), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(323), 1, - sym_special_character, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(992), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(994), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(996), 1, - anon_sym_BQUOTE, - ACTIONS(1000), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1002), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(775), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(866), 1, - sym_concatenation, - ACTIONS(942), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(990), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(998), 2, + STATE(2228), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(988), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(620), 7, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(944), 20, + [77035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [4973] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(563), 1, - anon_sym_BQUOTE, - ACTIONS(719), 1, - sym_simple_heredoc_body, - ACTIONS(721), 1, - sym_heredoc_body_beginning, - STATE(3205), 1, - sym_heredoc_body, - ACTIONS(371), 21, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - 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_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [77088] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - [5036] = 27, - ACTIONS(57), 1, - sym_comment, - ACTIONS(65), 1, + ACTIONS(978), 28, sym_file_descriptor, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(169), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(175), 1, - anon_sym_DOLLAR, - ACTIONS(177), 1, - sym_special_character, - ACTIONS(179), 1, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(183), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(185), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(193), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - STATE(204), 1, - sym_command_name, - STATE(528), 1, - aux_sym_for_statement_repeat1, - STATE(726), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(189), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(181), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(529), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2065), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(481), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [5138] = 9, + [77145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 1, - aux_sym_for_statement_token1, - ACTIONS(1097), 1, - anon_sym_DQUOTE, - ACTIONS(1099), 1, - sym_raw_string, - STATE(854), 1, - sym_orig_simple_variable_name, - STATE(984), 1, - sym_string, - ACTIONS(623), 2, + ACTIONS(1034), 6, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1095), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 30, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [5204] = 18, - ACTIONS(3), 1, + [77198] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1107), 1, + ACTIONS(175), 1, + anon_sym_TILDE, + ACTIONS(644), 1, + sym_word, + ACTIONS(651), 1, + anon_sym_LPAREN, + ACTIONS(653), 1, + anon_sym_BANG, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1110), 1, - sym_special_character, - ACTIONS(1113), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1116), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1119), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1122), 1, - anon_sym_BQUOTE, - ACTIONS(1128), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1131), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - STATE(221), 1, - aux_sym_command_repeat2, - STATE(960), 1, + ACTIONS(687), 1, + sym_test_operator, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(4719), 1, + sym_special_character, + STATE(1979), 1, aux_sym_for_statement_repeat1, - STATE(1008), 1, - sym_concatenation, - ACTIONS(1104), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1125), 2, + STATE(2278), 1, + sym_expression, + ACTIONS(171), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(173), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(667), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(908), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1101), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(823), 7, + STATE(2197), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1903), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(910), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + [77301] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5137), 1, + anon_sym_DQUOTE, + ACTIONS(5139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5143), 1, + anon_sym_BQUOTE, + ACTIONS(5145), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2028), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(4733), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5288] = 18, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(4735), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [77366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym_special_character, - ACTIONS(1085), 1, - anon_sym_DQUOTE, - ACTIONS(1138), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1140), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1142), 1, - anon_sym_BQUOTE, - ACTIONS(1146), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1148), 1, - sym_semgrep_named_ellipsis, - STATE(225), 1, - aux_sym_command_repeat2, - STATE(960), 1, - aux_sym_for_statement_repeat1, - STATE(1008), 1, - sym_concatenation, - ACTIONS(1136), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1144), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(819), 3, + ACTIONS(1030), 6, sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1134), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(823), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(821), 18, + aux_sym_statements_token1, + ACTIONS(1028), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5372] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1150), 1, - aux_sym_for_statement_token1, - ACTIONS(1154), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, - ACTIONS(1156), 1, sym_raw_string, - STATE(842), 1, - sym_string, - STATE(973), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 3, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [77419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 6, sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1152), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 29, + aux_sym_statements_token1, + ACTIONS(1040), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, - sym_ansii_c_string, + 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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [5438] = 27, - ACTIONS(57), 1, + [77472] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(169), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(321), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(323), 1, - sym_special_character, - ACTIONS(325), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(329), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(333), 1, - anon_sym_BQUOTE, - ACTIONS(337), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(339), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - STATE(209), 1, - sym_command_name, - STATE(734), 1, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, aux_sym_for_statement_repeat1, - STATE(922), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(335), 2, + STATE(2243), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(327), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(607), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2065), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(606), 7, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [5540] = 18, + [77575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, - sym_special_character, - ACTIONS(1085), 1, - anon_sym_DQUOTE, - ACTIONS(1138), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1140), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1142), 1, - anon_sym_BQUOTE, - ACTIONS(1146), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1148), 1, - sym_semgrep_named_ellipsis, - STATE(221), 1, - aux_sym_command_repeat2, - STATE(960), 1, - aux_sym_for_statement_repeat1, - STATE(1008), 1, - sym_concatenation, - ACTIONS(1136), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1144), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(942), 3, + ACTIONS(986), 5, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1134), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(823), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(944), 18, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5624] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1154), 1, - anon_sym_DQUOTE, - ACTIONS(1160), 1, - aux_sym_for_statement_token1, - ACTIONS(1162), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1164), 1, sym_special_character, - ACTIONS(1166), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1170), 1, anon_sym_BQUOTE, - ACTIONS(1174), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1176), 1, sym_semgrep_named_ellipsis, - ACTIONS(1178), 1, - sym_semgrep_metavariable, - STATE(957), 1, + [77628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5147), 1, + sym_special_character, + STATE(1570), 1, aux_sym_for_statement_repeat1, - ACTIONS(1172), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(229), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(946), 3, + ACTIONS(1056), 5, sym_file_descriptor, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1158), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(712), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(948), 18, + aux_sym_statements_token1, + ACTIONS(1054), 38, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [5708] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(43), 1, - sym_special_character, - ACTIONS(1085), 1, anon_sym_DQUOTE, - ACTIONS(1138), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1140), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1142), 1, anon_sym_BQUOTE, - ACTIONS(1146), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1148), 1, - sym_semgrep_named_ellipsis, - STATE(231), 1, - aux_sym_command_repeat2, - STATE(960), 1, - aux_sym_for_statement_repeat1, - STATE(1008), 1, - sym_concatenation, - ACTIONS(1136), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1144), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(952), 3, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [77685] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 6, sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1134), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(823), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(954), 18, + aux_sym_statements_token1, + ACTIONS(1036), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5792] = 27, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(41), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(43), 1, sym_special_character, - ACTIONS(45), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(51), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(53), 1, anon_sym_BQUOTE, - ACTIONS(57), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(61), 1, - sym_semgrep_named_ellipsis, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(1091), 1, - sym_variable_name, - STATE(227), 1, - sym_command_name, - STATE(954), 1, - aux_sym_for_statement_repeat1, - STATE(1000), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(55), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(47), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(661), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2520), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(829), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [5894] = 18, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [77738] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1154), 1, - anon_sym_DQUOTE, - ACTIONS(1160), 1, - aux_sym_for_statement_token1, - ACTIONS(1162), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(1164), 1, - sym_special_character, - ACTIONS(1166), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1168), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1170), 1, - anon_sym_BQUOTE, - ACTIONS(1174), 1, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1176), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(1180), 1, - sym_semgrep_metavariable, - STATE(957), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, + anon_sym_BANG, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - ACTIONS(1172), 2, + STATE(2280), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(241), 2, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(833), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1158), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(712), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(835), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [77841] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5122), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3742), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5978] = 27, - ACTIONS(57), 1, - sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(75), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(91), 1, - anon_sym_LPAREN, - ACTIONS(97), 1, - anon_sym_LBRACK, - ACTIONS(99), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(105), 1, anon_sym_DOLLAR, - ACTIONS(107), 1, - sym_special_character, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - STATE(233), 1, - sym_command_name, - STATE(962), 1, - aux_sym_for_statement_repeat1, - STATE(1004), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(119), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(111), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(664), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2320), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(39), 5, + sym_semgrep_metavariable, + ACTIONS(3744), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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, - STATE(824), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [6080] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(43), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1085), 1, anon_sym_DQUOTE, - ACTIONS(1138), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1140), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1142), 1, - anon_sym_BQUOTE, - ACTIONS(1146), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1148), 1, - sym_semgrep_named_ellipsis, - STATE(221), 1, - aux_sym_command_repeat2, - STATE(960), 1, - aux_sym_for_statement_repeat1, - STATE(1008), 1, - sym_concatenation, - ACTIONS(1136), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1144), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(801), 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [77898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1134), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(823), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(803), 18, + aux_sym_statements_token1, + ACTIONS(1048), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6164] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_DQUOTE, - ACTIONS(1184), 1, - aux_sym_for_statement_token1, - ACTIONS(1186), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1188), 1, sym_special_character, - ACTIONS(1190), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1192), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1194), 1, anon_sym_BQUOTE, - ACTIONS(1198), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1200), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1202), 1, - sym_semgrep_metavariable, - STATE(966), 1, - aux_sym_for_statement_repeat1, - ACTIONS(946), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1196), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(234), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1182), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(831), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(948), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [77951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6248] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(107), 1, sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1212), 1, anon_sym_BQUOTE, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(235), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(954), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [78004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6332] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1097), 1, - anon_sym_DQUOTE, - ACTIONS(1184), 1, - aux_sym_for_statement_token1, - ACTIONS(1186), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1188), 1, sym_special_character, - ACTIONS(1190), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1192), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1194), 1, anon_sym_BQUOTE, - ACTIONS(1198), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1200), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1220), 1, - sym_semgrep_metavariable, - STATE(966), 1, - aux_sym_for_statement_repeat1, - ACTIONS(833), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1196), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(237), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1182), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(831), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(835), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [78057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6416] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(107), 1, sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1212), 1, anon_sym_BQUOTE, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(238), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(801), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(803), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [78110] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5122), 1, + aux_sym_concatenation_token1, + ACTIONS(5150), 1, + sym_concat, + STATE(1585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(962), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6500] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, - anon_sym_DOLLAR, - ACTIONS(107), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [78169] = 28, + ACTIONS(71), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1212), 1, - anon_sym_BQUOTE, - ACTIONS(1216), 1, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - STATE(239), 1, - aux_sym_command_repeat2, - STATE(978), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(819), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + STATE(2300), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(834), 7, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(821), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [78272] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5107), 1, + aux_sym_concatenation_token1, + ACTIONS(5152), 1, + sym_concat, + STATE(1447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6584] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1225), 1, - aux_sym_for_statement_token1, - ACTIONS(1228), 1, - anon_sym_DOLLAR, - ACTIONS(1231), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1234), 1, anon_sym_DQUOTE, - ACTIONS(1237), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1240), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1243), 1, - anon_sym_BQUOTE, - ACTIONS(1249), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1252), 1, sym_semgrep_named_ellipsis, - ACTIONS(1255), 1, - sym_semgrep_metavariable, - STATE(966), 1, - aux_sym_for_statement_repeat1, - ACTIONS(868), 2, + [78331] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1246), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(237), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1222), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(831), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(870), 19, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 12, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30900,130 +136654,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [6668] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, + anon_sym_BQUOTE, + ACTIONS(4475), 19, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(1267), 1, sym_special_character, - ACTIONS(1270), 1, anon_sym_DQUOTE, - ACTIONS(1273), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1276), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1279), 1, - anon_sym_BQUOTE, - ACTIONS(1285), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1288), 1, - sym_semgrep_named_ellipsis, - STATE(238), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(908), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1261), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1282), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1258), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(910), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [78392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [6752] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(107), 1, sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1212), 1, anon_sym_BQUOTE, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(238), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(942), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(944), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [78445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4479), 1, + aux_sym_statements_token1, + ACTIONS(4484), 1, + sym_file_descriptor, + ACTIONS(4487), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(4477), 9, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 12, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31032,24569 +136758,28594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [6836] = 27, - ACTIONS(57), 1, - sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(75), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(91), 1, - anon_sym_LPAREN, - ACTIONS(97), 1, - anon_sym_LBRACK, - ACTIONS(99), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(105), 1, + anon_sym_BQUOTE, + ACTIONS(4475), 19, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(107), 1, sym_special_character, - ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(113), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, - anon_sym_BQUOTE, - ACTIONS(121), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - STATE(248), 1, - sym_command_name, - STATE(962), 1, - aux_sym_for_statement_repeat1, - STATE(1004), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(119), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(111), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(653), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(2320), 3, - sym_subshell, - sym_test_command, - sym_command, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(824), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [6938] = 18, - ACTIONS(3), 1, + [78506] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1294), 1, - aux_sym_for_statement_token1, - ACTIONS(1297), 1, + ACTIONS(95), 1, + anon_sym_TILDE, + ACTIONS(239), 1, + sym_word, + ACTIONS(250), 1, + anon_sym_BANG, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(1300), 1, - sym_special_character, - ACTIONS(1303), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(288), 1, + sym_test_operator, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(1306), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1309), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1312), 1, - anon_sym_BQUOTE, - ACTIONS(1318), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1321), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(1324), 1, - sym_semgrep_metavariable, - STATE(957), 1, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, aux_sym_for_statement_repeat1, - ACTIONS(1315), 2, + STATE(2302), 1, + sym_expression, + ACTIONS(91), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(93), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(241), 2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(868), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1291), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(712), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(870), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [7022] = 4, - ACTIONS(57), 1, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [78609] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(777), 1, - ts_builtin_sym_end, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5154), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 15, + aux_sym_for_statement_token1, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(775), 22, + sym_semgrep_metavariable, + ACTIONS(968), 27, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [7077] = 17, - ACTIONS(3), 1, + [78666] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_DQUOTE, - ACTIONS(1184), 1, - aux_sym_for_statement_token1, - ACTIONS(1186), 1, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(1188), 1, - sym_special_character, - ACTIONS(1190), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1192), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1198), 1, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_BANG, + ACTIONS(859), 1, + anon_sym_TILDE, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1200), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(1327), 1, - sym_semgrep_metavariable, - STATE(966), 1, + ACTIONS(883), 1, + sym_test_operator, + ACTIONS(4705), 1, + sym_special_character, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1978), 1, aux_sym_for_statement_repeat1, - ACTIONS(946), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1196), 2, + STATE(2388), 1, + sym_expression, + ACTIONS(855), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(857), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(247), 2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1182), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(831), 7, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - ACTIONS(948), 19, + [78769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 40, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - [7158] = 3, - ACTIONS(57), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [78822] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(775), 23, + ACTIONS(4079), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [7211] = 4, - ACTIONS(57), 1, + [78879] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(789), 1, - ts_builtin_sym_end, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5122), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 15, + aux_sym_for_statement_token1, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(775), 22, + sym_semgrep_metavariable, + ACTIONS(978), 27, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [7266] = 4, - ACTIONS(57), 1, + [78936] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(555), 1, - ts_builtin_sym_end, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5107), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(241), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(371), 22, + ACTIONS(284), 27, sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [7321] = 17, + [78993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - anon_sym_DQUOTE, - ACTIONS(1184), 1, - aux_sym_for_statement_token1, - ACTIONS(1186), 1, - anon_sym_DOLLAR, - ACTIONS(1188), 1, + ACTIONS(5157), 1, sym_special_character, - ACTIONS(1190), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1192), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1198), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1200), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1220), 1, - sym_semgrep_metavariable, - STATE(966), 1, + STATE(1496), 1, aux_sym_for_statement_repeat1, - ACTIONS(833), 2, + ACTIONS(4079), 4, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1196), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(237), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1182), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(831), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(835), 19, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 39, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - [7402] = 17, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [79050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3422), 3, + sym_variable_name, + sym_test_operator, + sym_brace_start, + ACTIONS(3407), 20, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(107), 1, sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(252), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(954), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + ACTIONS(4568), 20, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_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, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [7483] = 4, - ACTIONS(57), 1, + [79107] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(563), 1, - ts_builtin_sym_end, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5109), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1739), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(371), 22, + ACTIONS(1741), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [7538] = 3, - ACTIONS(57), 1, + [79164] = 28, + ACTIONS(71), 1, sym_comment, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(239), 1, + sym_word, + ACTIONS(260), 1, + anon_sym_DOLLAR, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(851), 1, anon_sym_LPAREN, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(881), 1, + sym_semgrep_named_ellipsis, + ACTIONS(917), 1, + sym_special_character, + ACTIONS(927), 1, 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, + ACTIONS(933), 1, + anon_sym_TILDE, + ACTIONS(935), 1, + sym_test_operator, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + STATE(1881), 1, + aux_sym_for_statement_repeat1, + STATE(2323), 1, + sym_expression, + ACTIONS(871), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(877), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(929), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(931), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(1974), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(1771), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [79267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 6, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 39, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - sym_special_character, - sym_word, - ACTIONS(371), 23, - sym_file_descriptor, - sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [7591] = 17, + [79320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_DOLLAR, - ACTIONS(107), 1, + ACTIONS(5159), 1, sym_special_character, - ACTIONS(960), 1, - anon_sym_DQUOTE, - ACTIONS(1208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(253), 1, - aux_sym_command_repeat2, - STATE(978), 1, + STATE(1596), 1, aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(819), 2, + ACTIONS(1056), 5, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(821), 19, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 37, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [7672] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(107), 1, - sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1216), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, sym_semgrep_named_ellipsis, - STATE(238), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(801), 2, + [79376] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(984), 15, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(986), 29, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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(1204), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(803), 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [79428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + sym_special_character, + STATE(1596), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 5, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4077), 37, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [7753] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(107), 1, - sym_special_character, - ACTIONS(960), 1, anon_sym_DQUOTE, - ACTIONS(1208), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1210), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1216), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1218), 1, - sym_semgrep_named_ellipsis, - STATE(238), 1, - aux_sym_command_repeat2, - STATE(978), 1, - aux_sym_for_statement_repeat1, - STATE(1001), 1, - sym_concatenation, - ACTIONS(942), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1206), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1214), 2, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1204), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(834), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - ACTIONS(944), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [79484] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [7834] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(563), 1, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(371), 21, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1050), 29, sym_file_descriptor, + sym_concat, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [79536] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, sym_special_character, - sym_word, - [7888] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(789), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(775), 21, + sym_word, + ACTIONS(1050), 30, sym_file_descriptor, + sym_concat, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [79588] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 15, + aux_sym_for_statement_token1, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, - sym_word, - [7942] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(555), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(371), 21, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1038), 29, sym_file_descriptor, + sym_concat, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(234), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [79640] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 15, + aux_sym_for_statement_token1, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, - sym_word, - [7996] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(777), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(775), 21, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1022), 29, sym_file_descriptor, + sym_concat, sym_variable_name, - anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(771), 22, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - 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, + [79692] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5164), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1739), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - [8050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - sym_concat, - STATE(266), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1331), 3, + ACTIONS(1741), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [8105] = 5, - ACTIONS(3), 1, + [79748] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1333), 1, - sym_concat, - STATE(266), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1008), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [8160] = 11, - ACTIONS(3), 1, + [79800] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1341), 1, - anon_sym_LF, - ACTIONS(1351), 1, - anon_sym_LT_LT_LT, - ACTIONS(1343), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1345), 2, + ACTIONS(996), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1347), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(561), 4, - anon_sym_SEMI_SEMI, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8227] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, - sym_variable_name, - ACTIONS(1355), 2, + ACTIONS(998), 30, sym_file_descriptor, - anon_sym_LF, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 15, - anon_sym_DOLLAR, - sym_special_character, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(1357), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + [79852] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5166), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [8284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1333), 1, - sym_concat, - STATE(266), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3836), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8339] = 5, - ACTIONS(3), 1, + [79908] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1333), 1, + ACTIONS(5166), 1, + aux_sym_concatenation_token1, + ACTIONS(5168), 1, sym_concat, - STATE(266), 1, + STATE(1639), 1, aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(960), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8394] = 11, - ACTIONS(3), 1, + [79966] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1351), 1, - anon_sym_LT_LT_LT, - ACTIONS(1367), 1, - anon_sym_LF, - ACTIONS(1345), 2, + ACTIONS(1024), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1347), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1369), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1371), 4, - anon_sym_SEMI_SEMI, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8461] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - anon_sym_LF, - ACTIONS(1345), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1353), 2, + sym_semgrep_metavariable, + ACTIONS(1026), 29, sym_file_descriptor, - sym_variable_name, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 11, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [8520] = 5, - ACTIONS(3), 1, + [80018] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1381), 1, - sym_concat, - STATE(267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1048), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8575] = 5, - ACTIONS(3), 1, + [80070] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1387), 1, - sym_concat, - STATE(267), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1044), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1046), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8630] = 5, - ACTIONS(3), 1, + [80122] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1390), 1, - sym_concat, - STATE(303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1331), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1028), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1394), 4, + ACTIONS(1030), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [8734] = 3, - ACTIONS(3), 1, + [80174] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1048), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8784] = 3, - ACTIONS(3), 1, + [80226] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1000), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8834] = 3, - ACTIONS(3), 1, + [80278] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1032), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8884] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 4, + ACTIONS(1034), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [8934] = 3, - ACTIONS(3), 1, + [80330] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1004), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [8984] = 3, - ACTIONS(3), 1, + [80382] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9034] = 3, - ACTIONS(3), 1, + [80434] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1024), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9084] = 3, - ACTIONS(3), 1, + [80486] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5166), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(976), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9134] = 3, - ACTIONS(3), 1, + [80542] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5164), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(1743), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1745), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9184] = 3, - ACTIONS(3), 1, + [80598] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, + ACTIONS(1000), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9234] = 5, - ACTIONS(3), 1, + [80650] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1436), 1, - sym_special_character, - STATE(280), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(992), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9288] = 3, - ACTIONS(3), 1, + [80702] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5166), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(3846), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3848), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9338] = 3, - ACTIONS(3), 1, + [80758] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5166), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(4063), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4065), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9388] = 3, - ACTIONS(3), 1, + [80814] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(988), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, + ACTIONS(990), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9488] = 3, - ACTIONS(3), 1, + [80866] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(966), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9538] = 3, - ACTIONS(3), 1, + [80918] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1048), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9588] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 4, + ACTIONS(1050), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9638] = 5, - ACTIONS(3), 1, + [80970] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1463), 1, - sym_special_character, - STATE(280), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1331), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1016), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 4, + ACTIONS(1018), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9742] = 3, - ACTIONS(3), 1, + [81022] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1004), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 4, + ACTIONS(1006), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9842] = 3, - ACTIONS(3), 1, + [81074] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1040), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 4, + ACTIONS(1042), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [9942] = 3, - ACTIONS(3), 1, + [81126] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1036), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [9992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(1038), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10042] = 3, - ACTIONS(3), 1, + [81178] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(992), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10092] = 3, - ACTIONS(3), 1, + [81230] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(984), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10142] = 3, - ACTIONS(3), 1, + [81282] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1008), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 4, + ACTIONS(1010), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10242] = 3, - ACTIONS(3), 1, + [81334] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(984), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 4, + ACTIONS(986), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10342] = 3, - ACTIONS(3), 1, + [81386] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1032), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1034), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10392] = 5, - ACTIONS(3), 1, + [81438] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1521), 1, - sym_concat, - STATE(304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1008), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10446] = 5, - ACTIONS(3), 1, + [81490] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1523), 1, - sym_concat, - STATE(304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1012), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10500] = 11, - ACTIONS(3), 1, + [81542] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1526), 1, - anon_sym_LF, - ACTIONS(1534), 1, - anon_sym_LT_LT_LT, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1528), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1530), 2, + ACTIONS(1016), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1532), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1371), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + 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, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1018), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10566] = 5, - ACTIONS(3), 1, + [81594] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1390), 1, - sym_concat, - STATE(303), 1, + STATE(1639), 1, aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5170), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10620] = 5, - ACTIONS(3), 1, + [81650] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1463), 1, - sym_special_character, - STATE(280), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5164), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3730), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3732), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10674] = 5, - ACTIONS(3), 1, + [81706] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1463), 1, - sym_special_character, - STATE(280), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1020), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10728] = 5, - ACTIONS(3), 1, + [81758] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1390), 1, - sym_concat, - STATE(303), 1, + STATE(1663), 1, aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5164), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4079), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10782] = 5, - ACTIONS(3), 1, + [81814] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1390), 1, - sym_concat, - STATE(303), 1, + STATE(1663), 1, aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5164), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3836), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [10836] = 11, - ACTIONS(3), 1, + [81870] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LT_LT_LT, - ACTIONS(1536), 1, - anon_sym_LF, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1530), 2, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5166), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3850), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1532), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1538), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(561), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [10902] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, - sym_variable_name, - ACTIONS(1355), 2, + ACTIONS(3852), 26, sym_file_descriptor, - anon_sym_LF, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 15, - anon_sym_DOLLAR, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(1357), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [81926] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 15, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [10958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - anon_sym_LF, - ACTIONS(1353), 2, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(982), 29, sym_file_descriptor, + sym_concat, sym_variable_name, - ACTIONS(1530), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 10, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11016] = 3, - ACTIONS(3), 1, + [81978] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5164), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(3846), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3848), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11066] = 11, - ACTIONS(3), 1, + [82034] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(1544), 1, - anon_sym_LF, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1546), 2, + ACTIONS(980), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1528), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 4, + ACTIONS(982), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11180] = 5, - ACTIONS(3), 1, + [82086] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1554), 1, - sym_concat, - STATE(319), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1024), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11233] = 3, - ACTIONS(3), 1, + [82138] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(980), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(982), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11282] = 5, - ACTIONS(3), 1, + [82190] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1556), 1, - sym_concat, - STATE(319), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1032), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1034), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11335] = 3, - ACTIONS(3), 1, + [82242] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1028), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11384] = 3, - ACTIONS(3), 1, + [82294] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(996), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(998), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11433] = 3, - ACTIONS(3), 1, + [82346] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1028), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11482] = 3, + [82398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 4, + ACTIONS(5173), 1, + sym_special_character, + STATE(1654), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 37, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 38, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11531] = 5, + [82454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(5176), 1, sym_special_character, - STATE(324), 1, + STATE(1654), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, + ACTIONS(4079), 4, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 36, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 38, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11584] = 3, - ACTIONS(3), 1, + [82510] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1044), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1046), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11633] = 3, - ACTIONS(3), 1, + [82562] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(968), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11682] = 3, - ACTIONS(3), 1, + [82614] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(988), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [11731] = 3, - ACTIONS(3), 1, + [82666] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, + STATE(1663), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5164), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + aux_sym_concatenation_token1, + ACTIONS(976), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11780] = 5, - ACTIONS(3), 1, + [82722] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1562), 1, - sym_concat, - STATE(372), 1, + STATE(1663), 1, aux_sym_concatenation_repeat1, - ACTIONS(1361), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1359), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5164), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3588), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(3590), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11833] = 3, - ACTIONS(3), 1, + [82778] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1000), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1002), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11882] = 3, - ACTIONS(3), 1, + [82830] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(992), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(994), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11931] = 3, - ACTIONS(3), 1, + [82882] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, + ACTIONS(5164), 1, + aux_sym_concatenation_token1, + ACTIONS(5178), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + STATE(1667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [11980] = 3, - ACTIONS(3), 1, + [82940] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1042), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12029] = 3, - ACTIONS(3), 1, + [82992] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(988), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(990), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12078] = 3, - ACTIONS(3), 1, + [83044] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1012), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12127] = 3, - ACTIONS(3), 1, + [83096] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, + STATE(1667), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5180), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + aux_sym_concatenation_token1, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12176] = 3, - ACTIONS(3), 1, + [83152] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1042), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12225] = 3, - ACTIONS(3), 1, + [83204] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1036), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12274] = 3, - ACTIONS(3), 1, + [83256] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(1050), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12372] = 3, - ACTIONS(3), 1, + [83308] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1016), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 4, + ACTIONS(1018), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12470] = 3, - ACTIONS(3), 1, + [83360] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1020), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 4, + ACTIONS(1022), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12568] = 3, - ACTIONS(3), 1, + [83412] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(996), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(998), 29, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12617] = 3, - ACTIONS(3), 1, + [83464] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1012), 15, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 4, + ACTIONS(1014), 29, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12715] = 3, - ACTIONS(3), 1, + [83516] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 15, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1046), 29, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12764] = 5, - ACTIONS(3), 1, + [83568] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1564), 1, - sym_concat, - STATE(317), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1004), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [12817] = 5, - ACTIONS(3), 1, + [83620] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1566), 1, - sym_concat, - STATE(365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(988), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12870] = 5, - ACTIONS(3), 1, + [83671] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1566), 1, - sym_concat, - STATE(365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1008), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12923] = 3, - ACTIONS(3), 1, + [83722] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5183), 1, + sym_special_character, + STATE(1708), 1, + aux_sym_for_statement_repeat1, + ACTIONS(241), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(284), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [12972] = 11, - ACTIONS(3), 1, + [83777] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1568), 1, - ts_builtin_sym_end, - ACTIONS(1570), 1, - anon_sym_LF, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1574), 2, + ACTIONS(980), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1576), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1578), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1572), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 3, + ACTIONS(982), 30, sym_file_descriptor, + sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [13086] = 3, - ACTIONS(3), 1, + [83828] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1588), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1032), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13135] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, - sym_variable_name, - ACTIONS(1355), 3, + ACTIONS(1034), 30, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 15, - anon_sym_DOLLAR, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - ACTIONS(1357), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [83879] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13190] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 2, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 30, sym_file_descriptor, + sym_concat, sym_variable_name, - ACTIONS(1373), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1574), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 8, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [13247] = 5, - ACTIONS(3), 1, + [83930] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1562), 1, - sym_concat, - STATE(372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1012), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13300] = 5, - ACTIONS(3), 1, + [83981] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1590), 1, - sym_special_character, - STATE(324), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1016), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1018), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13353] = 3, - ACTIONS(3), 1, + [84032] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1042), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [13402] = 3, + [84083] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 37, + ACTIONS(5189), 1, + aux_sym_statements_token1, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5193), 1, + anon_sym_esac, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5201), 1, + sym_special_character, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, + anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5518), 1, + sym_last_case_item, + ACTIONS(5217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2117), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5187), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [84184] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13451] = 5, + [84235] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5201), 1, sym_special_character, - STATE(324), 1, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, + anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5231), 1, + aux_sym_statements_token1, + ACTIONS(5233), 1, + anon_sym_esac, + STATE(4909), 1, aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 36, + STATE(5959), 1, + sym_last_case_item, + ACTIONS(5217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2109), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5229), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [84336] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [13504] = 5, - ACTIONS(3), 1, + [84387] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1566), 1, - sym_concat, - STATE(365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1004), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13557] = 5, - ACTIONS(3), 1, + [84438] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1590), 1, + ACTIONS(5235), 1, sym_special_character, - STATE(324), 1, + STATE(1718), 1, aux_sym_for_statement_repeat1, - ACTIONS(1331), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3834), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [13610] = 5, - ACTIONS(3), 1, + [84493] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1592), 1, - sym_concat, - STATE(369), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1024), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13663] = 5, + [84544] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1562), 1, - sym_concat, - STATE(372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1331), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1329), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5201), 1, sym_special_character, + ACTIONS(5203), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5239), 1, + aux_sym_statements_token1, + ACTIONS(5241), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5575), 1, + sym_last_case_item, + ACTIONS(5217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2118), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 37, + ACTIONS(5237), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [84645] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1000), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13765] = 5, - ACTIONS(3), 1, + [84696] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1562), 1, - sym_concat, - STATE(372), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(980), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(982), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13818] = 5, - ACTIONS(3), 1, + [84747] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1594), 1, - sym_concat, - STATE(369), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1032), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1034), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13871] = 3, - ACTIONS(3), 1, + [84798] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1028), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13920] = 5, - ACTIONS(3), 1, + [84849] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1566), 1, - sym_concat, - STATE(365), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1331), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 15, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1042), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [13973] = 5, - ACTIONS(3), 1, + [84900] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1597), 1, - sym_concat, - STATE(379), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1377), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1036), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14026] = 5, - ACTIONS(3), 1, + [84951] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1564), 1, - sym_concat, - STATE(317), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1048), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14079] = 11, - ACTIONS(3), 1, + [85002] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(561), 1, - anon_sym_RPAREN, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1546), 2, + ACTIONS(1044), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1538), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14144] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(563), 1, - ts_builtin_sym_end, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(1601), 1, - anon_sym_LF, - ACTIONS(1353), 2, + ACTIONS(1046), 30, sym_file_descriptor, + sym_concat, sym_variable_name, - ACTIONS(1574), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1576), 2, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - ACTIONS(1578), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1603), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14209] = 5, - ACTIONS(3), 1, + [85053] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1564), 1, - sym_concat, - STATE(317), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(992), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14262] = 6, + [85104] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1353), 1, - sym_variable_name, - ACTIONS(1355), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 15, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5201), 1, sym_special_character, + ACTIONS(5203), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5245), 1, + aux_sym_statements_token1, + ACTIONS(5247), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5768), 1, + sym_last_case_item, + ACTIONS(5217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2167), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(1357), 19, + ACTIONS(5243), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [85205] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [14317] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - anon_sym_LF, - ACTIONS(1353), 2, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 30, sym_file_descriptor, + sym_concat, sym_variable_name, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 9, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14374] = 5, - ACTIONS(3), 1, + [85256] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1605), 1, - sym_concat, - STATE(379), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(984), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14427] = 6, - ACTIONS(3), 1, + [85307] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1614), 1, - sym_concat, - STATE(442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5235), 1, + sym_special_character, + STATE(1718), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1739), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [14482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1618), 3, + ACTIONS(1741), 29, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1616), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14531] = 3, - ACTIONS(3), 1, + [85362] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 38, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1000), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 4, + ACTIONS(1002), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14628] = 5, - ACTIONS(3), 1, + [85413] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1620), 1, + ACTIONS(5249), 1, sym_special_character, - STATE(408), 1, + STATE(1708), 1, aux_sym_for_statement_repeat1, - ACTIONS(1365), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1054), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14680] = 5, - ACTIONS(3), 1, + [85468] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1622), 1, - sym_concat, - STATE(432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(984), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [14732] = 3, - ACTIONS(3), 1, + [85519] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1513), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1048), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14780] = 3, - ACTIONS(3), 1, + [85570] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1048), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [14828] = 3, - ACTIONS(3), 1, + [85621] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(992), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14876] = 3, - ACTIONS(3), 1, + [85672] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5252), 1, + sym_special_character, + STATE(1733), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3588), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3590), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14924] = 3, - ACTIONS(3), 1, + [85727] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5235), 1, + sym_special_character, + STATE(1718), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [14972] = 3, - ACTIONS(3), 1, + [85782] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1004), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15020] = 5, - ACTIONS(3), 1, + [85833] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1624), 1, + ACTIONS(5252), 1, sym_special_character, - STATE(392), 1, + STATE(1733), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(3730), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3732), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15072] = 3, - ACTIONS(3), 1, + [85888] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5235), 1, + sym_special_character, + STATE(1718), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15120] = 3, - ACTIONS(3), 1, + [85943] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5254), 1, + sym_special_character, + STATE(1718), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15168] = 3, + [85998] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 36, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5201), 1, + sym_special_character, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, + anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5259), 1, + aux_sym_statements_token1, + ACTIONS(5261), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5613), 1, + sym_last_case_item, + ACTIONS(5217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2111), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5257), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [86099] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15216] = 3, - ACTIONS(3), 1, + [86150] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5252), 1, + sym_special_character, + STATE(1733), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3742), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3744), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15264] = 3, - ACTIONS(3), 1, + [86205] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1517), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(996), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 4, + ACTIONS(998), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15360] = 3, - ACTIONS(3), 1, + [86256] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1012), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 4, + ACTIONS(1014), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15456] = 3, - ACTIONS(3), 1, + [86307] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1016), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 4, + ACTIONS(1018), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15552] = 3, - ACTIONS(3), 1, + [86358] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(988), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 30, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15600] = 5, - ACTIONS(3), 1, + [86409] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1627), 1, - sym_concat, - STATE(464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 15, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15652] = 3, - ACTIONS(3), 1, + [86460] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1485), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(996), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(998), 28, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15700] = 3, - ACTIONS(3), 1, + [86511] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1020), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 4, + ACTIONS(1022), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15796] = 5, + [86562] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1629), 1, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5201), 1, sym_special_character, - STATE(408), 1, + ACTIONS(5203), 1, + anon_sym_DQUOTE, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, + anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5265), 1, + aux_sym_statements_token1, + ACTIONS(5267), 1, + anon_sym_esac, + STATE(4909), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1432), 34, + STATE(5514), 1, + sym_last_case_item, + ACTIONS(5217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2157), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(5263), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [86663] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5201), 1, + sym_special_character, + ACTIONS(5203), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5271), 1, + aux_sym_statements_token1, + ACTIONS(5273), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5509), 1, + sym_last_case_item, + ACTIONS(5217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2114), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15848] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1632), 1, - anon_sym_LF, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1634), 3, + ACTIONS(5269), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [86764] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5191), 1, + anon_sym_LPAREN, + ACTIONS(5195), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5197), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5201), 1, sym_special_character, + ACTIONS(5203), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5209), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5211), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5213), 1, anon_sym_BQUOTE, + ACTIONS(5215), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5219), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5221), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5223), 1, + sym_test_operator, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5277), 1, + aux_sym_statements_token1, + ACTIONS(5279), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5639), 1, + sym_last_case_item, + ACTIONS(5217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5185), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [15910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 36, + ACTIONS(5275), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [86865] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5235), 1, + sym_special_character, + STATE(1718), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4079), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [15958] = 3, - ACTIONS(3), 1, + [86920] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1489), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5281), 1, + sym_special_character, + STATE(1733), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(1056), 27, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16006] = 3, - ACTIONS(3), 1, + [86975] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16054] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(968), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16102] = 5, - ACTIONS(3), 1, + [87026] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1636), 1, - sym_special_character, - STATE(482), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1024), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, + ACTIONS(1026), 30, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16202] = 3, - ACTIONS(3), 1, + [87077] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1493), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1044), 15, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 4, + ACTIONS(1046), 28, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16298] = 5, - ACTIONS(3), 1, + [87128] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1627), 1, - sym_concat, - STATE(464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16350] = 5, - ACTIONS(3), 1, + [87182] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1627), 1, - sym_concat, - STATE(464), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(4394), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(4396), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16402] = 3, - ACTIONS(3), 1, + [87232] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(4398), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(4400), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16450] = 3, - ACTIONS(3), 1, + [87282] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, + STATE(1748), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + ACTIONS(976), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(978), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym_special_character, + [87336] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3834), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16498] = 3, - ACTIONS(3), 1, + [87390] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1743), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16546] = 3, - ACTIONS(3), 1, + [87440] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, + STATE(1766), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5286), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(4077), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4079), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16594] = 3, - ACTIONS(3), 1, + [87494] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, + STATE(1763), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5288), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(976), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16642] = 3, - ACTIONS(3), 1, + sym_semgrep_metavariable, + [87548] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3834), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16690] = 3, - ACTIONS(3), 1, + [87598] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16738] = 3, - ACTIONS(3), 1, + [87652] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5290), 1, + sym_special_character, + STATE(1762), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16786] = 5, - ACTIONS(3), 1, + [87706] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1614), 1, + ACTIONS(865), 1, + aux_sym_concatenation_token1, + ACTIONS(5292), 1, sym_concat, - STATE(442), 1, + STATE(1761), 1, aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(960), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(962), 25, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [87762] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1766), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5286), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [16838] = 3, - ACTIONS(3), 1, + [87816] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1584), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5290), 1, + sym_special_character, + STATE(1762), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3850), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3852), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [16886] = 3, - ACTIONS(3), 1, + [87870] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(3588), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + sym_semgrep_metavariable, + ACTIONS(3590), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16934] = 5, - ACTIONS(3), 1, + [87920] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1636), 1, - sym_special_character, - STATE(482), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3846), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [16986] = 5, - ACTIONS(3), 1, + [87970] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1638), 1, - sym_concat, - STATE(438), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(5290), 1, + sym_special_character, + STATE(1762), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4063), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4065), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [17038] = 10, - ACTIONS(3), 1, + [88024] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1640), 1, - anon_sym_LF, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1546), 2, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1642), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 3, + ACTIONS(4079), 28, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17148] = 5, - ACTIONS(3), 1, + [88078] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1620), 1, + ACTIONS(5284), 1, sym_special_character, - STATE(408), 1, + STATE(1769), 1, aux_sym_for_statement_repeat1, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3730), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3732), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17200] = 10, - ACTIONS(3), 1, + [88132] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1644), 1, - anon_sym_LF, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1546), 2, + ACTIONS(4477), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, anon_sym_LT_LT, + ACTIONS(4479), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_LT_LT_DASH, - ACTIONS(1646), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 23, + ACTIONS(4481), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(4475), 6, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4484), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(4487), 17, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17262] = 3, - ACTIONS(3), 1, + [88190] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, + STATE(1763), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5288), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(4338), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17310] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1648), 1, - sym_concat, - STATE(438), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, + ACTIONS(4340), 25, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [17362] = 3, - ACTIONS(3), 1, + [88244] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3730), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1509), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_semgrep_metavariable, + ACTIONS(3732), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17458] = 5, - ACTIONS(3), 1, + [88294] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1620), 1, - sym_special_character, - STATE(408), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1331), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1329), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(4477), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(4479), 5, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(4481), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4475), 6, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4484), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(4487), 17, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17510] = 5, - ACTIONS(3), 1, + [88352] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1651), 1, - sym_concat, - STATE(444), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(241), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [17562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 4, + ACTIONS(284), 28, sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_LPAREN, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17610] = 5, - ACTIONS(3), 1, + [88402] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1653), 1, - sym_concat, - STATE(444), 1, + STATE(1761), 1, aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5294), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(968), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [88456] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5297), 1, + sym_special_character, + STATE(1762), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [17662] = 3, - ACTIONS(3), 1, + [88510] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, + ACTIONS(5288), 1, + aux_sym_concatenation_token1, + ACTIONS(5300), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(1770), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17710] = 3, - ACTIONS(3), 1, + [88566] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1739), 12, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17758] = 3, - ACTIONS(3), 1, + [88620] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1416), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5284), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3588), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3590), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [17806] = 3, - ACTIONS(3), 1, + [88674] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 4, - sym_file_descriptor, + ACTIONS(5286), 1, + aux_sym_concatenation_token1, + ACTIONS(5302), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + STATE(1768), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 5, + ACTIONS(962), 25, sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1420), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17902] = 3, - ACTIONS(3), 1, + [88730] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5290), 1, + sym_special_character, + STATE(1762), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3834), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 26, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17950] = 3, - ACTIONS(3), 1, + [88784] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, + STATE(1768), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5304), 2, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + aux_sym_concatenation_token1, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [17998] = 3, - ACTIONS(3), 1, + [88838] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5307), 1, + sym_special_character, + STATE(1769), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 28, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18046] = 3, - ACTIONS(3), 1, + [88892] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 5, - sym_file_descriptor, + STATE(1770), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5310), 2, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1424), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(966), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18094] = 3, - ACTIONS(3), 1, + [88946] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 5, - sym_file_descriptor, + STATE(1748), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1501), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [89000] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1739), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18142] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1636), 1, - sym_special_character, - STATE(482), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1331), 3, + ACTIONS(1741), 29, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1329), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18194] = 3, - ACTIONS(3), 1, + [89050] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1392), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(4477), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(4479), 4, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4475), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4481), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4484), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(4487), 18, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18242] = 3, - ACTIONS(3), 1, + [89107] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3846), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18290] = 3, - ACTIONS(3), 1, + [89156] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1004), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1006), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89205] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 4, + ACTIONS(1018), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18386] = 3, - ACTIONS(3), 1, + [89254] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1428), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3846), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18434] = 3, - ACTIONS(3), 1, + [89303] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(980), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 4, + ACTIONS(982), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18530] = 3, - ACTIONS(3), 1, + [89352] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(984), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(986), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89401] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3850), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3852), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18578] = 5, - ACTIONS(3), 1, + [89450] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1656), 1, - sym_concat, - STATE(471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 14, + aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18630] = 3, - ACTIONS(3), 1, + sym_semgrep_metavariable, + [89499] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1012), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18678] = 5, - ACTIONS(3), 1, + [89548] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1658), 1, - sym_special_character, - STATE(392), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1020), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1022), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89597] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1038), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89646] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1050), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89695] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 27, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89744] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1050), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [89793] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1743), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18778] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1658), 1, - sym_special_character, - STATE(392), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, + ACTIONS(1745), 29, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18830] = 3, - ACTIONS(3), 1, + [89842] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1000), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18878] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 5, + ACTIONS(1002), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1505), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [18926] = 5, - ACTIONS(3), 1, + [89891] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1660), 1, - sym_concat, - STATE(471), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(4477), 2, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(4479), 4, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(4475), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4481), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4484), 7, + sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(4487), 18, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [18978] = 3, - ACTIONS(3), 1, + [89948] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(988), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 5, + ACTIONS(990), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19074] = 3, - ACTIONS(3), 1, + [89997] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1032), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1445), 4, + ACTIONS(1034), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19170] = 3, - ACTIONS(3), 1, + [90046] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1400), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1024), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19218] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 5, + ACTIONS(1026), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1439), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19266] = 3, - ACTIONS(3), 1, + [90095] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1443), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1024), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1026), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [90144] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1816), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5313), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 5, + ACTIONS(4079), 25, sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19362] = 3, - ACTIONS(3), 1, + [90197] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(988), 14, anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(990), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [90246] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1018), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19410] = 5, - ACTIONS(3), 1, + [90295] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1614), 1, - sym_concat, - STATE(442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(4063), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4065), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [19462] = 5, - ACTIONS(3), 1, + [90344] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1663), 1, - sym_special_character, - STATE(482), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(4398), 12, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, + ACTIONS(4400), 29, sym_file_descriptor, - sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [19562] = 11, - ACTIONS(3), 1, + [90393] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_BQUOTE, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1666), 1, - anon_sym_LF, - ACTIONS(1353), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1670), 2, + STATE(1748), 1, + aux_sym_concatenation_repeat1, + ACTIONS(865), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 15, + anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1672), 2, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + sym_special_character, + ACTIONS(978), 23, + sym_test_operator, + 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_PIPE_PIPE, - ACTIONS(1668), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [90446] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 14, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 22, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1010), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [90495] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + anon_sym_BQUOTE, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 5, + ACTIONS(982), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19674] = 3, - ACTIONS(3), 1, + [90544] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1028), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 4, + ACTIONS(1030), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19770] = 3, - ACTIONS(3), 1, + [90593] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1497), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 5, + ACTIONS(1042), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1404), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19866] = 5, - ACTIONS(3), 1, + [90642] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1622), 1, - sym_concat, - STATE(432), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(980), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(982), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [90691] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1004), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [19918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 4, + ACTIONS(1006), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [19966] = 3, - ACTIONS(3), 1, + [90740] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1036), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20014] = 3, - ACTIONS(3), 1, + [90789] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(984), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 5, + ACTIONS(986), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1408), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20110] = 3, - ACTIONS(3), 1, + [90838] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, + ACTIONS(5315), 1, + aux_sym_concatenation_token1, + ACTIONS(5317), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + STATE(1810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20158] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - sym_concat, - STATE(442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1680), 2, + ACTIONS(962), 24, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [20210] = 3, - ACTIONS(3), 1, + [90893] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 5, - sym_file_descriptor, + STATE(1810), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5319), 2, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1481), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + aux_sym_concatenation_token1, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20258] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(561), 1, - anon_sym_BQUOTE, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1682), 1, - anon_sym_LF, - ACTIONS(1353), 2, + ACTIONS(968), 24, sym_file_descriptor, - sym_variable_name, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1670), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1672), 2, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - ACTIONS(1684), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 22, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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_DOLLAR, - sym_special_character, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20322] = 3, - ACTIONS(3), 1, + [90946] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1032), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1034), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20370] = 3, - ACTIONS(3), 1, + [90995] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1412), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1028), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20418] = 3, - ACTIONS(3), 1, + [91044] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1451), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1000), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1002), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [91093] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20466] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1353), 1, - sym_variable_name, - ACTIONS(1355), 2, + ACTIONS(994), 27, sym_file_descriptor, - anon_sym_LF, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1339), 14, - anon_sym_DOLLAR, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(1357), 19, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + sym_semgrep_metavariable, + [91142] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [20520] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1373), 1, - anon_sym_LF, - ACTIONS(1353), 2, + sym_word, + ACTIONS(994), 27, sym_file_descriptor, - sym_variable_name, - ACTIONS(1670), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 8, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - ACTIONS(1339), 23, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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_DOLLAR, - sym_special_character, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20576] = 5, - ACTIONS(3), 1, + [91191] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1614), 1, + ACTIONS(5313), 1, + aux_sym_concatenation_token1, + ACTIONS(5322), 1, sym_concat, - STATE(442), 1, + STATE(1825), 1, aux_sym_concatenation_repeat1, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(960), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [20628] = 3, - ACTIONS(3), 1, + [91246] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1455), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3834), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [20676] = 3, - ACTIONS(3), 1, + [91295] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(992), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(994), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [91344] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 4, + ACTIONS(1042), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20772] = 3, - ACTIONS(3), 1, + [91393] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3407), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4568), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4570), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(3422), 19, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [20820] = 3, - ACTIONS(3), 1, + [91446] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1459), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1008), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(1010), 27, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20916] = 3, - ACTIONS(3), 1, + [91495] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1008), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [20964] = 3, - ACTIONS(3), 1, + [91544] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1540), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21012] = 3, - ACTIONS(3), 1, + [91593] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1465), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(984), 14, aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21060] = 6, - ACTIONS(3), 1, + [91642] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1612), 1, - anon_sym_LPAREN, - ACTIONS(1690), 1, - sym_concat, - STATE(604), 1, + STATE(1825), 1, aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5324), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [21114] = 3, - ACTIONS(3), 1, + [91695] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 5, - sym_file_descriptor, + STATE(1809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5315), 2, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1469), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + aux_sym_concatenation_token1, + ACTIONS(976), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21162] = 3, - ACTIONS(3), 1, + [91748] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(976), 15, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + sym_special_character, + ACTIONS(978), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [91801] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21210] = 3, - ACTIONS(3), 1, + [91850] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1473), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(4394), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4396), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [21258] = 3, - ACTIONS(3), 1, + [91899] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1618), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1616), 37, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(3730), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3732), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [21306] = 3, - ACTIONS(3), 1, + [91948] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1477), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1024), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21354] = 3, - ACTIONS(3), 1, + [91997] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1396), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(996), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(998), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92046] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(899), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 15, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + sym_special_character, + ACTIONS(978), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [92099] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1034), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92148] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21402] = 6, - ACTIONS(3), 1, + [92197] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1692), 1, - anon_sym_LPAREN, - ACTIONS(1694), 1, - sym_concat, - STATE(776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1608), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3588), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [21455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1696), 1, - sym_special_character, - STATE(628), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, + ACTIONS(3590), 29, sym_file_descriptor, sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [21506] = 5, - ACTIONS(3), 1, + [92246] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1696), 1, - sym_special_character, - STATE(628), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(1809), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5315), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4079), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21557] = 5, - ACTIONS(3), 1, + [92299] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1698), 1, - sym_concat, - STATE(525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1377), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1028), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1030), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92348] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1816), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5313), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21608] = 5, - ACTIONS(3), 1, + [92401] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1700), 1, - sym_concat, - STATE(525), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21659] = 5, - ACTIONS(3), 1, + [92450] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1703), 1, - sym_concat, - STATE(524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1359), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1739), 12, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 29, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [21710] = 3, - ACTIONS(3), 1, + [92499] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1618), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1616), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(966), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(968), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92548] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1004), 14, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21757] = 5, - ACTIONS(3), 1, + [92597] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1705), 1, - sym_special_character, - STATE(547), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1014), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92646] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3834), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [21808] = 22, - ACTIONS(57), 1, + [92695] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(175), 1, - anon_sym_DOLLAR, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(185), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(193), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - ACTIONS(1707), 1, - sym_special_character, - STATE(194), 1, - sym_command_name, - STATE(528), 1, - aux_sym_for_statement_repeat1, - STATE(726), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(189), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, + ACTIONS(1016), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(181), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(39), 5, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(481), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [21893] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1709), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1018), 27, sym_concat, - STATE(531), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1377), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92744] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21944] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1711), 1, - sym_concat, - STATE(531), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, + ACTIONS(998), 27, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [21995] = 5, - ACTIONS(3), 1, + [92793] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1714), 1, - sym_special_character, - STATE(581), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1040), 14, anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1042), 27, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [92842] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 14, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(998), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [22046] = 5, - ACTIONS(3), 1, + [92891] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1716), 1, - sym_concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1359), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(4670), 14, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4672), 27, + sym_file_descriptor, + sym_test_operator, + sym_bare_dollar, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [22097] = 3, - ACTIONS(3), 1, + [92940] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1044), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 3, + ACTIONS(1046), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1396), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22191] = 3, - ACTIONS(3), 1, + [92989] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22238] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 3, + ACTIONS(968), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1400), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22285] = 3, - ACTIONS(3), 1, + [93038] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1048), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22332] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 3, + ACTIONS(1050), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1408), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22379] = 3, - ACTIONS(3), 1, + [93087] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1000), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 3, + ACTIONS(1002), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1416), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22473] = 3, - ACTIONS(3), 1, + [93136] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(988), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1426), 3, + ACTIONS(990), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1424), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22567] = 3, - ACTIONS(3), 1, + [93185] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 14, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [22614] = 3, - ACTIONS(3), 1, + [93234] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1012), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [22661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1430), 3, + ACTIONS(1014), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1428), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22708] = 5, - ACTIONS(3), 1, + [93283] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1718), 1, - sym_special_character, - STATE(547), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1020), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22759] = 3, - ACTIONS(3), 1, + [93332] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 14, aux_sym_for_statement_token1, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [22806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 3, + ACTIONS(1046), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1400), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [22853] = 3, - ACTIONS(3), 1, + [93381] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1032), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [22900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1445), 3, + ACTIONS(1034), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1443), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22947] = 3, - ACTIONS(3), 1, + [93429] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, + STATE(1937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5327), 2, sym_concat, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(976), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(978), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [22994] = 3, - ACTIONS(3), 1, + [93481] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 3, + ACTIONS(968), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1404), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [23088] = 3, - ACTIONS(3), 1, + [93529] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(996), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(998), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [23135] = 3, - ACTIONS(3), 1, + [93577] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1000), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [23182] = 3, - ACTIONS(3), 1, + [93625] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(992), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23229] = 3, - ACTIONS(3), 1, + [93673] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(988), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23276] = 3, - ACTIONS(3), 1, + [93721] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(984), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23323] = 3, - ACTIONS(3), 1, + [93769] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1004), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23370] = 3, - ACTIONS(3), 1, + [93817] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1014), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [93865] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1042), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [93913] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1022), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [93961] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1038), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94009] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1026), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94057] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 3, + ACTIONS(1010), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1469), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23464] = 3, - ACTIONS(3), 1, + [94105] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1016), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 3, + ACTIONS(1018), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1477), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23558] = 3, - ACTIONS(3), 1, + [94153] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23605] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94201] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1044), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1046), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94249] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23652] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 26, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94297] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [94349] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 3, + ACTIONS(982), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1493), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23746] = 3, - ACTIONS(3), 1, + [94397] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5329), 1, + sym_special_character, + STATE(1913), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 24, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [94449] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 3, + ACTIONS(1030), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1501), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23840] = 3, - ACTIONS(3), 1, + [94497] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(5331), 1, + sym_special_character, + STATE(1926), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 3, + ACTIONS(4079), 26, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [23934] = 3, - ACTIONS(3), 1, + [94549] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 3, - sym_file_descriptor, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(5333), 1, sym_concat, - anon_sym_LF, - ACTIONS(1513), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(962), 23, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [94603] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [23981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 3, + ACTIONS(1014), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1517), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [24028] = 5, - ACTIONS(3), 1, + [94651] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1705), 1, - sym_special_character, - STATE(547), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1040), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [24079] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1705), 1, - sym_special_character, - STATE(547), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1688), 2, + ACTIONS(1042), 27, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [24130] = 3, - ACTIONS(3), 1, + [94699] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1020), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 3, + ACTIONS(1022), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1420), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24224] = 3, - ACTIONS(3), 1, + [94747] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1036), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1430), 3, + ACTIONS(1038), 27, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1428), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24318] = 5, - ACTIONS(3), 1, + [94795] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1721), 1, + ACTIONS(5335), 1, sym_special_character, - STATE(581), 1, + STATE(1889), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1054), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1056), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [94847] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24369] = 3, - ACTIONS(3), 1, + [94895] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 3, - sym_file_descriptor, + STATE(1891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5338), 2, sym_concat, - anon_sym_LF, - ACTIONS(1439), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + ACTIONS(966), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(968), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [94947] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24416] = 3, - ACTIONS(3), 1, + [94995] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1044), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1046), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24463] = 3, - ACTIONS(3), 1, + [95043] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1048), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 27, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24510] = 3, - ACTIONS(3), 1, + [95091] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, + STATE(1937), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5327), 2, sym_concat, - anon_sym_LF, - ACTIONS(1447), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(4077), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4079), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24557] = 3, - ACTIONS(3), 1, + [95143] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5345), 1, + sym_extglob_pattern, + ACTIONS(5341), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5343), 25, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [95193] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(915), 1, + sym_concat, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95249] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5349), 1, + sym_concat, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95305] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5351), 1, + sym_special_character, + STATE(1899), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 13, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [24604] = 3, - ACTIONS(3), 1, + [95357] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, + STATE(1900), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5354), 2, sym_concat, - anon_sym_LF, - ACTIONS(1455), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + aux_sym_concatenation_token1, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1461), 3, + ACTIONS(968), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24698] = 3, - ACTIONS(3), 1, + [95409] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5357), 1, sym_concat, - anon_sym_LF, - ACTIONS(1540), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95465] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5347), 1, + sym_special_character, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95517] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(1914), 1, + aux_sym_concatenation_repeat1, + ACTIONS(899), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95569] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(909), 1, + anon_sym_RBRACK, + ACTIONS(911), 1, + sym_concat, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24745] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95625] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, + ACTIONS(909), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5359), 1, sym_concat, - anon_sym_LF, - ACTIONS(1465), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95681] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(905), 1, + sym_concat, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95737] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5361), 1, + sym_concat, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95793] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5363), 1, + sym_special_character, + STATE(1899), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4338), 13, + aux_sym_for_statement_token1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4340), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavariable, - [24792] = 3, - ACTIONS(3), 1, + [95845] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(919), 1, + anon_sym_RBRACK, + ACTIONS(921), 1, sym_concat, - anon_sym_LF, - ACTIONS(1469), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95901] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(919), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5365), 1, + sym_concat, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [95957] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_LT_LT_LT, + ACTIONS(5386), 1, + sym_file_descriptor, + ACTIONS(5389), 1, + sym_variable_name, + STATE(5277), 1, + sym_subscript, + ACTIONS(5375), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5383), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(1911), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(2621), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(5372), 3, anon_sym_GT_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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5367), 5, anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5369), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5381), 15, + sym_test_operator, + sym_brace_start, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24839] = 3, - ACTIONS(3), 1, + [96025] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 3, - sym_file_descriptor, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(939), 1, sym_concat, - anon_sym_LF, - ACTIONS(1473), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96081] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5392), 1, + sym_special_character, + STATE(1913), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1056), 24, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [96133] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(5395), 1, + sym_concat, + STATE(1891), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(962), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96187] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 3, + ACTIONS(998), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1477), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24933] = 3, - ACTIONS(3), 1, + [96235] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(966), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [24980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 3, + ACTIONS(968), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1485), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25027] = 3, - ACTIONS(3), 1, + [96283] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(1000), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 3, + ACTIONS(1002), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1493), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25121] = 3, - ACTIONS(3), 1, + [96331] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(992), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25168] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 3, + ACTIONS(994), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1501), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25215] = 3, - ACTIONS(3), 1, + [96379] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(988), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1716), 1, - sym_concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 3, + ACTIONS(990), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [25313] = 3, - ACTIONS(3), 1, + [96427] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, + ACTIONS(984), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 3, + ACTIONS(986), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1517), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25407] = 5, - ACTIONS(3), 1, + [96475] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1724), 1, - sym_concat, - STATE(605), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1004), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [25458] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1726), 1, - sym_concat, - STATE(605), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, + ACTIONS(1006), 26, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [25509] = 5, - ACTIONS(3), 1, + [96523] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1690), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(5347), 1, + sym_special_character, + ACTIONS(5397), 1, sym_concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1889), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [96579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [25560] = 22, - ACTIONS(57), 1, - sym_comment, - ACTIONS(65), 1, + ACTIONS(1010), 26, sym_file_descriptor, - ACTIONS(321), 1, - anon_sym_DOLLAR, - ACTIONS(325), 1, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - ACTIONS(329), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(333), 1, - anon_sym_BQUOTE, - ACTIONS(337), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(339), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - ACTIONS(1729), 1, - sym_special_character, - STATE(215), 1, - sym_command_name, - STATE(734), 1, - aux_sym_for_statement_repeat1, - STATE(922), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(335), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [96627] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 14, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - ACTIONS(327), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(606), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [25645] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - sym_concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, + anon_sym_DOLLAR, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 26, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [25696] = 5, - ACTIONS(3), 1, + [96675] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1731), 1, - sym_concat, - STATE(610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1016), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25747] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - sym_concat, - STATE(610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, + ACTIONS(1018), 26, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25798] = 3, - ACTIONS(3), 1, + [96723] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5399), 1, + sym_special_character, + STATE(1926), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 26, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [25845] = 5, - ACTIONS(3), 1, + [96775] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1736), 1, - sym_concat, - STATE(609), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1020), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [25896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 4, + ACTIONS(1022), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [25943] = 3, - ACTIONS(3), 1, + [96823] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1024), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [25990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 4, + ACTIONS(1026), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26037] = 3, - ACTIONS(3), 1, + [96871] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(980), 14, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 4, + ACTIONS(982), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26131] = 3, - ACTIONS(3), 1, + [96919] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1032), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 4, + ACTIONS(1034), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26225] = 5, - ACTIONS(3), 1, + [96967] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1690), 1, - sym_concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1028), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [26276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1365), 4, + ACTIONS(1030), 26, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26323] = 5, - ACTIONS(3), 1, + [97015] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1736), 1, - sym_concat, - STATE(609), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1040), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [26374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 4, + ACTIONS(1042), 26, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1582), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26421] = 3, - ACTIONS(3), 1, + [97063] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1036), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 4, + ACTIONS(1038), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26515] = 3, - ACTIONS(3), 1, + [97111] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1430), 4, + ACTIONS(1050), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26609] = 5, - ACTIONS(3), 1, + [97159] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1738), 1, - sym_special_character, - STATE(628), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + sym_special_character, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 4, + ACTIONS(1046), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26707] = 3, - ACTIONS(3), 1, + [97207] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 14, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, + ACTIONS(1050), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26801] = 3, - ACTIONS(3), 1, + [97255] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, + ACTIONS(5327), 1, + aux_sym_concatenation_token1, + ACTIONS(5402), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(1900), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 24, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26848] = 3, - ACTIONS(3), 1, + [97309] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, + ACTIONS(899), 1, + aux_sym_concatenation_token1, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(925), 1, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(1884), 1, + aux_sym_concatenation_repeat1, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [97365] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(998), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26895] = 3, - ACTIONS(3), 1, + [97412] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1046), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26942] = 3, - ACTIONS(3), 1, + [97459] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [26989] = 3, - ACTIONS(3), 1, + [97506] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5406), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [97553] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5406), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [97600] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(966), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(968), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97647] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1000), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1002), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97694] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(994), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97741] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(988), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(990), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97788] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(984), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(986), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97835] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1004), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1006), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97882] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1010), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97929] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1014), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [97976] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1018), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98023] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5408), 1, + sym_special_character, + STATE(1953), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27271] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1056), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [98074] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1020), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1022), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98121] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1026), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98168] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(982), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98215] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5411), 1, + sym_special_character, + STATE(1980), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 4, + ACTIONS(4079), 25, sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27506] = 3, - ACTIONS(3), 1, + [98266] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1032), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1034), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98313] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1030), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98360] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1042), 25, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98407] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27694] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1038), 25, sym_concat, - STATE(604), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98454] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1050), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98501] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [27745] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98548] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1588), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1586), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1050), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [98595] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27792] = 22, - ACTIONS(57), 1, - sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(105), 1, anon_sym_DOLLAR, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - ACTIONS(1741), 1, - sym_special_character, - STATE(251), 1, - sym_command_name, - STATE(962), 1, - aux_sym_for_statement_repeat1, - STATE(1004), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(119), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(111), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(824), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [27877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, + ACTIONS(994), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27924] = 3, - ACTIONS(3), 1, + [98642] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5413), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5415), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [98689] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(984), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [27971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 3, + ACTIONS(986), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28018] = 3, - ACTIONS(3), 1, + [98736] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1588), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5421), 1, + anon_sym_LBRACK, + ACTIONS(5417), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(5419), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [98785] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(982), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [98832] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5261), 1, + anon_sym_esac, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, + sym_semgrep_named_ellipsis, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5613), 1, + sym_last_case_item, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2111), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [98925] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, + anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28065] = 5, - ACTIONS(3), 1, + ACTIONS(5445), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5799), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2112), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [99018] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1703), 1, - sym_concat, - STATE(524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1032), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1034), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28116] = 3, - ACTIONS(3), 1, + [99065] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1028), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28163] = 3, - ACTIONS(3), 1, + [99112] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [99159] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5451), 1, + sym_concat, + ACTIONS(5447), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_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, + ACTIONS(5449), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [99208] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5279), 1, + anon_sym_esac, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, + sym_semgrep_named_ellipsis, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5639), 1, + sym_last_case_item, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [99301] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28210] = 22, - ACTIONS(41), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(45), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(49), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(51), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(53), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(57), 1, - sym_comment, - ACTIONS(59), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(61), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(1091), 1, - sym_variable_name, - ACTIONS(1743), 1, - sym_special_character, - STATE(222), 1, - sym_command_name, - STATE(954), 1, + ACTIONS(5453), 1, + anon_sym_esac, + STATE(4909), 1, aux_sym_for_statement_repeat1, - STATE(1000), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(55), 2, + STATE(5737), 1, + sym_last_case_item, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(47), 3, + STATE(2116), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(829), 7, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [28295] = 6, - ACTIONS(3), 1, + [99394] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1745), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - sym_concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5455), 1, + sym_special_character, + STATE(1991), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 23, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [99445] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5457), 1, + sym_special_character, + STATE(1953), 1, + aux_sym_for_statement_repeat1, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [99496] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5459), 1, + sym_special_character, + STATE(1980), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [28348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1584), 3, + ACTIONS(1056), 25, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [99547] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5241), 1, + anon_sym_esac, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, + anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28395] = 22, - ACTIONS(57), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5575), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2118), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [99640] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(65), 1, - sym_file_descriptor, - ACTIONS(105), 1, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(109), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(113), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(1091), 1, - sym_variable_name, - ACTIONS(1741), 1, - sym_special_character, - STATE(236), 1, - sym_command_name, - STATE(962), 1, + ACTIONS(5462), 1, + anon_sym_esac, + STATE(4909), 1, aux_sym_for_statement_repeat1, - STATE(1004), 1, - sym_concatenation, - STATE(3520), 1, - sym_subscript, - ACTIONS(119), 2, + STATE(5642), 1, + sym_last_case_item, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1089), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(37), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(111), 3, + STATE(2119), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(39), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(824), 7, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [28480] = 3, - ACTIONS(3), 1, + [99733] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1618), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1616), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(1008), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28527] = 3, - ACTIONS(3), 1, + [99780] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1588), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(1000), 13, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28574] = 5, - ACTIONS(3), 1, + [99827] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1716), 1, - sym_concat, - STATE(530), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1016), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1018), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28625] = 5, - ACTIONS(3), 1, + [99874] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1703), 1, + ACTIONS(5464), 1, + sym_extglob_pattern, + ACTIONS(5341), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5343), 24, sym_concat, - STATE(524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1365), 4, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [99923] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1014), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [99970] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1042), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100017] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1022), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100064] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5466), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5470), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [100113] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5472), 1, + sym_special_character, + STATE(1991), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1056), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100164] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5475), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5477), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [100211] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 1, + aux_sym_for_statement_token1, + ACTIONS(5483), 1, + anon_sym_DQUOTE, + STATE(3186), 1, + sym_orig_simple_variable_name, + STATE(3195), 1, + sym_string, + ACTIONS(943), 4, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 33, + aux_sym_statements_token1, + ACTIONS(5481), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [28676] = 3, + [100268] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1038), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 3, + ACTIONS(5485), 1, + aux_sym_for_statement_token1, + ACTIONS(5489), 1, + anon_sym_DQUOTE, + STATE(3172), 1, + sym_string, + STATE(3215), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 36, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(5487), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 24, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [100372] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1026), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100419] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [28723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 5, + ACTIONS(1014), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1469), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28769] = 3, - ACTIONS(3), 1, + [100466] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1505), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1040), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 4, + ACTIONS(1042), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1509), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28861] = 3, - ACTIONS(3), 1, + [100513] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1513), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1020), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28907] = 3, - ACTIONS(3), 1, + [100560] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1517), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1036), 13, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [28953] = 5, - ACTIONS(3), 1, + [100607] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1749), 1, + ACTIONS(5491), 1, sym_special_character, - STATE(675), 1, + STATE(2001), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1432), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1054), 12, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [100658] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5247), 1, + anon_sym_esac, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, + anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29003] = 5, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5768), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2167), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [100751] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1752), 1, + ACTIONS(5498), 1, sym_concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1359), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5494), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5496), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [100800] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1050), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100847] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1046), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100894] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1050), 25, + sym_concat, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [100941] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [29053] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1337), 3, + ACTIONS(1026), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29099] = 3, - ACTIONS(3), 1, + [100988] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29145] = 3, - ACTIONS(3), 1, + ACTIONS(5500), 1, + anon_sym_esac, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5940), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2026), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [101081] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1584), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5502), 1, + sym_special_character, + STATE(2001), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4079), 25, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29191] = 5, - ACTIONS(3), 1, + [101132] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1754), 1, - sym_concat, - STATE(711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(996), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(998), 25, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [101179] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1004), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [29241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 3, + ACTIONS(1006), 26, sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29287] = 3, - ACTIONS(3), 1, + [101226] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1392), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 5, + ACTIONS(968), 26, sym_file_descriptor, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1396), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29379] = 3, - ACTIONS(3), 1, + [101273] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 13, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29425] = 3, - ACTIONS(3), 1, + [101320] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1400), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5504), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(5506), 25, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101367] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(988), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 26, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29471] = 3, + [101414] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5510), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + STATE(5183), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [101496] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1010), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 5, + ACTIONS(5546), 1, + aux_sym_for_statement_token1, + ACTIONS(5550), 1, + anon_sym_DQUOTE, + STATE(3258), 1, + sym_string, + STATE(3275), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 3, sym_file_descriptor, - sym_concat, sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1404), 33, + aux_sym_statements_token1, + ACTIONS(5548), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [29517] = 3, - ACTIONS(3), 1, + [101598] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1408), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1050), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [101644] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5552), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 11, + 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [29563] = 3, - ACTIONS(3), 1, + [101694] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1412), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5557), 1, + anon_sym_EQ, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5555), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101766] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1026), 24, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101812] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5447), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5449), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101858] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(982), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [101904] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5559), 1, + anon_sym_RPAREN_RPAREN, + STATE(5100), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [101986] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29609] = 3, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5636), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [102076] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_RBRACK, + ACTIONS(5359), 1, + sym_concat, + ACTIONS(246), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102126] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5561), 1, + sym_extglob_pattern, + ACTIONS(5341), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5343), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1416), 33, + ACTIONS(5565), 1, + aux_sym_statements_token1, + ACTIONS(5567), 1, + anon_sym_EQ, + ACTIONS(5563), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29655] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [102222] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1420), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5504), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5506), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102268] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5569), 1, + anon_sym_RPAREN_RPAREN, + STATE(5120), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29701] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [102350] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1424), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29747] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102396] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 5, - sym_file_descriptor, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(5361), 1, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1428), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29793] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102446] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1756), 1, - sym_special_character, - STATE(693), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1432), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [102502] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5575), 1, + anon_sym_RPAREN_RPAREN, + STATE(5117), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29843] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [102584] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1439), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5577), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5579), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [102630] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29889] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 22, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102686] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 5, - sym_file_descriptor, + ACTIONS(919), 1, + anon_sym_RBRACK, + ACTIONS(5365), 1, sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1443), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29935] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102736] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(1014), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [102782] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1739), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [29981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 5, + ACTIONS(1741), 24, sym_file_descriptor, - sym_concat, sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [30027] = 3, - ACTIONS(3), 1, + [102832] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1451), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5593), 1, + anon_sym_RPAREN_RPAREN, + STATE(5193), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [102914] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30073] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 5, + ACTIONS(3836), 24, sym_file_descriptor, - sym_concat, sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1455), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [30119] = 3, - ACTIONS(3), 1, + [102964] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1459), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5595), 1, + anon_sym_RPAREN_RPAREN, + STATE(5264), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103046] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5597), 1, + anon_sym_RPAREN_RPAREN, + STATE(5122), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30165] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103128] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5599), 1, + anon_sym_RPAREN_RPAREN, + STATE(5227), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103210] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5601), 1, + anon_sym_RPAREN_RPAREN, + STATE(5083), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103292] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5603), 1, + anon_sym_RPAREN_RPAREN, + STATE(5110), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103374] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5605), 1, + anon_sym_RPAREN_RPAREN, + STATE(5137), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103456] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1540), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1032), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1034), 24, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [103502] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5607), 1, + anon_sym_RPAREN_RPAREN, + STATE(5166), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103584] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5609), 1, + anon_sym_RPAREN_RPAREN, + STATE(5188), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30211] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103666] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1465), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1028), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1030), 24, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [103712] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5611), 1, + anon_sym_RPAREN_RPAREN, + STATE(5206), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103794] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5613), 1, + anon_sym_RPAREN_RPAREN, + STATE(5231), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30257] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1473), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [103876] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(5406), 17, + sym_concat, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [103940] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5623), 1, + anon_sym_RPAREN_RPAREN, + STATE(5254), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104022] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5625), 1, + anon_sym_RPAREN_RPAREN, + STATE(5159), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30303] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104104] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1477), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30349] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1014), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [104150] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1481), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5627), 1, + anon_sym_RPAREN_RPAREN, + STATE(5195), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30395] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104232] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1485), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1016), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30441] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1018), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [104278] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1489), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5629), 1, + anon_sym_RPAREN_RPAREN, + STATE(5098), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30487] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104360] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1040), 14, anon_sym_AMP, - anon_sym_esac, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1042), 24, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [104406] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5631), 1, + anon_sym_RPAREN_RPAREN, + STATE(5149), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [30533] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104488] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1493), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5633), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30579] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5635), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [104534] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1694), 1, - sym_concat, - STATE(776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1688), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1686), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5637), 1, + anon_sym_RPAREN_RPAREN, + STATE(5185), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104616] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5639), 1, + anon_sym_RPAREN_RPAREN, + STATE(5212), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [30629] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104698] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1759), 1, - sym_concat, - STATE(711), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, anon_sym_AMP_AMP, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5651), 1, + anon_sym_QMARK, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 14, + sym_concat, + 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_RBRACK, + anon_sym_EQ_TILDE, + [104774] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5653), 1, + anon_sym_RPAREN_RPAREN, + STATE(5244), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104856] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5655), 1, + anon_sym_RPAREN_RPAREN, + STATE(5067), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [104938] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5657), 1, + anon_sym_RPAREN_RPAREN, + STATE(5079), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105020] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5659), 1, + anon_sym_RPAREN_RPAREN, + STATE(5087), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105102] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5661), 1, + anon_sym_RPAREN_RPAREN, + STATE(5097), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [30679] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1752), 1, - sym_concat, - STATE(835), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1676), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1674), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105184] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5663), 1, + anon_sym_RPAREN_RPAREN, + STATE(5107), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [30729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105266] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5665), 1, + anon_sym_RPAREN_RPAREN, + STATE(5115), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [30775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1694), 1, - sym_concat, - STATE(776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1359), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105348] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5667), 1, + anon_sym_RPAREN_RPAREN, + STATE(5125), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [30825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1497), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105430] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5669), 1, + anon_sym_RPAREN_RPAREN, + STATE(5133), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1501), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105512] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5671), 1, + anon_sym_RPAREN_RPAREN, + STATE(5147), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30917] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1505), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105594] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5673), 1, + anon_sym_RPAREN_RPAREN, + STATE(5155), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [30963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1509), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105676] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5675), 1, + anon_sym_RPAREN_RPAREN, + STATE(5163), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [31009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1513), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105758] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5677), 1, + anon_sym_RPAREN_RPAREN, + STATE(5172), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [31055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1519), 5, - sym_file_descriptor, - sym_concat, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1517), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105840] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5679), 1, + anon_sym_RPAREN_RPAREN, + STATE(5177), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [31101] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - sym_concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [105922] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5681), 1, + anon_sym_RPAREN_RPAREN, + STATE(5187), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31151] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - sym_concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106004] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5683), 1, + anon_sym_RPAREN_RPAREN, + STATE(5197), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [31201] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - sym_concat, - STATE(723), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106086] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5685), 1, + anon_sym_RPAREN_RPAREN, + STATE(5202), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [31251] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - sym_concat, - STATE(724), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106168] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5687), 1, + anon_sym_RPAREN_RPAREN, + STATE(5211), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31301] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - sym_concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106250] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5689), 1, + anon_sym_RPAREN_RPAREN, + STATE(5223), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106332] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5691), 1, + anon_sym_RPAREN_RPAREN, + STATE(5229), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106414] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5693), 1, + anon_sym_RPAREN_RPAREN, + STATE(5239), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106496] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1743), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 3, + ACTIONS(1745), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [31489] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [106546] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5695), 1, + anon_sym_RPAREN_RPAREN, + STATE(5246), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1402), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106628] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5697), 1, + anon_sym_RPAREN_RPAREN, + STATE(5064), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106710] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5699), 1, + anon_sym_RPAREN_RPAREN, + STATE(5271), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106792] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5701), 1, + anon_sym_RPAREN_RPAREN, + STATE(5180), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [106874] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3846), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 3, + ACTIONS(3848), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [31673] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [106924] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, + anon_sym_RPAREN_RPAREN, + STATE(5076), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107006] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5705), 1, + anon_sym_RPAREN_RPAREN, + STATE(5151), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31719] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1770), 1, - sym_special_character, - STATE(742), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107088] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5707), 1, + anon_sym_RPAREN_RPAREN, + STATE(5218), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107170] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5709), 1, + anon_sym_RPAREN_RPAREN, + STATE(5085), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1774), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1772), 36, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107252] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5711), 1, + anon_sym_RPAREN_RPAREN, + STATE(5108), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107334] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5713), 1, + anon_sym_RPAREN_RPAREN, + STATE(5134), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [31815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107416] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5715), 1, + anon_sym_RPAREN_RPAREN, + STATE(5153), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107498] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5717), 1, + anon_sym_RPAREN_RPAREN, + STATE(5175), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31861] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [107580] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1044), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31907] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [107626] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 3, - sym_file_descriptor, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(5357), 1, sym_concat, - anon_sym_LF, - ACTIONS(1424), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [107676] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, + anon_sym_AMP, + ACTIONS(5643), 1, anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, + anon_sym_AMP_AMP, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5651), 1, + anon_sym_QMARK, + ACTIONS(5719), 1, + anon_sym_EQ, + ACTIONS(5721), 1, anon_sym_EQ_TILDE, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [31953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 13, sym_concat, - anon_sym_LF, - ACTIONS(1392), 35, - anon_sym_SEMI, - anon_sym_SEMI_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_RBRACK, + [107754] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5413), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [31999] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5415), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [107800] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 3, - sym_file_descriptor, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, + anon_sym_AMP, + ACTIONS(5643), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, + anon_sym_AMP_AMP, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5725), 15, sym_concat, - anon_sym_LF, - ACTIONS(1396), 35, - anon_sym_SEMI, - anon_sym_SEMI_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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [107874] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(5645), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 16, + sym_concat, + 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_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [107946] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32045] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5613), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108036] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, anon_sym_AMP, + ACTIONS(5647), 1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 17, + sym_concat, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [108106] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, + sym_semgrep_named_ellipsis, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5799), 1, + sym_last_case_item, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108196] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, + anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - [32091] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1776), 1, - sym_special_character, - STATE(742), 1, + STATE(4909), 1, aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + STATE(5875), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108286] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, anon_sym_AMP, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5404), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 17, + sym_concat, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [108354] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, + sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - [32141] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5639), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108444] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32187] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5737), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108534] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32233] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5769), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108624] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - [32279] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5575), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108714] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - [32325] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5642), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108804] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - [32371] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5713), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [108894] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, anon_sym_AMP, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5404), 3, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 17, + sym_concat, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_QMARK, + [108960] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3588), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32417] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 3, + ACTIONS(3590), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32463] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [109010] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 3, - sym_file_descriptor, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5617), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5619), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5406), 19, sym_concat, - anon_sym_LF, - ACTIONS(1408), 35, - anon_sym_SEMI, - anon_sym_SEMI_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [109072] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5406), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [109118] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5727), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5729), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109164] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109226] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3730), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 3, + ACTIONS(3732), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [32555] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [109276] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5731), 1, + anon_sym_EQ, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_TILDE, + anon_sym_COLON, + [109350] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32601] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_COLON, + [109426] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(5522), 1, anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_EQ, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109496] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 1, + anon_sym_EQ, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32647] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109564] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5731), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109630] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32693] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109694] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5733), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109754] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109810] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 8, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32739] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109864] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 10, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32785] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [109916] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 21, + sym_concat, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [109974] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32831] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110024] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1020), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32877] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1022), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110070] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1036), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1038), 24, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110116] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5735), 1, + sym_special_character, + STATE(2160), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 12, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [32923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 3, + ACTIONS(4079), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [32969] = 3, - ACTIONS(3), 1, + [110166] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_concat, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110224] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33015] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110270] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1501), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1044), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [33061] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110316] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 22, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110372] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33107] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1042), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110418] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 8, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33153] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 3, - sym_file_descriptor, + anon_sym_GT_GT, + ACTIONS(5406), 22, sym_concat, - anon_sym_LF, - ACTIONS(1501), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110472] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33199] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110518] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 10, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 3, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 22, sym_concat, - anon_sym_LF, - ACTIONS(1509), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110570] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33291] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5733), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [110618] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33337] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 22, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110668] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 3, - sym_file_descriptor, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(5397), 1, sym_concat, - anon_sym_LF, - ACTIONS(1517), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33383] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110718] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1392), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [33429] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 22, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110768] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1779), 1, - sym_special_character, - STATE(781), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5406), 24, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1396), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110814] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5466), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [33525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5470), 22, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [110862] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5737), 1, + anon_sym_RPAREN_RPAREN, + STATE(5116), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [110944] = 25, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [33571] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5768), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [111034] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1400), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5581), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 22, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5739), 1, + aux_sym_concatenation_token1, + ACTIONS(5741), 1, + sym_concat, + STATE(2163), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 31, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55603,218 +165354,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [33617] = 5, - ACTIONS(3), 1, + [111142] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1770), 1, + ACTIONS(5743), 1, sym_special_character, - STATE(742), 1, + STATE(2160), 1, aux_sym_for_statement_repeat1, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1054), 12, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [33667] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1781), 1, - sym_concat, - STATE(724), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, + ACTIONS(1056), 24, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1377), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [33717] = 3, - ACTIONS(3), 1, + [111192] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 3, - sym_file_descriptor, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(5349), 1, sym_concat, - anon_sym_LF, - ACTIONS(1416), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 22, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111242] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 3, + ACTIONS(978), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33809] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [111292] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 3, - sym_file_descriptor, + ACTIONS(5746), 1, + aux_sym_concatenation_token1, + ACTIONS(5749), 1, sym_concat, - anon_sym_LF, - ACTIONS(1424), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + STATE(2163), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 31, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -55823,258 +165535,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33855] = 3, - ACTIONS(3), 1, + [111344] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33901] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5573), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [111392] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1783), 1, - sym_special_character, - STATE(781), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [111448] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5591), 1, + aux_sym_concatenation_token1, + ACTIONS(5752), 1, + sym_concat, + STATE(2020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 3, + ACTIONS(962), 24, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [33997] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [111500] = 25, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5185), 1, + sym_word, + ACTIONS(5199), 1, anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, + ACTIONS(5431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(5435), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34043] = 3, - ACTIONS(3), 1, + STATE(4909), 1, + aux_sym_for_statement_repeat1, + STATE(5940), 1, + sym_last_case_item, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5139), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(5223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4860), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [111590] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5754), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5756), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [111636] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1022), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111682] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34089] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1038), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, + ACTIONS(5739), 1, + aux_sym_concatenation_token1, + ACTIONS(5758), 1, sym_concat, - anon_sym_LF, - ACTIONS(1447), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + STATE(2159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 31, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56083,84 +165913,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34135] = 3, - ACTIONS(3), 1, + [111780] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5417), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(5419), 24, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [111826] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(2166), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5591), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 11, + 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4079), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34181] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [111876] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1024), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1026), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111922] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5475), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5477), 24, + sym_concat, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [111968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5739), 1, + aux_sym_concatenation_token1, + ACTIONS(5758), 1, + sym_concat, + STATE(2159), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 31, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -56169,1205 +166133,2762 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34227] = 3, - ACTIONS(3), 1, + [112020] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1050), 24, + sym_test_operator, + sym_extglob_pattern, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [112066] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5760), 1, + anon_sym_RPAREN_RPAREN, + STATE(5070), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [112148] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5762), 1, + anon_sym_RPAREN_RPAREN, + STATE(5156), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [112230] = 26, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5764), 1, + sym_word, + ACTIONS(5766), 1, + anon_sym_LPAREN, + ACTIONS(5768), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5770), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5772), 1, anon_sym_DOLLAR, + ACTIONS(5774), 1, sym_special_character, + ACTIONS(5776), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(5784), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5786), 1, + anon_sym_RBRACE3, + ACTIONS(5788), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5790), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5792), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5796), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5798), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34273] = 3, - ACTIONS(3), 1, + ACTIONS(5800), 1, + sym_variable_name, + ACTIONS(5802), 1, + sym_test_operator, + ACTIONS(5804), 1, + sym_brace_start, + STATE(4815), 1, + sym_command_substitution, + STATE(5050), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5794), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5778), 3, + sym_expansion_word, + sym_raw_string, + sym_ansi_c_string, + STATE(4955), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(5336), 6, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym_concatenation_in_expansion, + sym_semgrep_deep_expression, + [112321] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5404), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [112388] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 11, + 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34319] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [112433] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1016), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1018), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34365] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [112478] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5830), 1, anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5834), 1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5836), 1, + anon_sym_CARET, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 17, + anon_sym_SEMI, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [112543] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34411] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [112588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 35, + ACTIONS(1050), 1, + aux_sym_statements_token1, + ACTIONS(1048), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_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, + [112633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + aux_sym_statements_token1, + ACTIONS(1044), 36, + anon_sym_SEMI, + anon_sym_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_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, + [112678] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(739), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [112757] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 1, + aux_sym_statements_token1, + ACTIONS(1048), 36, + anon_sym_SEMI, + anon_sym_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_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, + [112802] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, + anon_sym_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5882), 1, + anon_sym_RBRACK, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [112881] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1024), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 3, + ACTIONS(1026), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1477), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34503] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [112926] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5852), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34549] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [113005] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5890), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34595] = 3, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [113084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5830), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(5836), 1, + anon_sym_CARET, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 18, + anon_sym_SEMI, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + [113147] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5906), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34641] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [113226] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5908), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5910), 1, anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34687] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5725), 14, + 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_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [113299] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(246), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(646), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [113344] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 3, + ACTIONS(982), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1501), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34779] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [113389] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5908), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5910), 1, anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + anon_sym_EQ, + ACTIONS(5938), 1, + anon_sym_RPAREN, + ACTIONS(5940), 1, + anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34825] = 3, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5936), 11, + 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, + [113468] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 35, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5830), 1, + anon_sym_AMP, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 19, anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + [113529] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5944), 1, + anon_sym_LBRACK, + ACTIONS(5417), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5419), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [113576] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1515), 3, + ACTIONS(1034), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1513), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34917] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [113621] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1517), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1028), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [34963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 4, + ACTIONS(1030), 26, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1404), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [35009] = 3, + [113666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1408), 34, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 22, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [113723] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1042), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [35055] = 3, + [113768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1412), 34, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 26, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [113823] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 28, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [113876] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, + anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5978), 1, + anon_sym_COLON, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5950), 11, + 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, + [113955] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [114004] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [114061] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [114116] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [114171] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(747), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [114250] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 11, + 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [35101] = 5, - ACTIONS(3), 1, + [114295] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1786), 1, - sym_concat, - STATE(722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5852), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5982), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [114374] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(5982), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [114453] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 30, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [35151] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + [114504] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, + anon_sym_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 12, + 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_RBRACK, + [114581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1416), 34, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5826), 33, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35197] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [114630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1420), 34, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5826), 33, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35243] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [114679] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1424), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5984), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [114758] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + anon_sym_EQ, + ACTIONS(5940), 1, + anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5986), 1, + anon_sym_RPAREN, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35289] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5936), 11, + 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, + [114837] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1428), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5882), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [114916] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35335] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5406), 18, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [114977] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1770), 1, - sym_special_character, - STATE(742), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [115032] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5988), 1, + anon_sym_COLON, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5950), 11, + 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, + [115111] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [35385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1439), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5470), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [115168] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35431] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [115223] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1443), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [115278] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(755), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35477] = 3, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [115357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, + ACTIONS(1010), 5, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -57376,1265 +168897,2111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35523] = 3, + [115402] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, + ACTIONS(2353), 1, + anon_sym_DQUOTE, + ACTIONS(5990), 1, + aux_sym_for_statement_token1, + STATE(3322), 1, + sym_orig_simple_variable_name, + STATE(3331), 1, + sym_string, + ACTIONS(943), 2, sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1447), 34, + aux_sym_statements_token1, + ACTIONS(5992), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35569] = 3, - ACTIONS(3), 1, + [115457] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1451), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5852), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5994), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [115536] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(5994), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35615] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [115615] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1455), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5413), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5415), 23, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [115660] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5996), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [115739] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + anon_sym_EQ, + ACTIONS(5940), 1, + anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5998), 1, + anon_sym_RPAREN, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35661] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5936), 11, + 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, + [115818] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1788), 1, - sym_special_character, - STATE(693), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5946), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, + anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(6000), 1, + anon_sym_COLON, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5950), 11, + 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, + [115897] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(733), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35711] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [115976] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1459), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(763), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [116055] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, + anon_sym_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(6002), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [116134] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(6002), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [116213] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35757] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5725), 14, + 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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [116286] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1540), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5852), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + ACTIONS(5862), 1, anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 15, + 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_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [116357] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6004), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1465), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [116436] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(771), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35849] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1694), 1, - sym_concat, - STATE(776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1680), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1678), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [116515] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(6006), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [35899] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [116594] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1747), 1, - sym_concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(6006), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [116673] = 24, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6008), 1, + sym_word, + ACTIONS(6011), 1, + anon_sym_LPAREN, + ACTIONS(6014), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6017), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6020), 1, anon_sym_DOLLAR, + ACTIONS(6023), 1, sym_special_character, + ACTIONS(6026), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(6032), 1, + aux_sym_number_token1, + ACTIONS(6035), 1, + aux_sym_number_token2, + ACTIONS(6038), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6041), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6044), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(6047), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6053), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(6056), 1, sym_semgrep_named_ellipsis, - [35949] = 3, - ACTIONS(3), 1, + ACTIONS(6059), 1, + sym_extglob_pattern, + ACTIONS(6062), 1, + sym_brace_start, + STATE(4924), 1, + aux_sym_for_statement_repeat1, + ACTIONS(6050), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2249), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(5226), 2, + sym_concatenation, + sym_extglob_blob, + ACTIONS(6029), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4784), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [116760] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1469), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5766), 1, + anon_sym_LPAREN, + ACTIONS(5768), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5770), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5772), 1, anon_sym_DOLLAR, - sym_special_character, + ACTIONS(5776), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(5784), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5788), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5790), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5792), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5796), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5798), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [35995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, + ACTIONS(5800), 1, sym_variable_name, - anon_sym_LF, - ACTIONS(1473), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(5804), 1, + sym_brace_start, + ACTIONS(6065), 1, + sym_word, + ACTIONS(6067), 1, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(6071), 1, + anon_sym_RBRACE3, + ACTIONS(6073), 1, + sym_test_operator, + STATE(4854), 1, + sym_command_substitution, + STATE(5047), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36041] = 3, - ACTIONS(3), 1, + ACTIONS(6069), 3, + sym_expansion_word, + sym_raw_string, + sym_ansi_c_string, + STATE(4919), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(5302), 6, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym_concatenation_in_expansion, + sym_semgrep_deep_expression, + [116851] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1477), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5852), 1, anon_sym_AMP, + ACTIONS(5864), 1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36087] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [116920] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1481), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6075), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36133] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [116999] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1694), 1, - sym_concat, - STATE(776), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1610), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1608), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(779), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1485), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [117078] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(6077), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36229] = 5, - ACTIONS(3), 1, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [117157] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1786), 1, - sym_concat, - STATE(722), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(6077), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [117236] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [36279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(1050), 26, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1489), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [36325] = 5, - ACTIONS(3), 1, + [117281] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1790), 1, - sym_special_character, - STATE(675), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6079), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [117360] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36375] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1747), 1, - sym_concat, - STATE(680), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1680), 2, + ACTIONS(1046), 26, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [36425] = 5, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [117405] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1792), 1, - sym_concat, - STATE(838), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1377), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1048), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [36475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1495), 4, + ACTIONS(1050), 26, sym_file_descriptor, sym_concat, sym_variable_name, - anon_sym_LF, - ACTIONS(1493), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [36521] = 5, - ACTIONS(3), 1, + [117450] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1788), 1, - sym_special_character, - STATE(693), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(787), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36571] = 5, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [117529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1794), 1, - sym_concat, - STATE(838), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, + ACTIONS(6083), 1, + aux_sym_statements_token1, + ACTIONS(6081), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [36621] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [117574] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_LF, - ACTIONS(1497), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5852), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5854), 1, + anon_sym_EQ, + ACTIONS(5860), 1, anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5884), 1, + anon_sym_EQ_TILDE, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(6085), 1, + anon_sym_RBRACK, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36667] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5858), 11, + 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, + [117653] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1790), 1, - sym_special_character, - STATE(675), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5806), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5892), 1, + anon_sym_EQ, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(6085), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [36717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5894), 11, + 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, + [117732] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, anon_sym_AMP, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5404), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [117799] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6087), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1392), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [117878] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(709), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5508), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [36808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1416), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [117957] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5852), 1, anon_sym_AMP, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5404), 3, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118022] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6089), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36853] = 3, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [118101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 3, + ACTIONS(1018), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1400), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -58643,1090 +171010,1161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [36898] = 3, - ACTIONS(3), 1, + [118146] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5406), 18, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118207] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36943] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1422), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [36988] = 3, - ACTIONS(3), 1, + anon_sym_QMARK, + [118270] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37033] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5406), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118315] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37078] = 3, - ACTIONS(3), 1, + ACTIONS(5406), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118372] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 8, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37123] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118425] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1400), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 10, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37168] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118476] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1455), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37213] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118525] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1459), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 8, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37258] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118578] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1774), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1772), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37303] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118627] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37348] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5406), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118672] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1439), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5946), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(6091), 1, + anon_sym_COLON, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37393] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5950), 11, + 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, + [118751] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1505), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37438] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6093), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [118828] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1489), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5816), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37483] = 3, - ACTIONS(3), 1, + ACTIONS(5406), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118885] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6095), 1, + anon_sym_EQ, + ACTIONS(5563), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37528] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5565), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [118932] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 10, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1404), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [118983] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1542), 4, + ACTIONS(998), 26, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1540), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [37663] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [119028] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1443), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119077] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5852), 1, + anon_sym_AMP, + ACTIONS(5860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5886), 1, + anon_sym_QMARK, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 13, + 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_RBRACK, + anon_sym_EQ_TILDE, + [119152] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(966), 11, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1511), 4, + ACTIONS(968), 26, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1509), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37753] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [119197] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6097), 1, + anon_sym_LBRACK, + ACTIONS(5417), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5419), 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_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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119244] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1000), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37798] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1441), 3, + ACTIONS(1002), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1439), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [37843] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [119289] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(992), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 3, + ACTIONS(994), 26, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1412), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [37933] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [119334] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1465), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + ACTIONS(988), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [37978] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1588), 4, + ACTIONS(990), 26, sym_file_descriptor, + sym_concat, sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1586), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [38023] = 3, + [119379] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5852), 1, + anon_sym_AMP, + ACTIONS(5860), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5862), 1, + anon_sym_AMP_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5866), 1, + anon_sym_CARET, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5868), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5870), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5872), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5725), 14, + 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 3, + ACTIONS(1014), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1443), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59735,82 +172173,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [38068] = 3, - ACTIONS(3), 1, + [119497] = 26, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(5766), 1, + anon_sym_LPAREN, + ACTIONS(5768), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5770), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5772), 1, anon_sym_DOLLAR, - sym_special_character, + ACTIONS(5776), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(5784), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5788), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5790), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(5792), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5796), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(5798), 1, sym_semgrep_named_ellipsis, - [38113] = 3, + ACTIONS(5800), 1, + sym_variable_name, + ACTIONS(5804), 1, + sym_brace_start, + ACTIONS(6099), 1, + sym_word, + ACTIONS(6101), 1, + sym_special_character, + ACTIONS(6105), 1, + anon_sym_RBRACE3, + ACTIONS(6107), 1, + sym_test_operator, + STATE(4812), 1, + sym_command_substitution, + STATE(5028), 1, + aux_sym_for_statement_repeat1, + ACTIONS(5794), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(6103), 3, + sym_expansion_word, + sym_raw_string, + sym_ansi_c_string, + STATE(4957), 5, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + STATE(5313), 6, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym_concatenation_in_expansion, + sym_semgrep_deep_expression, + [119588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, + ACTIONS(1042), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1447), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59819,40 +172280,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [38158] = 3, + [119633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 4, + ACTIONS(1022), 5, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1497), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59861,39 +172322,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [38203] = 3, + [119678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1584), 4, + ACTIONS(1038), 5, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1582), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -59902,473 +172364,1344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [38248] = 3, - ACTIONS(3), 1, + [119723] = 20, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(6109), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [119802] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119857] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(984), 11, + 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_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 26, + sym_file_descriptor, + sym_concat, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [38293] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [119902] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [119965] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 13, + 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_RPAREN, + anon_sym_EQ_TILDE, + [120040] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1004), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 4, + ACTIONS(1006), 26, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1501), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [38383] = 5, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [120085] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1797), 1, - sym_special_character, - STATE(878), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5908), 1, anon_sym_AMP, + ACTIONS(5910), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + anon_sym_EQ, + ACTIONS(5940), 1, + anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 12, + 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_RPAREN, - anon_sym_PIPE_AMP, + [120162] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5912), 1, anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 15, + 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_PIPE_PIPE, + anon_sym_RPAREN, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120233] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38432] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120302] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5908), 1, anon_sym_AMP, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5404), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120369] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38477] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5404), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120434] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5920), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(5406), 18, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120495] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5924), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120552] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 8, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120605] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 10, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120656] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38522] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120705] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120754] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5888), 1, + sym_test_operator, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 20, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120811] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5908), 1, + anon_sym_AMP, + ACTIONS(5910), 1, anon_sym_PIPE_PIPE, + ACTIONS(5912), 1, + anon_sym_AMP_AMP, + ACTIONS(5914), 1, + anon_sym_PIPE, + ACTIONS(5916), 1, + anon_sym_CARET, + ACTIONS(5930), 1, + anon_sym_STAR_STAR, + ACTIONS(5932), 1, + sym_test_operator, + ACTIONS(5934), 1, + anon_sym_EQ, + ACTIONS(5940), 1, anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(6111), 1, + anon_sym_RPAREN, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5918), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5920), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5922), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5924), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5928), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5936), 11, + 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, + [120890] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5874), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38567] = 10, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [120945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 1, - aux_sym_for_statement_token1, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym_raw_string, - ACTIONS(1808), 1, - anon_sym_POUND, - STATE(1856), 1, - sym_string, - STATE(1877), 1, - sym_orig_simple_variable_name, - ACTIONS(621), 4, + ACTIONS(1010), 1, + aux_sym_statements_token1, + ACTIONS(1008), 36, + anon_sym_SEMI, + anon_sym_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_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, + [120990] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6113), 1, + anon_sym_EQ, + ACTIONS(5563), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - sym_word, - ACTIONS(1802), 8, - anon_sym_BANG, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(623), 19, - sym_file_descriptor, - sym_variable_name, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5565), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + [121037] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, + anon_sym_DOLLAR, + ACTIONS(2894), 1, sym_special_character, - sym_ansii_c_string, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [38626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1810), 1, - sym_special_character, - STATE(967), 1, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6119), 1, + aux_sym_statements_token1, + ACTIONS(6121), 1, + sym_test_operator, + STATE(3530), 1, aux_sym_for_statement_repeat1, - ACTIONS(1688), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1686), 32, + ACTIONS(2910), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2364), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(6115), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + ACTIONS(6117), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [121122] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5830), 1, + anon_sym_AMP, + ACTIONS(5834), 1, anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(5836), 1, + anon_sym_CARET, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(6125), 1, + aux_sym_statements_token1, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6123), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(6129), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6131), 2, anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6127), 11, + 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, + [121193] = 20, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(6133), 1, + anon_sym_COLON, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38675] = 3, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5950), 11, + 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, + [121272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 34, + ACTIONS(5565), 1, + aux_sym_statements_token1, + ACTIONS(5563), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38720] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [121317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1026), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1473), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60377,82 +173710,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [38765] = 3, - ACTIONS(3), 1, + [121362] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5466), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_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, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [121409] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, anon_sym_DOLLAR, + ACTIONS(2894), 1, sym_special_character, + ACTIONS(2896), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6121), 1, + sym_test_operator, + ACTIONS(6137), 1, + aux_sym_statements_token1, + STATE(3530), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2910), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2364), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(6115), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38810] = 3, + ACTIONS(6135), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [121494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 3, + ACTIONS(982), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1481), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60461,250 +173857,522 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [38855] = 3, + [121539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 34, + ACTIONS(1014), 1, + aux_sym_statements_token1, + ACTIONS(1012), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_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, + [121584] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, anon_sym_DOLLAR, + ACTIONS(2894), 1, sym_special_character, + ACTIONS(2896), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6121), 1, + sym_test_operator, + ACTIONS(6141), 1, + aux_sym_statements_token1, + STATE(3530), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2910), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2364), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(6115), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38900] = 3, + ACTIONS(6139), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [121669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 34, + ACTIONS(1018), 1, + aux_sym_statements_token1, + ACTIONS(1016), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38945] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [121714] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5880), 1, + anon_sym_STAR_STAR, + ACTIONS(5856), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5874), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5876), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5878), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [121769] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5816), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + ACTIONS(5470), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [121826] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [121881] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [38990] = 3, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5466), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5470), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [121936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 34, + ACTIONS(1022), 1, + aux_sym_statements_token1, + ACTIONS(1020), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_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, + [121981] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, anon_sym_DOLLAR, + ACTIONS(2894), 1, sym_special_character, + ACTIONS(2896), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2906), 1, anon_sym_BQUOTE, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2914), 1, + sym_semgrep_named_ellipsis, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6121), 1, + sym_test_operator, + ACTIONS(6145), 1, + aux_sym_statements_token1, + STATE(3530), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2910), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2364), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(6115), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39035] = 3, + ACTIONS(6143), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [122066] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1501), 34, + ACTIONS(6149), 1, + aux_sym_statements_token1, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6147), 34, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39080] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [122113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 3, + ACTIONS(1034), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1505), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -60713,837 +174381,1003 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [39125] = 3, - ACTIONS(3), 1, + [122158] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 3, - sym_file_descriptor, + ACTIONS(6151), 1, sym_concat, - anon_sym_LF, - ACTIONS(1509), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5494), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39170] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5496), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [122205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 34, + ACTIONS(6155), 1, + aux_sym_statements_token1, + ACTIONS(6153), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39215] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [122250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1517), 34, + ACTIONS(1026), 1, + aux_sym_statements_token1, + ACTIONS(1024), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39260] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [122295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1420), 33, + ACTIONS(982), 1, + aux_sym_statements_token1, + ACTIONS(980), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39305] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [122340] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, + ACTIONS(6157), 1, sym_concat, - anon_sym_LF, - ACTIONS(1447), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5494), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39350] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5496), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [122387] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1424), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122442] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122505] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5952), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39440] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 13, + 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_TILDE, + anon_sym_COLON, + [122580] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1513), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5946), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5948), 1, + anon_sym_EQ, + ACTIONS(5952), 1, anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5974), 1, + anon_sym_EQ_TILDE, + ACTIONS(5976), 1, + anon_sym_QMARK, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39485] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 12, + 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_COLON, + [122657] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1392), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5946), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(5954), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [39530] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 15, + 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_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122728] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5946), 1, anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5956), 1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39575] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122797] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5946), 1, anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5404), 2, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39620] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122864] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5946), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1542), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5404), 3, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122929] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1467), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(5406), 18, + 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_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39755] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [122990] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39800] = 3, - ACTIONS(3), 1, + ACTIONS(5406), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123047] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 8, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39845] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123100] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 10, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39890] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123151] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39935] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123200] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 3, + ACTIONS(2816), 1, + anon_sym_DQUOTE, + ACTIONS(6159), 1, + aux_sym_for_statement_token1, + STATE(3278), 1, + sym_string, + STATE(3316), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 34, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(6161), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [39980] = 3, - ACTIONS(3), 1, + [123255] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5404), 13, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61552,208 +175386,369 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40025] = 3, - ACTIONS(3), 1, + [123349] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 3, - sym_file_descriptor, + ACTIONS(6163), 1, sym_concat, - anon_sym_LF, - ACTIONS(1493), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5447), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5449), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [123396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 1, + aux_sym_statements_token1, + ACTIONS(1032), 36, + anon_sym_SEMI, + anon_sym_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40070] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [123441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 34, + ACTIONS(1030), 1, + aux_sym_statements_token1, + ACTIONS(1028), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_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, + [123486] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1752), 1, + aux_sym_statements_token1, + ACTIONS(6168), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6171), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6174), 1, anon_sym_DOLLAR, + ACTIONS(6177), 1, sym_special_character, + ACTIONS(6180), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(6183), 1, + aux_sym_number_token1, + ACTIONS(6186), 1, + aux_sym_number_token2, + ACTIONS(6189), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6192), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6195), 1, anon_sym_BQUOTE, + ACTIONS(6198), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6204), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(6207), 1, + sym_semgrep_named_ellipsis, + ACTIONS(6210), 1, + sym_test_operator, + ACTIONS(6213), 1, + sym_brace_start, + STATE(3530), 1, + aux_sym_for_statement_repeat1, + ACTIONS(6201), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2364), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(1750), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(6165), 3, + sym_raw_string, + sym_ansi_c_string, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40115] = 3, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [123571] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5723), 1, + anon_sym_EQ, + ACTIONS(5946), 1, + anon_sym_AMP, + ACTIONS(5952), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5954), 1, + anon_sym_AMP_AMP, + ACTIONS(5956), 1, + anon_sym_PIPE, + ACTIONS(5958), 1, + anon_sym_CARET, + ACTIONS(5972), 1, + anon_sym_STAR_STAR, + ACTIONS(5980), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5960), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5964), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5966), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5968), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5970), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5725), 14, + 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_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [123644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1501), 34, + ACTIONS(1042), 1, + aux_sym_statements_token1, + ACTIONS(1040), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40160] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [123689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 34, + ACTIONS(6218), 1, + aux_sym_statements_token1, + ACTIONS(6216), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40205] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [123734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 3, + ACTIONS(1050), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1509), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61762,82 +175757,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40250] = 3, + [123779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 34, + ACTIONS(1038), 1, + aux_sym_statements_token1, + ACTIONS(1036), 36, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40295] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [123824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1046), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1517), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61846,41 +175841,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40340] = 3, + [123869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 4, + ACTIONS(968), 5, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1412), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61889,40 +175883,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40385] = 3, + [123914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1610), 2, + ACTIONS(1050), 5, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -61931,82 +175925,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40430] = 3, + [123959] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1451), 33, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 20, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_COMMA, + 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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + [124018] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5830), 1, + anon_sym_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE, + ACTIONS(5836), 1, + anon_sym_CARET, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6129), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6131), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 13, + anon_sym_SEMI, + anon_sym_COMMA, + 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, + [124087] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5828), 1, + aux_sym_statements_token1, + ACTIONS(5830), 1, + anon_sym_AMP, + ACTIONS(5834), 1, + anon_sym_PIPE, + ACTIONS(5836), 1, + anon_sym_CARET, + ACTIONS(5848), 1, + anon_sym_STAR_STAR, + ACTIONS(5832), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5838), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5842), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40475] = 3, + anon_sym_GT_GT, + ACTIONS(5844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6131), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(5846), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5840), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5826), 15, + anon_sym_SEMI, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + [124154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 3, + ACTIONS(998), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62015,40 +176123,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40520] = 3, + [124199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 4, + ACTIONS(1002), 5, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62057,40 +176165,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40565] = 3, + [124244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 4, + ACTIONS(994), 5, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1396), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62099,39 +176207,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40610] = 3, + [124289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 3, + ACTIONS(990), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1383), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62140,43 +176249,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40655] = 5, - ACTIONS(3), 1, + [124334] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1812), 1, - sym_special_character, - STATE(928), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5475), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5477), 23, + sym_test_operator, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 32, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62185,126 +176333,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40704] = 5, - ACTIONS(3), 1, + [124424] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1815), 1, - sym_special_character, - STATE(929), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1432), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1008), 11, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [40753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1471), 4, + ACTIONS(1010), 26, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1469), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40798] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [124469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 3, + ACTIONS(1006), 5, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1400), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 32, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62313,627 +176417,1194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [40843] = 3, - ACTIONS(3), 1, + [124514] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 3, - sym_file_descriptor, + ACTIONS(6220), 1, sym_concat, - anon_sym_LF, - ACTIONS(1439), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5447), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5449), 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_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_PIPE_PIPE, - anon_sym_EQ_TILDE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124561] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5504), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5506), 23, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124606] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40888] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5406), 21, + sym_test_operator, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124661] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1473), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5404), 4, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + ACTIONS(5406), 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124724] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5896), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 13, + 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_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [124799] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5896), 1, anon_sym_PIPE_PIPE, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_EQ_TILDE, + ACTIONS(5904), 1, + anon_sym_QMARK, + ACTIONS(6222), 1, + anon_sym_EQ, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 12, + 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_RBRACK_RBRACK, + [124876] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5898), 1, + anon_sym_AMP_AMP, + ACTIONS(5900), 1, + anon_sym_PIPE, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40933] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 15, + 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_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [124947] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1477), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5404), 1, + anon_sym_EQ, + ACTIONS(5806), 1, anon_sym_AMP, + ACTIONS(5808), 1, + anon_sym_CARET, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5900), 1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + [125016] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_AMP, + ACTIONS(5822), 1, + anon_sym_STAR_STAR, + ACTIONS(5824), 1, + sym_test_operator, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5810), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5812), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5814), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5816), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5818), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5404), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5820), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5406), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [125081] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [40978] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [125125] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1481), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1016), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41023] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1018), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [125169] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1485), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5613), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41068] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125245] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(980), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_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, + ACTIONS(982), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [125289] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6258), 1, + sym_special_character, + STATE(2423), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 10, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1491), 4, + ACTIONS(4079), 24, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1489), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [41158] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [125337] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1428), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5623), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125413] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5826), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [125471] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5625), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41248] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125547] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1493), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1008), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41293] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1010), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [125591] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1408), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5559), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1497), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125667] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5627), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125743] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(6282), 1, + anon_sym_PIPE, + ACTIONS(6284), 1, + anon_sym_CARET, + ACTIONS(6125), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1501), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6278), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6280), 2, anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6276), 11, + 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, + [125813] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5629), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41428] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [125889] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1505), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41473] = 3, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1014), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [125933] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 3, + ACTIONS(6288), 1, + sym_special_character, + STATE(2604), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 4, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 30, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -62942,44962 +177613,50692 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [41518] = 3, - ACTIONS(3), 1, + [125981] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1509), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5563), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5565), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126025] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5637), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41563] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126101] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1335), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1020), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [41608] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1022), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126145] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5639), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41653] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126221] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1040), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41698] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1042), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [126265] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1513), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1036), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1038), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126309] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5653), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41743] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126385] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5577), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5579), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126429] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5655), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41788] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126505] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1517), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 20, + 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126559] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5657), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126635] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41833] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5573), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126681] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1810), 1, - sym_special_character, - STATE(967), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1610), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1608), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5659), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [41882] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126757] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1517), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [41927] = 3, - ACTIONS(3), 1, + ACTIONS(5573), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [126811] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5661), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [41972] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [126887] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1818), 1, + ACTIONS(6300), 1, sym_special_character, - STATE(929), 1, + STATE(2423), 1, aux_sym_for_statement_repeat1, - ACTIONS(1676), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1674), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(1054), 10, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1483), 4, + ACTIONS(1056), 24, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1481), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42066] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [126935] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1477), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5663), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42111] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127011] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1810), 1, - sym_special_character, - STATE(967), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1680), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1678), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5754), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5756), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [127055] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5665), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [42160] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127131] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1584), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1582), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5508), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(5514), 1, + anon_sym_EQ, + ACTIONS(5520), 1, anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(6303), 1, + anon_sym_COLON, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [42205] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1820), 1, - sym_special_character, - STATE(878), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5518), 11, + 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, + [127207] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5667), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [42254] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127283] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1485), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6216), 13, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42299] = 9, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6218), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [127327] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1822), 1, - aux_sym_for_statement_token1, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_raw_string, - STATE(1992), 1, - sym_string, - STATE(1993), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1824), 9, - anon_sym_BANG, + ACTIONS(5669), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, + ACTIONS(6250), 3, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127403] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5671), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [42356] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127479] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1473), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1050), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [127523] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5673), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42401] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127599] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1830), 1, - sym_special_character, - STATE(928), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1676), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1674), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6081), 13, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42450] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6083), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [127643] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1832), 1, - sym_special_character, - STATE(967), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1432), 32, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5675), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [42499] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127719] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1337), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1335), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1020), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [42544] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1022), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [127763] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5677), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [42589] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127839] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1465), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1044), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42634] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [127883] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1416), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5679), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42679] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [127959] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1420), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5417), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5419), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [128003] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5681), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42724] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128079] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5683), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128155] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1424), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1036), 13, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42769] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1038), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128199] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1469), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5685), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128275] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1820), 1, - sym_special_character, - STATE(878), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5826), 3, anon_sym_AMP, anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + [128335] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5687), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128411] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6266), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [42863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1396), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 5, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42908] = 3, - ACTIONS(3), 1, + ACTIONS(5828), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128465] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1428), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5689), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128541] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [42953] = 5, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6323), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6325), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 13, + anon_sym_COMMA, + 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_RPAREN, + [128609] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1820), 1, - sym_special_character, - STATE(878), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5691), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128685] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [43002] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6325), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 15, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_RPAREN, + [128751] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1363), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5693), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [43047] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128827] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1493), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1024), 13, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43092] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1026), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [128871] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1588), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1586), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5695), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [128947] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6331), 1, + sym_word, + ACTIONS(6333), 1, + anon_sym_LPAREN, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, + ACTIONS(6341), 1, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6353), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6359), 1, + sym_comment_word, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [43137] = 3, - ACTIONS(3), 1, + ACTIONS(6365), 1, + sym_empty_value, + ACTIONS(6367), 1, + sym_brace_start, + STATE(2521), 1, + aux_sym_for_statement_repeat1, + ACTIONS(6357), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2624), 2, + sym_concatenation, + sym_array, + ACTIONS(6343), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2126), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [129033] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1365), 3, - sym_file_descriptor, - sym_variable_name, - anon_sym_LF, - ACTIONS(1363), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5697), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129109] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6258), 1, + sym_special_character, + STATE(2423), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 10, + 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, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [43182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1385), 4, + ACTIONS(1745), 24, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43227] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [129157] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 7, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43272] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(5828), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129209] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1400), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5699), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43317] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129285] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1439), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5633), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43362] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5635), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129329] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1443), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5701), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129405] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5826), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43407] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5828), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [129455] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1032), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1034), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129499] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5703), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43452] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129575] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, - aux_sym_for_statement_token1, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43497] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129619] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1404), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5705), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129695] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5707), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129771] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6258), 1, + sym_special_character, + STATE(2423), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 10, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 4, + ACTIONS(3848), 24, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1408), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + sym_variable_name, + sym_test_operator, + sym_brace_start, anon_sym_GT_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, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_word, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43587] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [129819] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5709), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [43632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1398), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129895] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5569), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1412), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [129971] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5711), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130047] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, + anon_sym_AMP, + ACTIONS(6327), 1, + anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43722] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [130111] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1451), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5713), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1455), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130187] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5737), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130263] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6369), 1, + sym_word, + ACTIONS(6371), 1, + anon_sym_LPAREN, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, + ACTIONS(6379), 1, sym_special_character, + ACTIONS(6381), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6393), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6399), 1, + sym_comment_word, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43812] = 3, - ACTIONS(3), 1, + ACTIONS(6405), 1, + sym_empty_value, + ACTIONS(6407), 1, + sym_brace_start, + STATE(1067), 1, + aux_sym_for_statement_repeat1, + ACTIONS(6397), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1224), 2, + sym_concatenation, + sym_array, + ACTIONS(6383), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(875), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [130349] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1459), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5715), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1540), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130425] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5717), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - aux_sym_for_statement_token1, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130501] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 1, + anon_sym_DOLLAR, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1332), 1, + sym_brace_start, + ACTIONS(6409), 1, + sym_word, + ACTIONS(6411), 1, + anon_sym_LPAREN, + ACTIONS(6413), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6417), 1, sym_special_character, + ACTIONS(6419), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(6423), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(6425), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(6427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6431), 1, + sym_comment_word, + ACTIONS(6433), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(6435), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [43902] = 3, - ACTIONS(3), 1, + ACTIONS(6437), 1, + sym_empty_value, + STATE(1043), 1, + aux_sym_for_statement_repeat1, + ACTIONS(6429), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1096), 2, + sym_concatenation, + sym_array, + ACTIONS(6421), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(755), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [130587] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 35, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(5826), 1, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, + anon_sym_AMP, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [43947] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [130651] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1610), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1608), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5510), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [130727] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2496), 1, anon_sym_DOLLAR, + ACTIONS(2498), 1, sym_special_character, + ACTIONS(2500), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2512), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, anon_sym_LT_DOT_DOT_DOT, + ACTIONS(2520), 1, sym_semgrep_named_ellipsis, - [43991] = 3, - ACTIONS(3), 1, + ACTIONS(2526), 1, + sym_brace_start, + ACTIONS(6439), 1, + sym_word, + ACTIONS(6441), 1, + anon_sym_LPAREN, + ACTIONS(6445), 1, + sym_comment_word, + ACTIONS(6447), 1, + sym_empty_value, + STATE(1716), 1, + aux_sym_for_statement_repeat1, + ACTIONS(2516), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1758), 2, + sym_concatenation, + sym_array, + ACTIONS(6443), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1505), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + sym_semgrep_deep_expression, + [130813] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(1680), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1678), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5557), 1, + anon_sym_EQ, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5555), 14, + 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_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_QMARK, + [130883] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44035] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1030), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130927] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1688), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1686), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1024), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1026), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [130971] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5575), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1774), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1772), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [131047] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5826), 12, anon_sym_AMP, - aux_sym_for_statement_token1, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [44123] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131095] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1610), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1608), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1012), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1014), 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_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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131139] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5760), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44167] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1822), 1, - aux_sym_for_statement_token1, - ACTIONS(1826), 1, - anon_sym_DQUOTE, - ACTIONS(1828), 1, - sym_raw_string, - STATE(1992), 1, - sym_string, - STATE(1993), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1824), 9, - anon_sym_BANG, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, + ACTIONS(6250), 3, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [131215] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [44223] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1034), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [131259] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1774), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1772), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, anon_sym_AMP, - aux_sym_for_statement_token1, + ACTIONS(5826), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavariable, - [44267] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - aux_sym_for_statement_token1, - ACTIONS(1839), 1, - anon_sym_DQUOTE, - ACTIONS(1841), 1, - sym_raw_string, - STATE(2156), 1, - sym_string, - STATE(2172), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1837), 9, - anon_sym_BANG, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, + ACTIONS(6317), 3, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + [131321] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5762), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [44323] = 3, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [131397] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1680), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1678), 33, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1048), 14, anon_sym_AMP, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1688), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1686), 34, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131441] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6321), 1, anon_sym_AMP, + ACTIONS(6327), 1, anon_sym_PIPE, + ACTIONS(6329), 1, + anon_sym_CARET, + ACTIONS(6125), 2, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6307), 2, anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6309), 2, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [44411] = 18, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6323), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6325), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6465), 11, + 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, + [131511] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1847), 1, + ACTIONS(6467), 1, + sym_word, + ACTIONS(6469), 1, anon_sym_LPAREN, - ACTIONS(1851), 1, + ACTIONS(6471), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6473), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6475), 1, anon_sym_DOLLAR, - ACTIONS(1853), 1, + ACTIONS(6477), 1, sym_special_character, - ACTIONS(1855), 1, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(1857), 1, + ACTIONS(6483), 1, + aux_sym_number_token1, + ACTIONS(6485), 1, + aux_sym_number_token2, + ACTIONS(6487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, + ACTIONS(6489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, + ACTIONS(6491), 1, anon_sym_BQUOTE, - ACTIONS(1865), 1, + ACTIONS(6493), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6497), 1, + sym_comment_word, + ACTIONS(6499), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, + ACTIONS(6501), 1, sym_semgrep_named_ellipsis, - STATE(2019), 1, + ACTIONS(6503), 1, + sym_empty_value, + ACTIONS(6505), 1, + sym_brace_start, + STATE(3995), 1, aux_sym_for_statement_repeat1, - STATE(2364), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, + ACTIONS(6495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1845), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, + STATE(4130), 2, sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44484] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2472), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, + sym_array, + ACTIONS(6481), 3, sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1869), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, + sym_ansi_c_string, + STATE(3916), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [44557] = 9, - ACTIONS(3), 1, + [131597] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1871), 1, - aux_sym_for_statement_token1, - ACTIONS(1875), 1, - anon_sym_DQUOTE, - ACTIONS(1877), 1, - sym_raw_string, - STATE(2304), 1, - sym_orig_simple_variable_name, - STATE(2468), 1, - sym_string, - ACTIONS(623), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1873), 9, - anon_sym_BANG, - anon_sym_DASH, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6511), 1, + anon_sym_RPAREN, + ACTIONS(6513), 1, + anon_sym_EQ_TILDE, + ACTIONS(6515), 1, anon_sym_QMARK, - anon_sym_DOLLAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6509), 11, + 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, + [131673] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5563), 13, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5565), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [131717] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6246), 2, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [44612] = 18, - ACTIONS(3), 1, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131771] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2373), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1879), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 14, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44685] = 18, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5573), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131817] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2335), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1881), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5571), 6, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44758] = 18, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5573), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131871] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2464), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1883), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5754), 14, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44831] = 18, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5756), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131915] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2379), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1885), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1044), 14, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44904] = 18, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1046), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131959] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2463), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1887), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(1016), 14, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [44977] = 18, - ACTIONS(3), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1018), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132003] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(1030), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132047] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2469), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1889), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(5593), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45050] = 18, - ACTIONS(3), 1, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [132123] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1847), 1, - anon_sym_LPAREN, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(1853), 1, - sym_special_character, - ACTIONS(1855), 1, - anon_sym_DQUOTE, - ACTIONS(1857), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1859), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1861), 1, - anon_sym_BQUOTE, - ACTIONS(1865), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1867), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2470), 1, - sym_expression, - ACTIONS(1849), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1863), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1843), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1891), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, anon_sym_AMP, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45123] = 8, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_EQ_TILDE, + ACTIONS(6515), 1, + anon_sym_QMARK, + ACTIONS(6517), 1, + anon_sym_RPAREN, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6509), 11, + 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, + [132199] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1855), 1, + ACTIONS(2940), 1, anon_sym_DQUOTE, - ACTIONS(1893), 1, + ACTIONS(6519), 1, aux_sym_for_statement_token1, - ACTIONS(1897), 1, - sym_raw_string, - STATE(2069), 1, + STATE(3432), 1, sym_orig_simple_variable_name, - STATE(2286), 1, + STATE(3502), 1, sym_string, - ACTIONS(1895), 9, - anon_sym_BANG, + ACTIONS(943), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(6521), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - ACTIONS(621), 20, - anon_sym_LF, + anon_sym__, + ACTIONS(941), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [132253] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5589), 1, + anon_sym_STAR_STAR, + ACTIONS(5621), 1, + sym_test_operator, + ACTIONS(5641), 1, + anon_sym_AMP, + ACTIONS(5643), 1, anon_sym_PIPE_PIPE, + ACTIONS(5645), 1, + anon_sym_AMP_AMP, + ACTIONS(5647), 1, + anon_sym_PIPE, + ACTIONS(5649), 1, + anon_sym_CARET, + ACTIONS(5719), 1, + anon_sym_EQ, + ACTIONS(5721), 1, anon_sym_EQ_TILDE, + ACTIONS(5942), 1, + anon_sym_QMARK, + ACTIONS(5468), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5583), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5585), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5615), 2, anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + ACTIONS(5617), 2, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH_EQ, + ACTIONS(5619), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5587), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6523), 11, + 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, + [132329] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [45175] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1899), 1, - aux_sym_for_statement_token1, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1907), 1, - sym_raw_string, - STATE(2233), 1, - sym_orig_simple_variable_name, - STATE(2234), 1, - sym_string, - ACTIONS(621), 4, - anon_sym_EQ, + ACTIONS(5826), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PLUS, - ACTIONS(1901), 4, - anon_sym_BANG, anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(1903), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_POUND, - ACTIONS(623), 15, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 21, anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_COMMA, anon_sym_PLUS_EQ, - anon_sym_BANG_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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [45230] = 19, - ACTIONS(3), 1, + [132377] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1911), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1923), 1, - anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1927), 1, - anon_sym_SLASH, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1467), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1913), 6, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6507), 1, anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_EQ_TILDE, + ACTIONS(6515), 1, + anon_sym_QMARK, + ACTIONS(6525), 1, + anon_sym_RPAREN, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45302] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1939), 1, - anon_sym_RBRACE, - ACTIONS(1943), 1, - anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1788), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1941), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45374] = 19, + ACTIONS(6509), 11, + 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, + [132453] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3075), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1947), 1, - anon_sym_RBRACE, - ACTIONS(1951), 1, - anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1298), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1949), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(6527), 1, + aux_sym_for_statement_token1, + STATE(3479), 1, + sym_orig_simple_variable_name, + STATE(3507), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45446] = 20, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, + ACTIONS(943), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(6529), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1981), 1, - sym_regex, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2530), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45520] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1983), 1, - anon_sym_RBRACE, - ACTIONS(1987), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(1989), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1287), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1985), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45592] = 19, - ACTIONS(3), 1, + anon_sym__, + ACTIONS(941), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [132507] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1991), 1, - anon_sym_RBRACE, - ACTIONS(1995), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1344), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1993), 6, + ACTIONS(1028), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45664] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1030), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132551] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6258), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1999), 1, - anon_sym_RBRACE, - ACTIONS(2003), 1, - anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(2423), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1350), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2001), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45736] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3588), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3590), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2011), 1, - anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_SLASH, - STATE(2343), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [132599] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6258), 1, + sym_special_character, + STATE(2423), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(1739), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1364), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2009), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45808] = 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [132647] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6531), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6533), 1, + anon_sym_LPAREN, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6561), 1, + sym_comment_word, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(2015), 1, - anon_sym_RBRACE, - ACTIONS(2019), 1, - anon_sym_POUND, - ACTIONS(2021), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6567), 1, + sym_empty_value, + ACTIONS(6569), 1, + sym_brace_start, + STATE(1001), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1374), 2, + STATE(1099), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2017), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6545), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(683), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [45880] = 19, + [132733] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(6282), 1, + anon_sym_PIPE, + ACTIONS(6284), 1, + anon_sym_CARET, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6280), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + [132799] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5826), 1, + anon_sym_PIPE, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(6284), 1, + anon_sym_CARET, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [132863] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6147), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(6149), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [132909] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3261), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2023), 1, - anon_sym_RBRACE, - ACTIONS(2027), 1, + ACTIONS(6571), 1, + aux_sym_for_statement_token1, + STATE(3416), 1, + sym_string, + STATE(3478), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(6573), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, anon_sym_POUND, - ACTIONS(2029), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1422), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2025), 6, + anon_sym__, + ACTIONS(941), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [132963] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6153), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(6155), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133007] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5727), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [45952] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5729), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133051] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6258), 1, sym_special_character, - ACTIONS(1919), 1, + STATE(2423), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3730), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3732), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - anon_sym_POUND, - ACTIONS(2037), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1436), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2033), 6, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [133099] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133159] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5731), 1, anon_sym_EQ, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6515), 1, + anon_sym_QMARK, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46024] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 13, + 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_RPAREN, + anon_sym_EQ_TILDE, + [133231] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2039), 1, - anon_sym_RBRACE, - ACTIONS(2043), 1, - anon_sym_POUND, - ACTIONS(2045), 1, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6507), 1, + anon_sym_EQ, + ACTIONS(6513), 1, + anon_sym_EQ_TILDE, + ACTIONS(6515), 1, + anon_sym_QMARK, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1559), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2041), 6, + anon_sym_PERCENT, + ACTIONS(5733), 12, + 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_RPAREN, + [133305] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5731), 1, + anon_sym_EQ, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6453), 1, + anon_sym_AMP_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 15, + 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_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133373] = 14, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5731), 1, anon_sym_EQ, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6455), 1, + anon_sym_PIPE, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46096] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133439] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2047), 1, - anon_sym_RBRACE, - ACTIONS(2051), 1, - anon_sym_POUND, - ACTIONS(2053), 1, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6457), 1, + anon_sym_CARET, + ACTIONS(5731), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1579), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2049), 6, + anon_sym_PERCENT, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133503] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6449), 1, + anon_sym_AMP, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6459), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5731), 3, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133565] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6461), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6463), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46168] = 19, - ACTIONS(3), 1, + ACTIONS(5731), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 18, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133623] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, - anon_sym_POUND, - ACTIONS(2061), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1629), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2057), 6, + ACTIONS(1008), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46240] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1010), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133667] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2063), 1, - anon_sym_RBRACE, - ACTIONS(2067), 1, - anon_sym_POUND, - ACTIONS(2069), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1631), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2065), 6, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_EQ, - anon_sym_DASH, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(6575), 1, anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46312] = 19, - ACTIONS(3), 1, + ACTIONS(5518), 11, + 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, + [133743] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2071), 1, - anon_sym_RBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6292), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6294), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6296), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1638), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2073), 6, + anon_sym_PERCENT, + ACTIONS(5731), 6, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133797] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6294), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46384] = 19, - ACTIONS(3), 1, + ACTIONS(5731), 8, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133849] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2079), 1, - anon_sym_RBRACE, - ACTIONS(2083), 1, - anon_sym_POUND, - ACTIONS(2085), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1655), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2081), 6, + ACTIONS(1036), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46456] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1038), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133893] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2087), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - anon_sym_POUND, - ACTIONS(2093), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1702), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2089), 6, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6296), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 10, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46528] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [133943] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2095), 1, - anon_sym_RBRACE, - ACTIONS(2099), 1, - anon_sym_POUND, - ACTIONS(2101), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1708), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2097), 6, + ACTIONS(5595), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46600] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2103), 1, - anon_sym_RBRACE, - ACTIONS(2107), 1, - anon_sym_POUND, - ACTIONS(2109), 1, + ACTIONS(6250), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1787), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2105), 6, - anon_sym_EQ, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [134019] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(6282), 1, + anon_sym_PIPE, + ACTIONS(6284), 1, + anon_sym_CARET, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46672] = 19, - ACTIONS(3), 1, + ACTIONS(5828), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [134083] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6258), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2111), 1, - anon_sym_RBRACE, - ACTIONS(2115), 1, - anon_sym_POUND, - ACTIONS(2117), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(2423), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1292), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2113), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46744] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3834), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2119), 1, - anon_sym_RBRACE, - ACTIONS(2123), 1, - anon_sym_POUND, - ACTIONS(2125), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1294), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2121), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46816] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3836), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2127), 1, - anon_sym_RBRACE, - ACTIONS(2131), 1, - anon_sym_POUND, - ACTIONS(2133), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1297), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2129), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [46888] = 19, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [134131] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1110), 1, + aux_sym_number_token1, + ACTIONS(1112), 1, + aux_sym_number_token2, + ACTIONS(1116), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1134), 1, + sym_brace_start, + ACTIONS(6577), 1, + sym_word, + ACTIONS(6579), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6585), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6587), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6599), 1, + sym_comment_word, + ACTIONS(6601), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6603), 1, sym_semgrep_named_ellipsis, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(2139), 1, - anon_sym_POUND, - ACTIONS(2141), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6605), 1, + sym_empty_value, + STATE(907), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1302), 2, + STATE(1004), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2137), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6589), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(660), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [46960] = 19, - ACTIONS(3), 1, + [134217] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2143), 1, - anon_sym_RBRACE, - ACTIONS(2147), 1, - anon_sym_POUND, - ACTIONS(2149), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1316), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2145), 6, + ACTIONS(1040), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47032] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1042), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134261] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2151), 1, - anon_sym_RBRACE, - ACTIONS(2155), 1, - anon_sym_POUND, - ACTIONS(2157), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1320), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2153), 6, + ACTIONS(6081), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(6083), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [134305] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5597), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47104] = 19, + ACTIONS(6230), 11, + 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, + [134381] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6298), 1, + anon_sym_STAR_STAR, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134429] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6290), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134475] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6607), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6609), 1, + anon_sym_LPAREN, + ACTIONS(6611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6615), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6617), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6623), 1, + aux_sym_number_token1, + ACTIONS(6625), 1, + aux_sym_number_token2, + ACTIONS(6627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6631), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6633), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6637), 1, + sym_comment_word, + ACTIONS(6639), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6641), 1, sym_semgrep_named_ellipsis, - ACTIONS(2159), 1, - anon_sym_RBRACE, - ACTIONS(2163), 1, - anon_sym_POUND, - ACTIONS(2165), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6643), 1, + sym_empty_value, + ACTIONS(6645), 1, + sym_brace_start, + STATE(3221), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6635), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1322), 2, + STATE(3364), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2161), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6621), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3152), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [47176] = 19, - ACTIONS(3), 1, + [134561] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2167), 1, - anon_sym_RBRACE, - ACTIONS(2171), 1, - anon_sym_POUND, - ACTIONS(2173), 1, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6309), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6311), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5826), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6317), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1346), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2169), 6, + anon_sym_PERCENT, + ACTIONS(5828), 19, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + [134619] = 16, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5557), 1, anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47248] = 19, - ACTIONS(3), 1, + ACTIONS(5555), 14, + 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_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134689] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2175), 1, - anon_sym_RBRACE, - ACTIONS(2179), 1, - anon_sym_POUND, - ACTIONS(2181), 1, + ACTIONS(5599), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1365), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2177), 6, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [134765] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5447), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47320] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5449), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134809] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2183), 1, - anon_sym_RBRACE, - ACTIONS(2187), 1, - anon_sym_POUND, - ACTIONS(2189), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1368), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2185), 6, + ACTIONS(1012), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47392] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1014), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134853] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2191), 1, - anon_sym_RBRACE, - ACTIONS(2195), 1, - anon_sym_POUND, - ACTIONS(2197), 1, + ACTIONS(5577), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1370), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2193), 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5579), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134897] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47464] = 19, + anon_sym_STAR_STAR, + ACTIONS(1018), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134941] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6647), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6649), 1, + anon_sym_LPAREN, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6677), 1, + sym_comment_word, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(2199), 1, - anon_sym_RBRACE, - ACTIONS(2203), 1, - anon_sym_POUND, - ACTIONS(2205), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6683), 1, + sym_empty_value, + ACTIONS(6685), 1, + sym_brace_start, + STATE(1116), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1376), 2, + STATE(1206), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2201), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6661), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(910), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [47536] = 19, - ACTIONS(3), 1, + [135027] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2207), 1, - anon_sym_RBRACE, - ACTIONS(2211), 1, - anon_sym_POUND, - ACTIONS(2213), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1389), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2209), 6, + ACTIONS(1032), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47608] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1034), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135071] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2215), 1, - anon_sym_RBRACE, - ACTIONS(2219), 1, - anon_sym_POUND, - ACTIONS(2221), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1393), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2217), 6, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_EQ, - anon_sym_DASH, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(6687), 1, anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47680] = 19, - ACTIONS(3), 1, + ACTIONS(5518), 11, + 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, + [135147] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2223), 1, - anon_sym_RBRACE, - ACTIONS(2227), 1, - anon_sym_POUND, - ACTIONS(2229), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1398), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2225), 6, + ACTIONS(5508), 1, + anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_EQ, + ACTIONS(5520), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5522), 1, + anon_sym_AMP_AMP, + ACTIONS(5524), 1, + anon_sym_PIPE, + ACTIONS(5526), 1, + anon_sym_CARET, + ACTIONS(5540), 1, + anon_sym_STAR_STAR, + ACTIONS(5542), 1, + anon_sym_EQ_TILDE, + ACTIONS(5544), 1, + anon_sym_QMARK, + ACTIONS(5850), 1, + anon_sym_COMMA, + ACTIONS(5516), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5528), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5530), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5532), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5534), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5536), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(5538), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47752] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2231), 1, - anon_sym_RBRACE, - ACTIONS(2235), 1, - anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(5518), 11, + 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, + [135223] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6313), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6315), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6317), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1418), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2233), 6, - anon_sym_EQ, + anon_sym_PERCENT, + ACTIONS(5826), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5828), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135277] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6315), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6317), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47824] = 19, - ACTIONS(3), 1, + ACTIONS(5826), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5828), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135329] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(2243), 1, - anon_sym_POUND, - ACTIONS(2245), 1, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6317), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1437), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2241), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47896] = 19, - ACTIONS(3), 1, + ACTIONS(5826), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5828), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135379] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2247), 1, - anon_sym_RBRACE, - ACTIONS(2251), 1, - anon_sym_POUND, - ACTIONS(2253), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1440), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2249), 6, + ACTIONS(1008), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [47968] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1010), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135423] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2255), 1, - anon_sym_RBRACE, - ACTIONS(2259), 1, - anon_sym_POUND, - ACTIONS(2261), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1442), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2257), 6, + ACTIONS(980), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48040] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(982), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135467] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2263), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, - anon_sym_POUND, - ACTIONS(2269), 1, + ACTIONS(1048), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1448), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2265), 6, - anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1050), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [135511] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6147), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48112] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(6149), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135557] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2271), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - anon_sym_POUND, - ACTIONS(2277), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1461), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2273), 6, + ACTIONS(6153), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_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, + ACTIONS(6155), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135601] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5727), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48184] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5729), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135645] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2279), 1, - anon_sym_RBRACE, - ACTIONS(2283), 1, - anon_sym_POUND, - ACTIONS(2285), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1465), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2281), 6, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 4, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135705] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48256] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1010), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135749] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2287), 1, - anon_sym_RBRACE, - ACTIONS(2291), 1, - anon_sym_POUND, - ACTIONS(2293), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1470), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2289), 6, - anon_sym_EQ, + ACTIONS(1012), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48328] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1014), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135793] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2295), 1, - anon_sym_RBRACE, - ACTIONS(2299), 1, - anon_sym_POUND, - ACTIONS(2301), 1, + ACTIONS(1016), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1490), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2297), 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1018), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135837] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5731), 1, anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48400] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 13, + 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_RBRACK, + anon_sym_EQ_TILDE, + [135909] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2303), 1, - anon_sym_RBRACE, - ACTIONS(2307), 1, - anon_sym_POUND, - ACTIONS(2309), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1509), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2305), 6, - anon_sym_EQ, + ACTIONS(1020), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48472] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1022), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [135953] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2311), 1, - anon_sym_RBRACE, - ACTIONS(2315), 1, - anon_sym_POUND, - ACTIONS(2317), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1512), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2313), 6, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48544] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 12, + 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_RBRACK, + [136027] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2319), 1, - anon_sym_RBRACE, - ACTIONS(2323), 1, - anon_sym_POUND, - ACTIONS(2325), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1514), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2321), 6, + ACTIONS(5731), 1, anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48616] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 15, + 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_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136095] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2327), 1, - anon_sym_RBRACE, - ACTIONS(2331), 1, - anon_sym_POUND, - ACTIONS(2333), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1520), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2329), 6, - anon_sym_EQ, + ACTIONS(1024), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48688] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1026), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136139] = 14, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2335), 1, - anon_sym_RBRACE, - ACTIONS(2339), 1, - anon_sym_POUND, - ACTIONS(2341), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1533), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2337), 6, + ACTIONS(5731), 1, anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48760] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136205] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2343), 1, - anon_sym_RBRACE, - ACTIONS(2347), 1, - anon_sym_POUND, - ACTIONS(2349), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1537), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2345), 6, - anon_sym_EQ, + ACTIONS(1044), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48832] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1046), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [136249] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2351), 1, - anon_sym_RBRACE, - ACTIONS(2355), 1, - anon_sym_POUND, - ACTIONS(2357), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1542), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2353), 6, - anon_sym_EQ, + ACTIONS(980), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48904] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(982), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136293] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2359), 1, - anon_sym_RBRACE, - ACTIONS(2363), 1, - anon_sym_POUND, - ACTIONS(2365), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1561), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2361), 6, + ACTIONS(5601), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [48976] = 19, - ACTIONS(3), 1, + ACTIONS(6230), 11, + 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, + [136369] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2367), 1, - anon_sym_RBRACE, - ACTIONS(2371), 1, - anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(1032), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1580), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2369), 6, - anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1034), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136413] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49048] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1030), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136457] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2375), 1, - anon_sym_RBRACE, - ACTIONS(2379), 1, - anon_sym_POUND, - ACTIONS(2381), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1583), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2377), 6, + ACTIONS(1020), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49120] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1022), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136501] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2383), 1, - anon_sym_RBRACE, - ACTIONS(2387), 1, - anon_sym_POUND, - ACTIONS(2389), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1585), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2385), 6, - anon_sym_EQ, + ACTIONS(1040), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49192] = 19, + anon_sym_STAR_STAR, + ACTIONS(1042), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136545] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1442), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1472), 1, + sym_brace_start, + ACTIONS(6689), 1, + sym_word, + ACTIONS(6691), 1, + anon_sym_LPAREN, + ACTIONS(6693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6697), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6705), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6707), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6711), 1, + sym_comment_word, + ACTIONS(6713), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6715), 1, sym_semgrep_named_ellipsis, - ACTIONS(2391), 1, - anon_sym_RBRACE, - ACTIONS(2395), 1, - anon_sym_POUND, - ACTIONS(2397), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6717), 1, + sym_empty_value, + STATE(1031), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1591), 2, + STATE(1123), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2393), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6701), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(703), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [49264] = 19, - ACTIONS(3), 1, + [136631] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2399), 1, - anon_sym_RBRACE, - ACTIONS(2403), 1, - anon_sym_POUND, - ACTIONS(2405), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1604), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2401), 6, - anon_sym_EQ, + ACTIONS(1048), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49336] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1050), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [136675] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2407), 1, - anon_sym_RBRACE, - ACTIONS(2411), 1, - anon_sym_POUND, - ACTIONS(2413), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1608), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2409), 6, - anon_sym_EQ, + ACTIONS(1036), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49408] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1038), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136719] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2415), 1, - anon_sym_RBRACE, - ACTIONS(2419), 1, - anon_sym_POUND, - ACTIONS(2421), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1613), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2417), 6, - anon_sym_EQ, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5826), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49480] = 19, - ACTIONS(3), 1, + ACTIONS(5828), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136767] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2423), 1, - anon_sym_RBRACE, - ACTIONS(2427), 1, - anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(5417), 14, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1632), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2425), 6, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5419), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136811] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5603), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49552] = 19, - ACTIONS(3), 1, + ACTIONS(6230), 11, + 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, + [136887] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2431), 1, - anon_sym_RBRACE, - ACTIONS(2435), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1651), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2433), 6, + ACTIONS(1024), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49624] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1026), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [136931] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2439), 1, - anon_sym_RBRACE, - ACTIONS(2443), 1, - anon_sym_POUND, - ACTIONS(2445), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1654), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2441), 6, - anon_sym_EQ, + ACTIONS(6319), 1, + anon_sym_STAR_STAR, + ACTIONS(6305), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5826), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49696] = 19, - ACTIONS(3), 1, + ACTIONS(5828), 21, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [136979] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2447), 1, - anon_sym_RBRACE, - ACTIONS(2451), 1, - anon_sym_POUND, - ACTIONS(2453), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1656), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2449), 6, - anon_sym_EQ, + ACTIONS(1048), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49768] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1050), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [137023] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2455), 1, - anon_sym_RBRACE, - ACTIONS(2459), 1, - anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(1044), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1662), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2457), 6, - anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1046), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [137067] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49840] = 19, + anon_sym_STAR_STAR, + ACTIONS(1050), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [137111] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6719), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6721), 1, + anon_sym_LPAREN, + ACTIONS(6723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6727), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6729), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6731), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6735), 1, + aux_sym_number_token1, + ACTIONS(6737), 1, + aux_sym_number_token2, + ACTIONS(6739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6741), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6743), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6745), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6749), 1, + sym_comment_word, + ACTIONS(6751), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6753), 1, sym_semgrep_named_ellipsis, - ACTIONS(2463), 1, - anon_sym_RBRACE, - ACTIONS(2467), 1, - anon_sym_POUND, - ACTIONS(2469), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6755), 1, + sym_empty_value, + ACTIONS(6757), 1, + sym_brace_start, + STATE(3276), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6747), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1675), 2, + STATE(3488), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2465), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6733), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3190), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [49912] = 19, - ACTIONS(3), 1, + [137197] = 13, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2471), 1, - anon_sym_RBRACE, - ACTIONS(2475), 1, - anon_sym_POUND, - ACTIONS(2477), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1679), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2473), 6, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(5731), 2, anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [49984] = 19, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137261] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6759), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6761), 1, + anon_sym_LPAREN, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6787), 1, + sym_comment_word, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(2479), 1, - anon_sym_RBRACE, - ACTIONS(2483), 1, - anon_sym_POUND, - ACTIONS(2485), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6793), 1, + sym_empty_value, + ACTIONS(6795), 1, + sym_brace_start, + STATE(1755), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1684), 2, + STATE(1830), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2481), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6771), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1640), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [50056] = 19, - ACTIONS(3), 1, + [137347] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2487), 1, - anon_sym_RBRACE, - ACTIONS(2491), 1, - anon_sym_POUND, - ACTIONS(2493), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1704), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2489), 6, + ACTIONS(5605), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50128] = 19, - ACTIONS(3), 1, + ACTIONS(6230), 11, + 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, + [137423] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5731), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5733), 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137485] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2495), 1, - anon_sym_RBRACE, - ACTIONS(2499), 1, - anon_sym_POUND, - ACTIONS(2501), 1, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1723), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2497), 6, + anon_sym_PERCENT, + ACTIONS(5731), 4, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(5733), 18, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137543] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50200] = 19, + anon_sym_STAR_STAR, + ACTIONS(982), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137587] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6797), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6799), 1, + anon_sym_LPAREN, + ACTIONS(6801), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6805), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6807), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6809), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6813), 1, + aux_sym_number_token1, + ACTIONS(6815), 1, + aux_sym_number_token2, + ACTIONS(6817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6819), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6823), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6827), 1, + sym_comment_word, + ACTIONS(6829), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6831), 1, sym_semgrep_named_ellipsis, - ACTIONS(2503), 1, - anon_sym_RBRACE, - ACTIONS(2507), 1, - anon_sym_POUND, - ACTIONS(2509), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6833), 1, + sym_empty_value, + ACTIONS(6835), 1, + sym_brace_start, + STATE(3222), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1726), 2, + STATE(3335), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2505), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6811), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3164), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [50272] = 19, - ACTIONS(3), 1, + [137673] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2511), 1, - anon_sym_RBRACE, - ACTIONS(2515), 1, - anon_sym_POUND, - ACTIONS(2517), 1, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1728), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2513), 6, + anon_sym_PERCENT, + ACTIONS(5731), 6, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137727] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50344] = 19, + ACTIONS(5731), 8, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6837), 1, sym_special_character, - ACTIONS(1919), 1, + STATE(2604), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 30, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2519), 1, - anon_sym_RBRACE, - ACTIONS(2523), 1, - anon_sym_POUND, - ACTIONS(2525), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1734), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2521), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50416] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(2527), 1, - anon_sym_RBRACE, - ACTIONS(2531), 1, - anon_sym_POUND, - ACTIONS(2533), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1747), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2529), 6, + [137827] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5447), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50488] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5449), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137871] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2535), 1, - anon_sym_RBRACE, - ACTIONS(2539), 1, - anon_sym_POUND, - ACTIONS(2541), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1751), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2537), 6, - anon_sym_EQ, + ACTIONS(6216), 13, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50560] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(6218), 23, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [137915] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2543), 1, - anon_sym_RBRACE, - ACTIONS(2547), 1, - anon_sym_POUND, - ACTIONS(2549), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1756), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2545), 6, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5731), 10, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50632] = 19, - ACTIONS(3), 1, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [137965] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2551), 1, - anon_sym_RBRACE, - ACTIONS(2555), 1, - anon_sym_POUND, - ACTIONS(2557), 1, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 13, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1780), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2553), 6, + anon_sym_PERCENT, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138013] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5731), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50704] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5733), 20, + 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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138059] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2559), 1, - anon_sym_RBRACE, - ACTIONS(2563), 1, - anon_sym_POUND, - ACTIONS(2565), 1, + ACTIONS(5607), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1789), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2561), 6, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [138135] = 11, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5826), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [138195] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50776] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(1042), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138239] = 19, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2567), 1, - anon_sym_RBRACE, - ACTIONS(2571), 1, - anon_sym_POUND, - ACTIONS(2573), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1804), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2569), 6, + ACTIONS(5609), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(6230), 11, + 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, + [138315] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(6282), 1, + anon_sym_PIPE, + ACTIONS(6284), 1, + anon_sym_CARET, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6278), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(6280), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50848] = 19, - ACTIONS(3), 1, + ACTIONS(5828), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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, + [138383] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2575), 1, - anon_sym_RBRACE, - ACTIONS(2579), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1806), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2577), 6, + ACTIONS(5633), 14, + anon_sym_AMP, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50920] = 19, - ACTIONS(3), 1, + anon_sym_STAR_STAR, + ACTIONS(5635), 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_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_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138427] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2583), 1, - anon_sym_RBRACE, - ACTIONS(2587), 1, - anon_sym_POUND, - ACTIONS(2589), 1, + ACTIONS(6272), 1, + anon_sym_STAR_STAR, + ACTIONS(6274), 1, + anon_sym_AMP, + ACTIONS(5826), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(6260), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6262), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6264), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6266), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6268), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6286), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6270), 3, + anon_sym_STAR, anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1808), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2585), 6, + anon_sym_PERCENT, + ACTIONS(5828), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + 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_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [138489] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5611), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [50992] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(2595), 1, - anon_sym_POUND, - ACTIONS(2597), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1813), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2593), 6, + ACTIONS(6230), 11, + 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, + [138565] = 19, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5631), 1, + anon_sym_RBRACK, + ACTIONS(6224), 1, + anon_sym_AMP, + ACTIONS(6226), 1, anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6234), 1, + anon_sym_AMP_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_CARET, + ACTIONS(6252), 1, + anon_sym_STAR_STAR, + ACTIONS(6254), 1, + anon_sym_EQ_TILDE, + ACTIONS(6256), 1, + anon_sym_QMARK, + ACTIONS(6228), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6240), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6242), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6244), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(6246), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(6248), 2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, + ACTIONS(6250), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51064] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6230), 11, + 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, + [138641] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6649), 1, + anon_sym_LPAREN, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(2599), 1, - anon_sym_RBRACE, - ACTIONS(2603), 1, - anon_sym_POUND, - ACTIONS(2605), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(6840), 1, + sym_word, + ACTIONS(6844), 1, + sym_empty_value, + STATE(1114), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1816), 2, + STATE(1202), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2601), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6842), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(909), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51136] = 19, - ACTIONS(3), 1, + [138724] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6533), 1, + anon_sym_LPAREN, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(2607), 1, - anon_sym_RBRACE, - ACTIONS(2611), 1, - anon_sym_POUND, - ACTIONS(2613), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(6846), 1, + sym_word, + ACTIONS(6850), 1, + sym_empty_value, + STATE(1000), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1288), 2, + STATE(1097), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2609), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6848), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(681), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51208] = 19, - ACTIONS(3), 1, + [138807] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4475), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2615), 1, - anon_sym_RBRACE, - ACTIONS(2619), 1, - anon_sym_POUND, - ACTIONS(2621), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1295), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2617), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51280] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4487), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(2627), 1, - anon_sym_POUND, - ACTIONS(2629), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1299), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2625), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51352] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(2631), 1, - anon_sym_RBRACE, - ACTIONS(2635), 1, - anon_sym_POUND, - ACTIONS(2637), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1301), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2633), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51424] = 19, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [138850] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1302), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1332), 1, + sym_brace_start, + ACTIONS(6411), 1, + anon_sym_LPAREN, + ACTIONS(6413), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6417), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6419), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6423), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6425), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6433), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6435), 1, sym_semgrep_named_ellipsis, - ACTIONS(2639), 1, - anon_sym_RBRACE, - ACTIONS(2643), 1, - anon_sym_POUND, - ACTIONS(2645), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6852), 1, + sym_word, + ACTIONS(6856), 1, + sym_empty_value, + STATE(952), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1303), 2, + STATE(1108), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2641), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6854), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(712), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51496] = 19, - ACTIONS(3), 1, + [138933] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3846), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3848), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2647), 1, - anon_sym_RBRACE, - ACTIONS(2651), 1, - anon_sym_POUND, - ACTIONS(2653), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2649), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51568] = 19, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [138976] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3730), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3732), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2655), 1, - anon_sym_RBRACE, - ACTIONS(2659), 1, - anon_sym_POUND, - ACTIONS(2661), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1307), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2657), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51640] = 19, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [139019] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1739), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1741), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2663), 1, - anon_sym_RBRACE, - ACTIONS(2667), 1, - anon_sym_POUND, - ACTIONS(2669), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1310), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2665), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [51712] = 19, - ACTIONS(3), 1, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [139062] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6469), 1, + anon_sym_LPAREN, + ACTIONS(6471), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6473), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6475), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6477), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6483), 1, + aux_sym_number_token1, + ACTIONS(6485), 1, + aux_sym_number_token2, + ACTIONS(6487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6491), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6493), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6499), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6501), 1, sym_semgrep_named_ellipsis, - ACTIONS(2671), 1, - anon_sym_RBRACE, - ACTIONS(2675), 1, - anon_sym_POUND, - ACTIONS(2677), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6505), 1, + sym_brace_start, + ACTIONS(6858), 1, + sym_word, + ACTIONS(6862), 1, + sym_empty_value, + STATE(3987), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1312), 2, + STATE(4087), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2673), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6860), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3876), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51784] = 19, + [139145] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3223), 1, + anon_sym_DQUOTE, + ACTIONS(6864), 1, + aux_sym_for_statement_token1, + STATE(3633), 1, + sym_string, + STATE(3658), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(6866), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [139198] = 23, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2496), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2498), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2500), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2512), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2520), 1, sym_semgrep_named_ellipsis, - ACTIONS(2679), 1, - anon_sym_RBRACE, - ACTIONS(2683), 1, - anon_sym_POUND, - ACTIONS(2685), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(2526), 1, + sym_brace_start, + ACTIONS(6441), 1, + anon_sym_LPAREN, + ACTIONS(6868), 1, + sym_word, + ACTIONS(6872), 1, + sym_empty_value, + STATE(1713), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(2516), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1319), 2, + STATE(1751), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2681), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6870), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1504), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51856] = 19, - ACTIONS(3), 1, + [139281] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1442), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1472), 1, + sym_brace_start, + ACTIONS(6691), 1, + anon_sym_LPAREN, + ACTIONS(6693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6697), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6705), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6707), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6713), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6715), 1, sym_semgrep_named_ellipsis, - ACTIONS(2687), 1, - anon_sym_RBRACE, - ACTIONS(2691), 1, - anon_sym_POUND, - ACTIONS(2693), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6874), 1, + sym_word, + ACTIONS(6878), 1, + sym_empty_value, + STATE(1029), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1323), 2, + STATE(1119), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2689), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6876), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(701), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [51928] = 19, - ACTIONS(3), 1, + [139364] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4394), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4396), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(2695), 1, - anon_sym_RBRACE, - ACTIONS(2699), 1, - anon_sym_POUND, - ACTIONS(2701), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [139407] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3834), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3836), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, + anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1325), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2697), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [52000] = 19, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [139450] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6333), 1, + anon_sym_LPAREN, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6341), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(2703), 1, - anon_sym_RBRACE, - ACTIONS(2707), 1, - anon_sym_POUND, - ACTIONS(2709), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(6880), 1, + sym_word, + ACTIONS(6884), 1, + sym_empty_value, + STATE(2512), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1327), 2, + STATE(2641), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2705), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6882), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2121), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52072] = 19, - ACTIONS(3), 1, + [139533] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1110), 1, + aux_sym_number_token1, + ACTIONS(1112), 1, + aux_sym_number_token2, + ACTIONS(1116), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1134), 1, + sym_brace_start, + ACTIONS(6579), 1, + anon_sym_LPAREN, + ACTIONS(6581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6585), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6587), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6601), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6603), 1, sym_semgrep_named_ellipsis, - ACTIONS(2711), 1, - anon_sym_RBRACE, - ACTIONS(2715), 1, - anon_sym_POUND, - ACTIONS(2717), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6886), 1, + sym_word, + ACTIONS(6890), 1, + sym_empty_value, + STATE(906), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1329), 2, + STATE(1003), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2713), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6888), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(652), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52144] = 19, - ACTIONS(3), 1, + [139616] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6721), 1, + anon_sym_LPAREN, + ACTIONS(6723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6727), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6729), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6731), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6735), 1, + aux_sym_number_token1, + ACTIONS(6737), 1, + aux_sym_number_token2, + ACTIONS(6739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6741), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6743), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6745), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6751), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6753), 1, sym_semgrep_named_ellipsis, - ACTIONS(2719), 1, - anon_sym_RBRACE, - ACTIONS(2723), 1, - anon_sym_POUND, - ACTIONS(2725), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6757), 1, + sym_brace_start, + ACTIONS(6892), 1, + sym_word, + ACTIONS(6896), 1, + sym_empty_value, + STATE(3232), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6747), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1331), 2, + STATE(3421), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2721), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6894), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3175), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52216] = 19, - ACTIONS(3), 1, + [139699] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6761), 1, + anon_sym_LPAREN, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(2727), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, - anon_sym_POUND, - ACTIONS(2733), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(6898), 1, + sym_word, + ACTIONS(6902), 1, + sym_empty_value, + STATE(1765), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1334), 2, + STATE(1836), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2729), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6900), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1660), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52288] = 19, - ACTIONS(3), 1, + [139782] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6799), 1, + anon_sym_LPAREN, + ACTIONS(6801), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6805), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6807), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6809), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6813), 1, + aux_sym_number_token1, + ACTIONS(6815), 1, + aux_sym_number_token2, + ACTIONS(6817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6819), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6823), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6829), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6831), 1, sym_semgrep_named_ellipsis, - ACTIONS(2735), 1, - anon_sym_RBRACE, - ACTIONS(2739), 1, - anon_sym_POUND, - ACTIONS(2741), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6835), 1, + sym_brace_start, + ACTIONS(6904), 1, + sym_word, + ACTIONS(6908), 1, + sym_empty_value, + STATE(3188), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1336), 2, + STATE(3281), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2737), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6906), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3154), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52360] = 19, - ACTIONS(3), 1, + [139865] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6609), 1, + anon_sym_LPAREN, + ACTIONS(6611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6615), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6617), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6623), 1, + aux_sym_number_token1, + ACTIONS(6625), 1, + aux_sym_number_token2, + ACTIONS(6627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6631), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6633), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6639), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6641), 1, sym_semgrep_named_ellipsis, - ACTIONS(2743), 1, - anon_sym_RBRACE, - ACTIONS(2747), 1, - anon_sym_POUND, - ACTIONS(2749), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6645), 1, + sym_brace_start, + ACTIONS(6910), 1, + sym_word, + ACTIONS(6914), 1, + sym_empty_value, + STATE(3216), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6635), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1343), 2, + STATE(3368), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2745), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6912), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3147), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52432] = 19, - ACTIONS(3), 1, + [139948] = 23, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6371), 1, + anon_sym_LPAREN, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6379), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(2751), 1, - anon_sym_RBRACE, - ACTIONS(2755), 1, - anon_sym_POUND, - ACTIONS(2757), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(6916), 1, + sym_word, + ACTIONS(6920), 1, + sym_empty_value, + STATE(1071), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1347), 2, + STATE(1253), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2753), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_array, + ACTIONS(6918), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(797), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52504] = 19, - ACTIONS(3), 1, + [140031] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4398), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4400), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2759), 1, - anon_sym_RBRACE, - ACTIONS(2763), 1, - anon_sym_POUND, - ACTIONS(2765), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1349), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2761), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [52576] = 19, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [140074] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1743), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1917), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1745), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(2767), 1, - anon_sym_RBRACE, - ACTIONS(2771), 1, - anon_sym_POUND, - ACTIONS(2773), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [140117] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3588), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(3590), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym_brace_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, + anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1351), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2769), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [52648] = 19, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [140160] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6924), 1, + anon_sym_RPAREN, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(2779), 1, - anon_sym_POUND, - ACTIONS(2781), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1353), 2, + STATE(2659), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2777), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52720] = 19, - ACTIONS(3), 1, + [140240] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2783), 1, - anon_sym_RBRACE, - ACTIONS(2787), 1, - anon_sym_POUND, - ACTIONS(2789), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(6958), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1355), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2785), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [52792] = 19, - ACTIONS(3), 1, + [140320] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2791), 1, - anon_sym_RBRACE, - ACTIONS(2795), 1, - anon_sym_POUND, - ACTIONS(2797), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2266), 1, + sym_arithmetic_expression, + STATE(2652), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1358), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2793), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [52864] = 19, - ACTIONS(3), 1, + [140400] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6994), 1, + aux_sym_for_statement_token1, + ACTIONS(6997), 1, + anon_sym_LPAREN, + ACTIONS(7000), 1, + anon_sym_BANG, + ACTIONS(7009), 1, + anon_sym_TILDE, + ACTIONS(7012), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7015), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7021), 1, + aux_sym_number_token1, + ACTIONS(7024), 1, + aux_sym_number_token2, + ACTIONS(7027), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7030), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7033), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7039), 1, sym_semgrep_named_ellipsis, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(2803), 1, - anon_sym_POUND, - ACTIONS(2805), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7042), 1, + sym_variable_name, + STATE(2556), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(7003), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7006), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7018), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1360), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2801), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [52936] = 19, - ACTIONS(3), 1, + [140480] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2807), 1, - anon_sym_RBRACE, - ACTIONS(2811), 1, - anon_sym_POUND, - ACTIONS(2813), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2221), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1367), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2809), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [53008] = 19, - ACTIONS(3), 1, + [140560] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2815), 1, - anon_sym_RBRACE, - ACTIONS(2819), 1, - anon_sym_POUND, - ACTIONS(2821), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7045), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1371), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2817), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53080] = 19, - ACTIONS(3), 1, + [140640] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2823), 1, - anon_sym_RBRACE, - ACTIONS(2827), 1, - anon_sym_POUND, - ACTIONS(2829), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7047), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1373), 2, + STATE(2650), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2825), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53152] = 19, - ACTIONS(3), 1, + [140720] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2831), 1, - anon_sym_RBRACE, - ACTIONS(2835), 1, - anon_sym_POUND, - ACTIONS(2837), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7049), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1375), 2, + STATE(2653), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2833), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53224] = 19, - ACTIONS(3), 1, + [140800] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2839), 1, - anon_sym_RBRACE, - ACTIONS(2843), 1, - anon_sym_POUND, - ACTIONS(2845), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7051), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1377), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2841), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53296] = 19, + [140880] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7057), 1, + anon_sym_PERCENT, + ACTIONS(7059), 1, + anon_sym_COLON, + ACTIONS(7063), 1, + anon_sym_RBRACE3, + ACTIONS(7065), 1, + anon_sym_AT2, + ACTIONS(7067), 1, + anon_sym_STAR2, + STATE(4922), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(7073), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(7061), 3, + sym_immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(7071), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + STATE(5633), 6, + sym_expansion_expression, + sym_expansion_regex, + sym_expansion_regex_replacement, + sym_expansion_regex_removal, + sym_expansion_max_length, + sym_expansion_operator, + ACTIONS(7069), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [140946] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2847), 1, - anon_sym_RBRACE, - ACTIONS(2851), 1, - anon_sym_POUND, - ACTIONS(2853), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2268), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1379), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2849), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [53368] = 19, - ACTIONS(3), 1, + [141026] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2855), 1, - anon_sym_RBRACE, - ACTIONS(2859), 1, - anon_sym_POUND, - ACTIONS(2861), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7077), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1382), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2857), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53440] = 19, + [141106] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2888), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2890), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2894), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2896), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2904), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2906), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2908), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2912), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2914), 1, sym_semgrep_named_ellipsis, - ACTIONS(2863), 1, - anon_sym_RBRACE, - ACTIONS(2867), 1, - anon_sym_POUND, - ACTIONS(2869), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(2918), 1, + sym_test_operator, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(7079), 1, + aux_sym_statements_token1, + STATE(2664), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4013), 1, + sym_concatenation, + ACTIONS(2910), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1384), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2865), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(2874), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53512] = 19, - ACTIONS(3), 1, + [141188] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2871), 1, - anon_sym_RBRACE, - ACTIONS(2875), 1, - anon_sym_POUND, - ACTIONS(2877), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7081), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1391), 2, + STATE(2643), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2873), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53584] = 19, - ACTIONS(3), 1, + [141268] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(2883), 1, - anon_sym_POUND, - ACTIONS(2885), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2230), 1, + sym_arithmetic_expression, + STATE(2661), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1395), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2881), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [53656] = 19, - ACTIONS(3), 1, + [141348] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2887), 1, - anon_sym_RBRACE, - ACTIONS(2891), 1, - anon_sym_POUND, - ACTIONS(2893), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2257), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1397), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2889), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [53728] = 19, - ACTIONS(3), 1, + [141428] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2895), 1, - anon_sym_RBRACE, - ACTIONS(2899), 1, - anon_sym_POUND, - ACTIONS(2901), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2195), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1399), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2897), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [53800] = 19, - ACTIONS(3), 1, + [141508] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2903), 1, - anon_sym_RBRACE, - ACTIONS(2907), 1, - anon_sym_POUND, - ACTIONS(2909), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7083), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2905), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53872] = 19, - ACTIONS(3), 1, + [141588] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2911), 1, - anon_sym_RBRACE, - ACTIONS(2915), 1, - anon_sym_POUND, - ACTIONS(2917), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7085), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1403), 2, + STATE(2663), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2913), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [53944] = 19, - ACTIONS(3), 1, + [141668] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2919), 1, - anon_sym_RBRACE, - ACTIONS(2923), 1, - anon_sym_POUND, - ACTIONS(2925), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2236), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1406), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2921), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [54016] = 19, - ACTIONS(3), 1, + [141748] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2927), 1, - anon_sym_RBRACE, - ACTIONS(2931), 1, - anon_sym_POUND, - ACTIONS(2933), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7087), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1408), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2929), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54088] = 19, - ACTIONS(3), 1, + [141828] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2935), 1, - anon_sym_RBRACE, - ACTIONS(2939), 1, - anon_sym_POUND, - ACTIONS(2941), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7089), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1415), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2937), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54160] = 19, + [141908] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7094), 1, + aux_sym_statements_token1, + ACTIONS(7096), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7102), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7105), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7108), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7111), 1, + aux_sym_number_token1, + ACTIONS(7114), 1, + aux_sym_number_token2, + ACTIONS(7117), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7123), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7126), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7132), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7135), 1, sym_semgrep_named_ellipsis, - ACTIONS(2943), 1, - anon_sym_RBRACE, - ACTIONS(2947), 1, - anon_sym_POUND, - ACTIONS(2949), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7138), 1, + sym_test_operator, + ACTIONS(7141), 1, + sym_brace_start, + STATE(2664), 1, + aux_sym_heredoc_command_repeat1, + STATE(3956), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4013), 1, + sym_concatenation, + ACTIONS(7129), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1419), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2945), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7091), 3, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(3707), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54232] = 19, - ACTIONS(3), 1, + [141990] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2951), 1, - anon_sym_RBRACE, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2260), 1, + sym_arithmetic_expression, + STATE(2677), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1421), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2953), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [54304] = 19, - ACTIONS(3), 1, + [142070] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(1752), 1, + anon_sym_RPAREN, + ACTIONS(7144), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(7147), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7150), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7153), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7156), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7159), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7165), 1, + aux_sym_number_token1, + ACTIONS(7168), 1, + aux_sym_number_token2, + ACTIONS(7171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7174), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7177), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7186), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7189), 1, sym_semgrep_named_ellipsis, - ACTIONS(2959), 1, - anon_sym_RBRACE, - ACTIONS(2963), 1, - anon_sym_POUND, - ACTIONS(2965), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7192), 1, + sym_brace_start, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7183), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1423), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2961), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2666), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(7162), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54376] = 19, - ACTIONS(3), 1, + [142150] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(2971), 1, - anon_sym_POUND, - ACTIONS(2973), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7195), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1425), 2, + STATE(2662), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2969), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54448] = 19, - ACTIONS(3), 1, + [142230] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2975), 1, - anon_sym_RBRACE, - ACTIONS(2979), 1, - anon_sym_POUND, - ACTIONS(2981), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7197), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1427), 2, + STATE(2690), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2977), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54520] = 19, - ACTIONS(3), 1, + [142310] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2983), 1, - anon_sym_RBRACE, - ACTIONS(2987), 1, - anon_sym_POUND, - ACTIONS(2989), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2240), 1, + sym_arithmetic_expression, + STATE(2679), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1430), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2985), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [54592] = 19, - ACTIONS(3), 1, + [142390] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(2991), 1, - anon_sym_RBRACE, - ACTIONS(2995), 1, - anon_sym_POUND, - ACTIONS(2997), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7199), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1432), 2, + STATE(2674), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(2993), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54664] = 19, - ACTIONS(3), 1, + [142470] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(2999), 1, - anon_sym_RBRACE, - ACTIONS(3003), 1, - anon_sym_POUND, - ACTIONS(3005), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7201), 1, + sym_word, + STATE(4994), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1439), 2, + STATE(5333), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3001), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_extglob_blob, + ACTIONS(7203), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4960), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54736] = 19, - ACTIONS(3), 1, + [142550] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(3011), 1, - anon_sym_POUND, - ACTIONS(3013), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7205), 1, + sym_word, + STATE(4869), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1443), 2, + STATE(5213), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3009), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_extglob_blob, + ACTIONS(7207), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4795), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54808] = 19, - ACTIONS(3), 1, + [142630] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3015), 1, - anon_sym_RBRACE, - ACTIONS(3019), 1, - anon_sym_POUND, - ACTIONS(3021), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7209), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1445), 2, + STATE(2676), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3017), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54880] = 19, - ACTIONS(3), 1, + [142710] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3023), 1, - anon_sym_RBRACE, - ACTIONS(3027), 1, - anon_sym_POUND, - ACTIONS(3029), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7211), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1447), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3025), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [54952] = 19, - ACTIONS(3), 1, + [142790] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3031), 1, - anon_sym_RBRACE, - ACTIONS(3035), 1, - anon_sym_POUND, - ACTIONS(3037), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7213), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1449), 2, + STATE(2696), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3033), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55024] = 19, - ACTIONS(3), 1, + [142870] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3039), 1, - anon_sym_RBRACE, - ACTIONS(3043), 1, - anon_sym_POUND, - ACTIONS(3045), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7215), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1451), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3041), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55096] = 19, - ACTIONS(3), 1, + [142950] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3047), 1, - anon_sym_RBRACE, - ACTIONS(3051), 1, - anon_sym_POUND, - ACTIONS(3053), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2265), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1454), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3049), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [55168] = 19, - ACTIONS(3), 1, + [143030] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3055), 1, - anon_sym_RBRACE, - ACTIONS(3059), 1, - anon_sym_POUND, - ACTIONS(3061), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7217), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1456), 2, + STATE(2691), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3057), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55240] = 19, - ACTIONS(3), 1, + [143110] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3063), 1, - anon_sym_RBRACE, - ACTIONS(3067), 1, - anon_sym_POUND, - ACTIONS(3069), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2245), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1463), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3065), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [55312] = 20, - ACTIONS(57), 1, + [143190] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3071), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2710), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2188), 1, + sym_arithmetic_expression, + STATE(2658), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [55386] = 19, - ACTIONS(3), 1, + [143270] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3079), 1, - anon_sym_RBRACE, - ACTIONS(3083), 1, - anon_sym_POUND, - ACTIONS(3085), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7219), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1469), 2, + STATE(2647), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3081), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55458] = 19, - ACTIONS(3), 1, + [143350] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5225), 1, + sym_extglob_pattern, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3087), 1, - anon_sym_RBRACE, - ACTIONS(3091), 1, - anon_sym_POUND, - ACTIONS(3093), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7221), 1, + sym_word, + STATE(4943), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1471), 2, + STATE(5248), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3089), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_extglob_blob, + ACTIONS(7223), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4806), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55530] = 19, - ACTIONS(3), 1, + [143430] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3095), 1, - anon_sym_RBRACE, - ACTIONS(3099), 1, - anon_sym_POUND, - ACTIONS(3101), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2246), 1, + sym_arithmetic_expression, + STATE(2693), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1473), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3097), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [55602] = 19, - ACTIONS(3), 1, + [143510] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, + anon_sym_DOLLAR, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6984), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6986), 1, + anon_sym_BQUOTE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, + sym_semgrep_named_ellipsis, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2213), 1, + sym_arithmetic_expression, + STATE(2646), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, + sym_raw_string, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, + sym_command_substitution, + [143590] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3103), 1, - anon_sym_RBRACE, - ACTIONS(3107), 1, - anon_sym_POUND, - ACTIONS(3109), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7225), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1475), 2, + STATE(2687), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3105), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55674] = 19, + [143670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2896), 1, + anon_sym_DQUOTE, + ACTIONS(7227), 1, + aux_sym_for_statement_token1, + STATE(3403), 1, + sym_orig_simple_variable_name, + STATE(3459), 1, + sym_string, + ACTIONS(943), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(7229), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + ACTIONS(941), 19, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [143722] = 22, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3111), 1, - anon_sym_RBRACE, - ACTIONS(3115), 1, - anon_sym_POUND, - ACTIONS(3117), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7231), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1478), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3113), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55746] = 19, - ACTIONS(3), 1, + [143802] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3119), 1, - anon_sym_RBRACE, - ACTIONS(3123), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7233), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1480), 2, + STATE(2689), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3121), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55818] = 19, - ACTIONS(3), 1, + [143882] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3127), 1, - anon_sym_RBRACE, - ACTIONS(3131), 1, - anon_sym_POUND, - ACTIONS(3133), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7235), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1487), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3129), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + anon_sym_GT_LPAREN, + STATE(2666), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55890] = 19, - ACTIONS(3), 1, + [143962] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3135), 1, - anon_sym_RBRACE, - ACTIONS(3139), 1, - anon_sym_POUND, - ACTIONS(3141), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7237), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1518), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3137), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [55962] = 19, - ACTIONS(3), 1, + [144042] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3143), 1, - anon_sym_RBRACE, - ACTIONS(3147), 1, - anon_sym_POUND, - ACTIONS(3149), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7239), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1493), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3145), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56034] = 19, - ACTIONS(3), 1, + [144122] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3151), 1, - anon_sym_RBRACE, - ACTIONS(3155), 1, - anon_sym_POUND, - ACTIONS(3157), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2239), 1, + sym_arithmetic_expression, + STATE(2694), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1495), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3153), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56106] = 19, - ACTIONS(3), 1, + [144202] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3159), 1, - anon_sym_RBRACE, - ACTIONS(3163), 1, - anon_sym_POUND, - ACTIONS(3165), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2252), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1497), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3161), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56178] = 19, - ACTIONS(3), 1, + [144282] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3167), 1, - anon_sym_RBRACE, - ACTIONS(3171), 1, - anon_sym_POUND, - ACTIONS(3173), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2299), 1, + sym_arithmetic_expression, + STATE(2645), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1499), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3169), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56250] = 19, - ACTIONS(3), 1, + [144362] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3175), 1, - anon_sym_RBRACE, - ACTIONS(3179), 1, - anon_sym_POUND, - ACTIONS(3181), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2253), 1, + sym_arithmetic_expression, + STATE(2657), 1, + aux_sym_compound_statement_repeat1, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1502), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3177), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56322] = 19, - ACTIONS(3), 1, + [144442] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(6922), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6932), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(3183), 1, - anon_sym_RBRACE, - ACTIONS(3187), 1, - anon_sym_POUND, - ACTIONS(3189), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7241), 1, + anon_sym_RPAREN, + STATE(3941), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1504), 2, + STATE(2666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3185), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6936), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3687), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56394] = 19, - ACTIONS(3), 1, + [144522] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2978), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3010), 1, + sym_brace_start, + ACTIONS(7243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7247), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7249), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7253), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7259), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7261), 1, sym_semgrep_named_ellipsis, - ACTIONS(3191), 1, - anon_sym_RBRACE, - ACTIONS(3195), 1, - anon_sym_POUND, - ACTIONS(3197), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1655), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7257), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1511), 2, + STATE(582), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3193), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3008), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1285), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56466] = 19, - ACTIONS(3), 1, + [144599] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2717), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7267), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(3199), 1, - anon_sym_RBRACE, - ACTIONS(3203), 1, - anon_sym_POUND, - ACTIONS(3205), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1502), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7277), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1515), 2, + STATE(599), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3201), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2747), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56538] = 19, - ACTIONS(3), 1, + [144676] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2717), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7267), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(3207), 1, - anon_sym_RBRACE, - ACTIONS(3211), 1, - anon_sym_POUND, - ACTIONS(3213), 1, - sym_regex, - STATE(2343), 1, + STATE(1502), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7277), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1517), 2, + STATE(600), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3209), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2747), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56610] = 19, - ACTIONS(3), 1, + [144753] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(3215), 1, - anon_sym_RBRACE, - ACTIONS(3219), 1, - anon_sym_POUND, - ACTIONS(3221), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(7283), 1, + sym_word, + STATE(1754), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1519), 2, + STATE(616), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3217), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7285), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1642), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56682] = 19, - ACTIONS(3), 1, + [144830] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(3227), 1, - anon_sym_POUND, - ACTIONS(3229), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(7283), 1, + sym_word, + STATE(1754), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1521), 2, + STATE(625), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3225), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7285), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1642), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [56754] = 19, - ACTIONS(3), 1, + [144907] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3231), 1, - anon_sym_RBRACE, - ACTIONS(3235), 1, - anon_sym_POUND, - ACTIONS(3237), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2130), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1523), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3233), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56826] = 19, - ACTIONS(3), 1, + [144984] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3239), 1, - anon_sym_RBRACE, - ACTIONS(3243), 1, - anon_sym_POUND, - ACTIONS(3245), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2131), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1526), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3241), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56898] = 19, - ACTIONS(3), 1, + [145061] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3247), 1, - anon_sym_RBRACE, - ACTIONS(3251), 1, - anon_sym_POUND, - ACTIONS(3253), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2132), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1528), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3249), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [56970] = 19, - ACTIONS(3), 1, + [145138] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, + anon_sym_DOLLAR, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6984), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6986), 1, + anon_sym_BQUOTE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, + sym_semgrep_named_ellipsis, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2133), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, + sym_raw_string, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, + sym_command_substitution, + [145215] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4576), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(4582), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4608), 1, + sym_brace_start, + ACTIONS(7287), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7289), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7291), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7297), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7299), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7303), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7305), 1, sym_semgrep_named_ellipsis, - ACTIONS(3255), 1, - anon_sym_RBRACE, - ACTIONS(3259), 1, - anon_sym_POUND, - ACTIONS(3261), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(2407), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1535), 2, + STATE(1111), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3257), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(4606), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2176), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57042] = 19, - ACTIONS(3), 1, + [145292] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4576), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(4582), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4608), 1, + sym_brace_start, + ACTIONS(7287), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7289), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7291), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7297), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7299), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7303), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7305), 1, sym_semgrep_named_ellipsis, - ACTIONS(3263), 1, - anon_sym_RBRACE, - ACTIONS(3267), 1, - anon_sym_POUND, - ACTIONS(3269), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(2407), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1539), 2, + STATE(1115), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3265), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(4606), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2176), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57114] = 19, - ACTIONS(3), 1, + [145369] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4185), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4191), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4193), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4195), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4207), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4215), 1, sym_semgrep_named_ellipsis, - ACTIONS(3271), 1, - anon_sym_RBRACE, - ACTIONS(3275), 1, - anon_sym_POUND, - ACTIONS(3277), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(4217), 1, + sym_brace_start, + STATE(2141), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1541), 2, + STATE(911), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3273), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(4197), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1895), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57186] = 19, - ACTIONS(3), 1, + [145446] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4185), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4191), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4193), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4195), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3279), 1, - anon_sym_RBRACE, - ACTIONS(3283), 1, - anon_sym_POUND, - ACTIONS(3285), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(4207), 1, + anon_sym_BQUOTE, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, + anon_sym_LT_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym_semgrep_named_ellipsis, + ACTIONS(4217), 1, + sym_brace_start, + STATE(2141), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1543), 2, + STATE(912), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3281), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(4197), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1895), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57258] = 19, - ACTIONS(3), 1, + [145523] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(3976), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3978), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3998), 1, sym_semgrep_named_ellipsis, - ACTIONS(3287), 1, - anon_sym_RBRACE, - ACTIONS(3291), 1, - anon_sym_POUND, - ACTIONS(3293), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(4000), 1, + sym_brace_start, + STATE(1957), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1545), 2, + STATE(705), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3289), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3980), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1795), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57330] = 19, - ACTIONS(3), 1, + [145600] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(3976), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3978), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3998), 1, sym_semgrep_named_ellipsis, - ACTIONS(3295), 1, - anon_sym_RBRACE, - ACTIONS(3299), 1, - anon_sym_POUND, - ACTIONS(3301), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(4000), 1, + sym_brace_start, + STATE(1957), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1547), 2, + STATE(707), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3297), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3980), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1795), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57402] = 19, - ACTIONS(3), 1, + [145677] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3303), 1, - anon_sym_RBRACE, - ACTIONS(3307), 1, - anon_sym_POUND, - ACTIONS(3309), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2547), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1550), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3305), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [57474] = 19, - ACTIONS(3), 1, + [145754] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(3311), 1, - anon_sym_RBRACE, - ACTIONS(3315), 1, - anon_sym_POUND, - ACTIONS(3317), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(7341), 1, + sym_word, + STATE(1046), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1552), 2, + STATE(495), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3313), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7343), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(735), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57546] = 19, - ACTIONS(3), 1, + [145831] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(3319), 1, - anon_sym_RBRACE, - ACTIONS(3323), 1, - anon_sym_POUND, - ACTIONS(3325), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(7341), 1, + sym_word, + STATE(1046), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1558), 2, + STATE(496), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3321), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7343), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(735), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57618] = 19, - ACTIONS(3), 1, + [145908] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2667), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2699), 1, + sym_brace_start, + ACTIONS(7345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7349), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7351), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7355), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7357), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7363), 1, sym_semgrep_named_ellipsis, - ACTIONS(3327), 1, - anon_sym_RBRACE, - ACTIONS(3331), 1, - anon_sym_POUND, - ACTIONS(3333), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1591), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1562), 2, + STATE(556), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3329), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2697), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1260), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57690] = 19, - ACTIONS(3), 1, + [145985] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2667), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2699), 1, + sym_brace_start, + ACTIONS(7345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7349), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7351), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7355), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7357), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7363), 1, sym_semgrep_named_ellipsis, - ACTIONS(3335), 1, - anon_sym_RBRACE, - ACTIONS(3339), 1, - anon_sym_POUND, - ACTIONS(3341), 1, - sym_regex, - STATE(2343), 1, + STATE(1591), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1564), 2, + STATE(557), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3337), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2697), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1260), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57762] = 19, - ACTIONS(3), 1, + [146062] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3343), 1, - anon_sym_RBRACE, - ACTIONS(3347), 1, - anon_sym_POUND, - ACTIONS(3349), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2419), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1566), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3345), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [57834] = 19, - ACTIONS(3), 1, + [146139] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2138), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2144), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2170), 1, + sym_brace_start, + ACTIONS(7399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7401), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7403), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7405), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7409), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7411), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7415), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7417), 1, sym_semgrep_named_ellipsis, - ACTIONS(3351), 1, - anon_sym_RBRACE, - ACTIONS(3355), 1, - anon_sym_POUND, - ACTIONS(3357), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1389), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1568), 2, + STATE(532), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3353), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2168), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1143), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57906] = 19, - ACTIONS(3), 1, + [146216] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2138), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2144), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2170), 1, + sym_brace_start, + ACTIONS(7399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7401), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7403), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7405), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7409), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7411), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7415), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7417), 1, sym_semgrep_named_ellipsis, - ACTIONS(3359), 1, - anon_sym_RBRACE, - ACTIONS(3363), 1, - anon_sym_POUND, - ACTIONS(3365), 1, - sym_regex, - STATE(2343), 1, + STATE(1389), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1570), 2, + STATE(533), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3361), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2168), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1143), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [57978] = 19, - ACTIONS(3), 1, + [146293] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(3367), 1, - anon_sym_RBRACE, - ACTIONS(3371), 1, - anon_sym_POUND, - ACTIONS(3373), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(7419), 1, + sym_word, + STATE(1100), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1573), 2, + STATE(509), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3369), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7421), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(763), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [58050] = 19, - ACTIONS(3), 1, + [146370] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(3375), 1, - anon_sym_RBRACE, - ACTIONS(3379), 1, - anon_sym_POUND, - ACTIONS(3381), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(7419), 1, + sym_word, + STATE(1100), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1575), 2, + STATE(507), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3377), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7421), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(763), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [58122] = 19, - ACTIONS(3), 1, + [146447] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3383), 1, - anon_sym_RBRACE, - ACTIONS(3387), 1, - anon_sym_POUND, - ACTIONS(3389), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2522), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1582), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3385), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58194] = 19, - ACTIONS(3), 1, + [146524] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3391), 1, - anon_sym_RBRACE, - ACTIONS(3395), 1, - anon_sym_POUND, - ACTIONS(3397), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2523), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1586), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3393), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58266] = 19, - ACTIONS(3), 1, + [146601] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2978), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3010), 1, + sym_brace_start, + ACTIONS(7243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7247), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7249), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7253), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7259), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7261), 1, sym_semgrep_named_ellipsis, - ACTIONS(3399), 1, - anon_sym_RBRACE, - ACTIONS(3403), 1, - anon_sym_POUND, - ACTIONS(3405), 1, - sym_regex, - STATE(2343), 1, + STATE(1655), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7257), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1588), 2, + STATE(584), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3401), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3008), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1285), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [58338] = 19, + [146678] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7057), 1, + anon_sym_PERCENT, + ACTIONS(7059), 1, + anon_sym_COLON, + ACTIONS(7063), 1, + anon_sym_RBRACE3, + ACTIONS(7423), 1, + anon_sym_AT2, + STATE(4933), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(7073), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(7061), 3, + sym_immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(7071), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + STATE(5633), 6, + sym_expansion_expression, + sym_expansion_regex, + sym_expansion_regex_replacement, + sym_expansion_regex_removal, + sym_expansion_max_length, + sym_expansion_operator, + ACTIONS(7069), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [146741] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2574), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2580), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2592), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2606), 1, + sym_brace_start, + ACTIONS(7425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3407), 1, - anon_sym_RBRACE, - ACTIONS(3411), 1, - anon_sym_POUND, - ACTIONS(3413), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1480), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1818), 2, + STATE(551), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3409), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2604), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1239), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [58410] = 19, - ACTIONS(3), 1, + [146818] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2574), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2580), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2592), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2606), 1, + sym_brace_start, + ACTIONS(7425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3415), 1, - anon_sym_RBRACE, - ACTIONS(3419), 1, - anon_sym_POUND, - ACTIONS(3421), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1480), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1592), 2, + STATE(552), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3417), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2604), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1239), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [58482] = 19, - ACTIONS(3), 1, + [146895] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3423), 1, - anon_sym_RBRACE, - ACTIONS(3427), 1, - anon_sym_POUND, - ACTIONS(3429), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2524), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1594), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3425), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58554] = 19, - ACTIONS(3), 1, + [146972] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3431), 1, - anon_sym_RBRACE, - ACTIONS(3435), 1, - anon_sym_POUND, - ACTIONS(3437), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2525), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1597), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3433), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58626] = 19, - ACTIONS(3), 1, + [147049] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3439), 1, - anon_sym_RBRACE, - ACTIONS(3443), 1, - anon_sym_POUND, - ACTIONS(3445), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2526), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1599), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3441), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58698] = 19, - ACTIONS(3), 1, + [147126] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3447), 1, - anon_sym_RBRACE, - ACTIONS(3451), 1, - anon_sym_POUND, - ACTIONS(3453), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2421), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1606), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3449), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58770] = 19, - ACTIONS(3), 1, + [147203] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3455), 1, - anon_sym_RBRACE, - ACTIONS(3459), 1, - anon_sym_POUND, - ACTIONS(3461), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2527), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1610), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3457), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58842] = 19, - ACTIONS(3), 1, + [147280] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3463), 1, - anon_sym_RBRACE, - ACTIONS(3467), 1, - anon_sym_POUND, - ACTIONS(3469), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2528), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1612), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3465), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58914] = 19, - ACTIONS(3), 1, + [147357] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3471), 1, - anon_sym_RBRACE, - ACTIONS(3475), 1, - anon_sym_POUND, - ACTIONS(3477), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2529), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1614), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3473), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [58986] = 19, - ACTIONS(3), 1, + [147434] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3479), 1, - anon_sym_RBRACE, - ACTIONS(3483), 1, - anon_sym_POUND, - ACTIONS(3485), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2179), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1616), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3481), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59058] = 19, - ACTIONS(3), 1, + [147511] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3487), 1, - anon_sym_RBRACE, - ACTIONS(3491), 1, - anon_sym_POUND, - ACTIONS(3493), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2532), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1618), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3489), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59130] = 19, - ACTIONS(3), 1, + [147588] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3495), 1, - anon_sym_RBRACE, - ACTIONS(3499), 1, - anon_sym_POUND, - ACTIONS(3501), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2491), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1621), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3497), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59202] = 19, - ACTIONS(3), 1, + [147665] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3503), 1, - anon_sym_RBRACE, - ACTIONS(3507), 1, - anon_sym_POUND, - ACTIONS(3509), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2021), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3505), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59274] = 19, - ACTIONS(3), 1, + [147742] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3511), 1, - anon_sym_RBRACE, - ACTIONS(3515), 1, - anon_sym_POUND, - ACTIONS(3517), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2533), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1630), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3513), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59346] = 19, - ACTIONS(3), 1, + [147819] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3519), 1, - anon_sym_RBRACE, - ACTIONS(3523), 1, - anon_sym_POUND, - ACTIONS(3525), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2535), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1633), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3521), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59418] = 19, - ACTIONS(3), 1, + [147896] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3527), 1, - anon_sym_RBRACE, - ACTIONS(3531), 1, - anon_sym_POUND, - ACTIONS(3533), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2543), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1635), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3529), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59490] = 19, - ACTIONS(3), 1, + [147973] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3535), 1, - anon_sym_RBRACE, - ACTIONS(3539), 1, - anon_sym_POUND, - ACTIONS(3541), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2482), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1637), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3537), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59562] = 19, - ACTIONS(3), 1, + [148050] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6341), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(3543), 1, - anon_sym_RBRACE, - ACTIONS(3547), 1, - anon_sym_POUND, - ACTIONS(3549), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(7445), 1, + sym_word, + STATE(2397), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1639), 2, + STATE(1066), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3545), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7447), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2173), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [59634] = 19, - ACTIONS(3), 1, + [148127] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3551), 1, - anon_sym_RBRACE, - ACTIONS(3555), 1, - anon_sym_POUND, - ACTIONS(3557), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2544), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1641), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3553), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59706] = 19, - ACTIONS(3), 1, + [148204] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6341), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(3559), 1, - anon_sym_RBRACE, - ACTIONS(3563), 1, - anon_sym_POUND, - ACTIONS(3565), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(7445), 1, + sym_word, + STATE(2397), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1644), 2, + STATE(1052), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3561), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7447), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2173), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [59778] = 19, - ACTIONS(3), 1, + [148281] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6115), 1, + sym_word, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7453), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(3567), 1, - anon_sym_RBRACE, - ACTIONS(3571), 1, - anon_sym_POUND, - ACTIONS(3573), 1, - sym_regex, - STATE(2343), 1, + STATE(3530), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1646), 2, + STATE(2337), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3569), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6121), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [59850] = 19, - ACTIONS(3), 1, + [148358] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2540), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2552), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2562), 1, sym_semgrep_named_ellipsis, - ACTIONS(3575), 1, - anon_sym_RBRACE, - ACTIONS(3579), 1, - anon_sym_POUND, - ACTIONS(3581), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(2566), 1, + sym_brace_start, + ACTIONS(7469), 1, + sym_word, + ACTIONS(7473), 1, + sym_regex, + STATE(1750), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1780), 1, + sym_concatenation, + ACTIONS(2558), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1653), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3577), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7471), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1644), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [59922] = 19, - ACTIONS(3), 1, + [148437] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3583), 1, - anon_sym_RBRACE, - ACTIONS(3587), 1, - anon_sym_POUND, - ACTIONS(3589), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2134), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1657), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3585), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [59994] = 19, - ACTIONS(3), 1, + [148514] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3591), 1, - anon_sym_RBRACE, - ACTIONS(3595), 1, - anon_sym_POUND, - ACTIONS(3597), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2135), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1659), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3593), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60066] = 19, - ACTIONS(3), 1, + [148591] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3599), 1, - anon_sym_RBRACE, - ACTIONS(3603), 1, - anon_sym_POUND, - ACTIONS(3605), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2497), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1661), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3601), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60138] = 19, - ACTIONS(3), 1, + [148668] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3607), 1, - anon_sym_RBRACE, - ACTIONS(3611), 1, - anon_sym_POUND, - ACTIONS(3613), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2498), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1663), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3609), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60210] = 19, - ACTIONS(3), 1, + [148745] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3615), 1, - anon_sym_RBRACE, - ACTIONS(3619), 1, - anon_sym_POUND, - ACTIONS(3621), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2499), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1665), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3617), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60282] = 19, - ACTIONS(3), 1, + [148822] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3623), 1, - anon_sym_RBRACE, - ACTIONS(3627), 1, - anon_sym_POUND, - ACTIONS(3629), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2136), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1668), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3625), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60354] = 19, - ACTIONS(3), 1, + [148899] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3631), 1, - anon_sym_RBRACE, - ACTIONS(3635), 1, - anon_sym_POUND, - ACTIONS(3637), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2138), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1670), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3633), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60426] = 19, - ACTIONS(3), 1, + [148976] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3639), 1, - anon_sym_RBRACE, - ACTIONS(3643), 1, - anon_sym_POUND, - ACTIONS(3645), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2150), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1677), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3641), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60498] = 19, - ACTIONS(3), 1, + [149053] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3647), 1, - anon_sym_RBRACE, - ACTIONS(3651), 1, - anon_sym_POUND, - ACTIONS(3653), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2555), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1681), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3649), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60570] = 19, - ACTIONS(3), 1, + [149130] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3655), 1, - anon_sym_RBRACE, - ACTIONS(3659), 1, - anon_sym_POUND, - ACTIONS(3661), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2125), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1683), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3657), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60642] = 19, + [149207] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(3663), 1, - anon_sym_RBRACE, - ACTIONS(3667), 1, - anon_sym_POUND, - ACTIONS(3669), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7477), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1685), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3665), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 3, + sym_special_character, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, + sym_test_operator, + sym_bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [60714] = 19, - ACTIONS(3), 1, + [149280] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3671), 1, - anon_sym_RBRACE, - ACTIONS(3675), 1, - anon_sym_POUND, - ACTIONS(3677), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2156), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1687), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3673), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60786] = 19, - ACTIONS(3), 1, + [149357] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3679), 1, - anon_sym_RBRACE, - ACTIONS(3683), 1, - anon_sym_POUND, - ACTIONS(3685), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2474), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1689), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3681), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60858] = 19, - ACTIONS(3), 1, + [149434] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3687), 1, - anon_sym_RBRACE, - ACTIONS(3691), 1, - anon_sym_POUND, - ACTIONS(3693), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2505), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1692), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3689), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [60930] = 19, - ACTIONS(3), 1, + [149511] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3695), 1, - anon_sym_RBRACE, - ACTIONS(3699), 1, - anon_sym_POUND, - ACTIONS(3701), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2495), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1694), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3697), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61002] = 19, - ACTIONS(3), 1, + [149588] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3703), 1, - anon_sym_RBRACE, - ACTIONS(3707), 1, - anon_sym_POUND, - ACTIONS(3709), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2427), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1701), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3705), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61074] = 19, - ACTIONS(3), 1, + [149665] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3711), 1, - anon_sym_RBRACE, - ACTIONS(3715), 1, - anon_sym_POUND, - ACTIONS(3717), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2034), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1705), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3713), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61146] = 19, - ACTIONS(3), 1, + [149742] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + ACTIONS(7481), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7487), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7489), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(3719), 1, - anon_sym_RBRACE, - ACTIONS(3723), 1, - anon_sym_POUND, - ACTIONS(3725), 1, - sym_regex, - STATE(2343), 1, + ACTIONS(7511), 1, + sym_brace_start, + STATE(1732), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1707), 2, + STATE(607), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3721), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7491), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1588), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [61218] = 19, - ACTIONS(3), 1, + [149819] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1264), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1292), 1, + sym_brace_start, + ACTIONS(7513), 1, + sym_word, + ACTIONS(7515), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7517), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7519), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7533), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7535), 1, sym_semgrep_named_ellipsis, - ACTIONS(3727), 1, - anon_sym_RBRACE, - ACTIONS(3731), 1, - anon_sym_POUND, - ACTIONS(3733), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7537), 1, + sym_regex, + STATE(1074), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1181), 1, + sym_concatenation, + ACTIONS(7531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1709), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3729), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7523), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(764), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [61290] = 19, - ACTIONS(3), 1, + [149898] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + ACTIONS(7481), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7487), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7489), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(3739), 1, - anon_sym_POUND, - ACTIONS(3741), 1, - anon_sym_SLASH, - STATE(2343), 1, + ACTIONS(7511), 1, + sym_brace_start, + STATE(1732), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1711), 2, + STATE(595), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3737), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7491), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1588), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [61362] = 19, - ACTIONS(3), 1, + [149975] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3743), 1, - anon_sym_RBRACE, - ACTIONS(3747), 1, - anon_sym_POUND, - ACTIONS(3749), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2178), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1713), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3745), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61434] = 19, - ACTIONS(3), 1, + [150052] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3751), 1, - anon_sym_RBRACE, - ACTIONS(3755), 1, - anon_sym_POUND, - ACTIONS(3757), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2488), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1716), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3753), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61506] = 19, - ACTIONS(3), 1, + [150129] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3759), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_POUND, - ACTIONS(3765), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2566), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1718), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3761), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61578] = 19, - ACTIONS(3), 1, + [150206] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3767), 1, - anon_sym_RBRACE, - ACTIONS(3771), 1, - anon_sym_POUND, - ACTIONS(3773), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2570), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3769), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61650] = 19, - ACTIONS(3), 1, + [150283] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(3775), 1, - anon_sym_RBRACE, - ACTIONS(3779), 1, - anon_sym_POUND, - ACTIONS(3781), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2509), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1729), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3777), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61722] = 19, + [150360] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7057), 1, + anon_sym_PERCENT, + ACTIONS(7059), 1, + anon_sym_COLON, + ACTIONS(7423), 1, + anon_sym_AT2, + ACTIONS(7539), 1, + anon_sym_RBRACE3, + STATE(4902), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(7073), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(7061), 3, + sym_immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(7071), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + STATE(5691), 6, + sym_expansion_expression, + sym_expansion_regex, + sym_expansion_regex_replacement, + sym_expansion_regex_removal, + sym_expansion_max_length, + sym_expansion_operator, + ACTIONS(7069), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [150423] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3783), 1, - anon_sym_RBRACE, - ACTIONS(3787), 1, - anon_sym_POUND, - ACTIONS(3789), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2572), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1731), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3785), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61794] = 19, - ACTIONS(3), 1, + [150500] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3791), 1, - anon_sym_RBRACE, - ACTIONS(3795), 1, - anon_sym_POUND, - ACTIONS(3797), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2573), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1733), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3793), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61866] = 19, - ACTIONS(3), 1, + [150577] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(3803), 1, - anon_sym_POUND, - ACTIONS(3805), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2531), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1735), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3801), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [61938] = 19, - ACTIONS(3), 1, + [150654] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3807), 1, - anon_sym_RBRACE, - ACTIONS(3811), 1, - anon_sym_POUND, - ACTIONS(3813), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2575), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1737), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3809), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62010] = 19, - ACTIONS(3), 1, + [150731] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3815), 1, - anon_sym_RBRACE, - ACTIONS(3819), 1, - anon_sym_POUND, - ACTIONS(3821), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2164), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1740), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3817), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62082] = 19, - ACTIONS(3), 1, + [150808] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3823), 1, - anon_sym_RBRACE, - ACTIONS(3827), 1, - anon_sym_POUND, - ACTIONS(3829), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2165), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1742), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3825), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62154] = 19, - ACTIONS(3), 1, + [150885] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3831), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, - anon_sym_POUND, - ACTIONS(3837), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2595), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1749), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3833), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62226] = 19, - ACTIONS(3), 1, + [150962] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3839), 1, - anon_sym_RBRACE, - ACTIONS(3843), 1, - anon_sym_POUND, - ACTIONS(3845), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2598), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1753), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3841), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62298] = 19, - ACTIONS(3), 1, + [151039] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3847), 1, - anon_sym_RBRACE, - ACTIONS(3851), 1, - anon_sym_POUND, - ACTIONS(3853), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2599), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1755), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3849), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62370] = 19, - ACTIONS(3), 1, + [151116] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3855), 1, - anon_sym_RBRACE, - ACTIONS(3859), 1, - anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2025), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1757), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3857), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62442] = 19, - ACTIONS(3), 1, + [151193] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3863), 1, - anon_sym_RBRACE, - ACTIONS(3867), 1, - anon_sym_POUND, - ACTIONS(3869), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2402), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1759), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3865), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62514] = 19, - ACTIONS(3), 1, + [151270] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3871), 1, - anon_sym_RBRACE, - ACTIONS(3875), 1, - anon_sym_POUND, - ACTIONS(3877), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2602), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1761), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3873), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62586] = 19, - ACTIONS(3), 1, + [151347] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3879), 1, - anon_sym_RBRACE, - ACTIONS(3883), 1, - anon_sym_POUND, - ACTIONS(3885), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2603), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1764), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3881), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62658] = 19, - ACTIONS(3), 1, + [151424] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3887), 1, - anon_sym_RBRACE, - ACTIONS(3891), 1, - anon_sym_POUND, - ACTIONS(3893), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2607), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1766), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3889), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62730] = 20, - ACTIONS(57), 1, + [151501] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3895), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2682), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2127), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62804] = 19, - ACTIONS(3), 1, + [151578] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3897), 1, - anon_sym_RBRACE, - ACTIONS(3901), 1, - anon_sym_POUND, - ACTIONS(3903), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2031), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1810), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3899), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62876] = 20, - ACTIONS(57), 1, + [151655] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3905), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2673), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2470), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [62950] = 20, - ACTIONS(57), 1, + [151732] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3907), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2674), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2608), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63024] = 20, - ACTIONS(57), 1, + [151809] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3909), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2675), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2609), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63098] = 20, - ACTIONS(57), 1, + [151886] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7541), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7475), 3, sym_special_character, - ACTIONS(3077), 1, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, sym_test_operator, - ACTIONS(3911), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2676), 1, - sym_expression, - ACTIONS(1965), 2, + sym_bare_dollar, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [63172] = 20, - ACTIONS(57), 1, + [151959] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(1156), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1168), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(1184), 1, + sym_brace_start, + ACTIONS(7543), 1, + sym_word, + ACTIONS(7545), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7549), 1, + sym_special_character, + ACTIONS(7551), 1, + anon_sym_DQUOTE, + ACTIONS(7555), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7557), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7565), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3913), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, + ACTIONS(7567), 1, + sym_regex, + STATE(956), 1, aux_sym_for_statement_repeat1, - STATE(2679), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, + STATE(1077), 1, + sym_concatenation, + ACTIONS(7561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(7553), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(676), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [63246] = 20, - ACTIONS(57), 1, + [152038] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3915), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2680), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2035), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63320] = 20, - ACTIONS(57), 1, + [152115] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3917), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2681), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2485), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63394] = 20, - ACTIONS(57), 1, + [152192] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(3919), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2683), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2128), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63468] = 20, - ACTIONS(57), 1, + [152269] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(665), 1, + anon_sym_DQUOTE, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7569), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7475), 3, sym_special_character, - ACTIONS(3077), 1, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, sym_test_operator, - ACTIONS(3921), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2694), 1, - sym_expression, - ACTIONS(1965), 2, + sym_bare_dollar, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [63542] = 20, - ACTIONS(57), 1, + [152342] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1843), 1, - sym_word, - ACTIONS(1849), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, anon_sym_BANG, - ACTIONS(1851), 1, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(3923), 1, - anon_sym_LPAREN, - ACTIONS(3925), 1, - sym_special_character, - ACTIONS(3927), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(3931), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(3939), 1, - sym_test_operator, - ACTIONS(3941), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3945), 1, - sym_regex, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2355), 1, - sym_expression, - ACTIONS(3929), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2041), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63616] = 19, - ACTIONS(3), 1, + [152419] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3947), 1, - anon_sym_RBRACE, - ACTIONS(3951), 1, - anon_sym_POUND, - ACTIONS(3953), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2504), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1809), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3949), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63688] = 19, - ACTIONS(3), 1, + [152496] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3955), 1, - anon_sym_RBRACE, - ACTIONS(3959), 1, - anon_sym_POUND, - ACTIONS(3961), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2043), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1567), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3957), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63760] = 19, - ACTIONS(3), 1, + [152573] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3963), 1, - anon_sym_RBRACE, - ACTIONS(3967), 1, - anon_sym_POUND, - ACTIONS(3969), 1, - anon_sym_SLASH, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2536), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1345), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3965), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63832] = 19, - ACTIONS(3), 1, + [152650] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3971), 1, - anon_sym_RBRACE, - ACTIONS(3975), 1, - anon_sym_POUND, - ACTIONS(3977), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2044), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1779), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3973), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63904] = 19, - ACTIONS(3), 1, + [152727] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3979), 1, - anon_sym_RBRACE, - ACTIONS(3983), 1, - anon_sym_POUND, - ACTIONS(3985), 1, - sym_regex, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2542), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1732), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(3981), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [63976] = 20, - ACTIONS(57), 1, + [152804] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3987), 1, - sym_word, - ACTIONS(3989), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(3991), 1, + ACTIONS(6964), 1, anon_sym_BANG, - ACTIONS(3993), 1, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(3995), 1, - sym_special_character, - ACTIONS(3997), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4015), 1, - sym_regex, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2697), 1, - sym_expression, - ACTIONS(3999), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2045), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64050] = 20, - ACTIONS(57), 1, + [152881] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(7311), 1, anon_sym_BANG, - ACTIONS(4023), 1, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, - sym_special_character, - ACTIONS(4027), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4045), 1, - sym_regex, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2713), 1, - sym_expression, - ACTIONS(4029), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2548), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64124] = 20, - ACTIONS(57), 1, + [152958] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(6974), 1, + anon_sym_DQUOTE, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - ACTIONS(4047), 1, - anon_sym_RPAREN_RPAREN, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2709), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2046), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64198] = 20, - ACTIONS(57), 1, + [153035] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(1981), 1, - sym_regex, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2530), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2578), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64272] = 19, - ACTIONS(3), 1, + [153112] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2840), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7575), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(4053), 1, - anon_sym_POUND, - ACTIONS(4055), 1, - anon_sym_SLASH, - STATE(2343), 1, + STATE(1598), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1491), 2, + STATE(567), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4051), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2870), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [64344] = 18, - ACTIONS(3), 1, + [153189] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4057), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2047), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64413] = 18, - ACTIONS(3), 1, + [153266] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4063), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2588), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64482] = 18, - ACTIONS(3), 1, + [153343] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4065), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2048), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64551] = 18, - ACTIONS(3), 1, + [153420] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4067), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2597), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64620] = 18, - ACTIONS(3), 1, + [153497] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2840), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7575), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4069), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(1598), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(571), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2870), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [64689] = 18, - ACTIONS(3), 1, + [153574] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2050), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64758] = 18, - ACTIONS(3), 1, + [153651] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4071), 1, - anon_sym_RBRACE, - ACTIONS(4075), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2610), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1317), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4073), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64827] = 18, - ACTIONS(3), 1, + [153728] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4071), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2051), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64896] = 18, - ACTIONS(3), 1, + [153805] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4077), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2613), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [64965] = 19, - ACTIONS(57), 1, + [153882] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(6964), 1, anon_sym_BANG, - ACTIONS(4023), 1, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, - sym_special_character, - ACTIONS(4027), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2713), 1, - sym_expression, - ACTIONS(4029), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2053), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65036] = 18, - ACTIONS(3), 1, + [153959] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4079), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2617), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65105] = 18, - ACTIONS(3), 1, + [154036] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6115), 1, + sym_word, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7453), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + STATE(3530), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(2330), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6121), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [65174] = 18, - ACTIONS(3), 1, + [154113] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(2647), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2395), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65243] = 18, - ACTIONS(3), 1, + [154190] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4081), 1, - anon_sym_RBRACE, - ACTIONS(4085), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2056), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1308), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4083), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65312] = 18, - ACTIONS(3), 1, + [154267] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4081), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2398), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65381] = 18, - ACTIONS(3), 1, + [154344] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4087), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2057), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65450] = 18, - ACTIONS(3), 1, + [154421] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4089), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2400), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65519] = 18, - ACTIONS(3), 1, + [154498] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4091), 1, - anon_sym_RBRACE, - ACTIONS(4095), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2059), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1326), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4093), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65588] = 18, - ACTIONS(3), 1, + [154575] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4097), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2403), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65657] = 18, - ACTIONS(3), 1, + [154652] = 22, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1372), 1, + sym_brace_start, + ACTIONS(7591), 1, + sym_word, + ACTIONS(7593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7597), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7599), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7605), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7611), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7613), 1, sym_semgrep_named_ellipsis, - ACTIONS(4099), 1, - anon_sym_RBRACE, - ACTIONS(4103), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(7615), 1, + sym_regex, + STATE(1063), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1228), 1, + sym_concatenation, + ACTIONS(7609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1313), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4101), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7601), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(874), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [65726] = 18, - ACTIONS(3), 1, + [154731] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4099), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2061), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65795] = 18, - ACTIONS(3), 1, + [154808] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4105), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2405), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65864] = 18, - ACTIONS(3), 1, + [154885] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4107), 1, - anon_sym_RBRACE, - ACTIONS(4111), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2063), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1314), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4109), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [65933] = 18, - ACTIONS(3), 1, + [154962] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4107), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2618), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66002] = 18, - ACTIONS(3), 1, + [155039] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4113), 1, - anon_sym_RBRACE, - ACTIONS(4117), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2065), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1315), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4115), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66071] = 18, - ACTIONS(3), 1, + [155116] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4113), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2409), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66140] = 18, - ACTIONS(3), 1, + [155193] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4119), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2066), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66209] = 18, - ACTIONS(3), 1, + [155270] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4121), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2411), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66278] = 18, - ACTIONS(3), 1, + [155347] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4123), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2068), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66347] = 18, - ACTIONS(3), 1, + [155424] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4091), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2414), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66416] = 18, + [155501] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4125), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7617), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 3, + sym_special_character, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, + sym_test_operator, + sym_bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [66485] = 18, - ACTIONS(3), 1, + [155574] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4127), 1, - anon_sym_RBRACE, - ACTIONS(4131), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2069), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1328), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4129), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66554] = 18, - ACTIONS(3), 1, + [155651] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4133), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2416), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66623] = 18, - ACTIONS(3), 1, + [155728] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4127), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2070), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66692] = 18, - ACTIONS(3), 1, + [155805] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4135), 1, - anon_sym_RBRACE, - ACTIONS(4139), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2418), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1340), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4137), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66761] = 18, - ACTIONS(3), 1, + [155882] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4135), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2071), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66830] = 18, - ACTIONS(3), 1, + [155959] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(2711), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2420), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66899] = 18, - ACTIONS(3), 1, + [156036] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4141), 1, - anon_sym_RBRACE, - ACTIONS(4145), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2072), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1332), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4143), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [66968] = 18, - ACTIONS(3), 1, + [156113] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4141), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2422), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67037] = 18, - ACTIONS(3), 1, + [156190] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4147), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2073), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67106] = 18, - ACTIONS(3), 1, + [156267] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4149), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2424), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67175] = 18, - ACTIONS(3), 1, + [156344] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4151), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2074), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67244] = 18, - ACTIONS(3), 1, + [156421] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4153), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2426), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67313] = 18, - ACTIONS(3), 1, + [156498] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4155), 1, - anon_sym_RBRACE, - ACTIONS(4159), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2075), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1337), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4157), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67382] = 18, - ACTIONS(3), 1, + [156575] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4155), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2428), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67451] = 18, - ACTIONS(3), 1, + [156652] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2717), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7267), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4161), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(1502), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7277), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(562), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2747), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [67520] = 18, - ACTIONS(3), 1, + [156729] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4163), 1, - anon_sym_RBRACE, - ACTIONS(4167), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2076), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1338), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4165), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67589] = 18, - ACTIONS(3), 1, + [156806] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4163), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2430), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67658] = 18, - ACTIONS(3), 1, + [156883] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4169), 1, - anon_sym_RBRACE, - ACTIONS(4173), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2077), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1339), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4171), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67727] = 18, - ACTIONS(3), 1, + [156960] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4169), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2431), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67796] = 18, - ACTIONS(3), 1, + [157037] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2717), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7267), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4175), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(1502), 1, + aux_sym_for_statement_repeat1, + ACTIONS(7277), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(565), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(2747), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1209), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [67865] = 18, - ACTIONS(3), 1, + [157114] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4177), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2078), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [67934] = 18, - ACTIONS(3), 1, + [157191] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4179), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2433), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68003] = 18, - ACTIONS(3), 1, + [157268] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4181), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2079), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68072] = 19, - ACTIONS(57), 1, + [157345] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(4021), 1, + ACTIONS(7311), 1, anon_sym_BANG, - ACTIONS(4023), 1, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, - sym_special_character, - ACTIONS(4027), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2666), 1, - sym_expression, - ACTIONS(4029), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2435), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68143] = 18, - ACTIONS(3), 1, + [157422] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4183), 1, - anon_sym_RBRACE, - ACTIONS(4187), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2080), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1416), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4185), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68212] = 18, - ACTIONS(3), 1, + [157499] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4189), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2437), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68281] = 18, - ACTIONS(3), 1, + [157576] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4183), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2281), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68350] = 18, - ACTIONS(3), 1, + [157653] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4191), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2081), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68419] = 18, - ACTIONS(3), 1, + [157730] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4193), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2439), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68488] = 18, - ACTIONS(3), 1, + [157807] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2082), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68557] = 18, - ACTIONS(3), 1, + [157884] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4195), 1, - anon_sym_RBRACE, - ACTIONS(4199), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2441), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1356), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4197), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68626] = 18, - ACTIONS(3), 1, + [157961] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4195), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2083), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68695] = 18, - ACTIONS(3), 1, + [158038] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4201), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2442), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68764] = 18, - ACTIONS(3), 1, + [158115] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4203), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2084), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68833] = 19, - ACTIONS(57), 1, + [158192] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(7321), 1, + anon_sym_DQUOTE, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2530), 1, - sym_expression, - ACTIONS(1965), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2444), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68904] = 18, - ACTIONS(3), 1, + [158269] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4205), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2085), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [68973] = 18, - ACTIONS(3), 1, + [158346] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4207), 1, - anon_sym_RBRACE, - ACTIONS(4211), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2446), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1361), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4209), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69042] = 18, - ACTIONS(3), 1, + [158423] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6379), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4207), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(7619), 1, + sym_word, + STATE(1110), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(505), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7621), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(819), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [69111] = 18, - ACTIONS(3), 1, + [158500] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4213), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2086), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69180] = 18, - ACTIONS(3), 1, + [158577] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4215), 1, - anon_sym_RBRACE, - ACTIONS(4219), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2448), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1362), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4217), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69249] = 18, - ACTIONS(3), 1, + [158654] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4215), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2087), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69318] = 18, - ACTIONS(3), 1, + [158731] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4221), 1, - anon_sym_RBRACE, - ACTIONS(4225), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2450), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1363), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4223), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69387] = 18, - ACTIONS(3), 1, + [158808] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4221), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2088), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69456] = 18, - ACTIONS(3), 1, + [158885] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4227), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2452), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69525] = 18, - ACTIONS(3), 1, + [158962] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4229), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2090), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69594] = 18, - ACTIONS(3), 1, + [159039] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4231), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2454), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69663] = 18, - ACTIONS(3), 1, + [159116] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7365), 1, + aux_sym_for_statement_token1, + ACTIONS(7367), 1, + anon_sym_LPAREN, + ACTIONS(7369), 1, + anon_sym_BANG, + ACTIONS(7375), 1, + anon_sym_TILDE, + ACTIONS(7377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7379), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7383), 1, + aux_sym_number_token1, + ACTIONS(7385), 1, + aux_sym_number_token2, + ACTIONS(7387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7391), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7395), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4233), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7397), 1, + sym_variable_name, + STATE(2417), 1, + sym_arithmetic_expression, + ACTIONS(7371), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7373), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7381), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2440), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2460), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69732] = 18, - ACTIONS(3), 1, + [159193] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(2199), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2091), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69801] = 18, - ACTIONS(3), 1, + [159270] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4235), 1, - anon_sym_RBRACE, - ACTIONS(4239), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2456), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1390), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4237), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69870] = 18, - ACTIONS(3), 1, + [159347] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4241), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2092), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [69939] = 18, - ACTIONS(3), 1, + [159424] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4235), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2459), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70008] = 18, + [159501] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(4243), 1, - anon_sym_RBRACE, - ACTIONS(4247), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7623), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1441), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4245), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 3, + sym_special_character, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, + sym_test_operator, + sym_bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [70077] = 18, - ACTIONS(3), 1, + [159574] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4249), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2093), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70146] = 18, - ACTIONS(3), 1, + [159651] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(2839), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2461), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70215] = 18, - ACTIONS(3), 1, + [159728] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3750), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3756), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3760), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3772), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3780), 1, sym_semgrep_named_ellipsis, - ACTIONS(4251), 1, - anon_sym_RBRACE, - ACTIONS(4255), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(3782), 1, + sym_brace_start, + ACTIONS(7625), 1, + sym_special_character, + STATE(2009), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1380), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4253), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(3776), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(759), 2, + sym_concatenation, + aux_sym_for_statement_repeat2, + ACTIONS(3762), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1837), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [70284] = 18, - ACTIONS(3), 1, + [159805] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4251), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2095), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70353] = 18, - ACTIONS(3), 1, + [159882] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4243), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2464), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70422] = 18, - ACTIONS(3), 1, + [159959] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4257), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2096), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70491] = 18, - ACTIONS(3), 1, + [160036] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4259), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2466), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70560] = 18, - ACTIONS(3), 1, + [160113] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4261), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2097), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70629] = 18, - ACTIONS(3), 1, + [160190] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4263), 1, - anon_sym_RBRACE, - ACTIONS(4267), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2467), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1385), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4265), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70698] = 18, - ACTIONS(3), 1, + [160267] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3750), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3756), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3760), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3772), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3780), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4263), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(3782), 1, + sym_brace_start, + ACTIONS(7625), 1, + sym_special_character, + STATE(2009), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(666), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3762), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1837), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [70767] = 18, - ACTIONS(3), 1, + [160344] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4269), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2098), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70836] = 18, - ACTIONS(3), 1, + [160421] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4271), 1, - anon_sym_RBRACE, - ACTIONS(4275), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2469), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1386), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4273), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70905] = 18, - ACTIONS(3), 1, + [160498] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4271), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2099), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [70974] = 18, - ACTIONS(3), 1, + [160575] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4277), 1, - anon_sym_RBRACE, - ACTIONS(4281), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2471), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1387), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4279), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71043] = 18, - ACTIONS(3), 1, + [160652] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6379), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4277), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(7619), 1, + sym_word, + STATE(1110), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(508), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(7621), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(819), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [71112] = 18, - ACTIONS(3), 1, + [160729] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4283), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2100), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71181] = 18, - ACTIONS(3), 1, + [160806] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4285), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2473), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71250] = 18, - ACTIONS(3), 1, + [160883] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4287), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2101), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71319] = 18, - ACTIONS(3), 1, + [160960] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4289), 1, - anon_sym_RBRACE, - ACTIONS(4293), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2476), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1400), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4291), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71388] = 18, - ACTIONS(3), 1, + [161037] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4289), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2102), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71457] = 18, - ACTIONS(3), 1, + [161114] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4295), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2477), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71526] = 18, - ACTIONS(3), 1, + [161191] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4297), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2016), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71595] = 18, - ACTIONS(3), 1, + [161268] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7307), 1, + aux_sym_for_statement_token1, + ACTIONS(7309), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + anon_sym_BANG, + ACTIONS(7317), 1, + anon_sym_TILDE, + ACTIONS(7319), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7321), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7325), 1, + aux_sym_number_token1, + ACTIONS(7327), 1, + aux_sym_number_token2, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7337), 1, sym_semgrep_named_ellipsis, - ACTIONS(4299), 1, - anon_sym_RBRACE, - ACTIONS(4303), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(7339), 1, + sym_variable_name, + STATE(2480), 1, + sym_arithmetic_expression, + ACTIONS(7313), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(7315), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(7323), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1412), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4301), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2587), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2615), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [71664] = 18, + [161345] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4299), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7627), 1, + anon_sym_RBRACK, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 3, + sym_special_character, + sym_comment_word, + sym_word, + ACTIONS(7479), 4, + sym_test_operator, + sym_bare_dollar, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [71733] = 18, - ACTIONS(3), 1, + [161418] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3689), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3695), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3711), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3719), 1, sym_semgrep_named_ellipsis, - ACTIONS(4305), 1, - anon_sym_RBRACE, - ACTIONS(4309), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(3721), 1, + sym_brace_start, + ACTIONS(7629), 1, + sym_special_character, + STATE(1883), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1413), 2, + STATE(657), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4307), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3701), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1743), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [71802] = 18, - ACTIONS(3), 1, + [161495] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(3689), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3695), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3711), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3719), 1, sym_semgrep_named_ellipsis, - ACTIONS(2903), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(3721), 1, + sym_brace_start, + ACTIONS(7629), 1, + sym_special_character, + STATE(1883), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(661), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(3701), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1743), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [71871] = 18, - ACTIONS(3), 1, + [161572] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2840), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7575), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4311), 1, - anon_sym_RBRACE, - ACTIONS(4315), 1, - anon_sym_POUND, - STATE(2343), 1, + STATE(1598), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1404), 2, + STATE(615), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4313), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2870), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [71940] = 18, - ACTIONS(3), 1, + [161649] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(2840), 1, sym_word, - ACTIONS(1915), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7575), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4311), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(1598), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(614), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(2870), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1308), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72009] = 18, - ACTIONS(3), 1, + [161726] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4305), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2129), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [72078] = 18, - ACTIONS(3), 1, + [161803] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6115), 1, + sym_word, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7453), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4317), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3530), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(2321), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6121), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72147] = 18, - ACTIONS(3), 1, + [161880] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(6115), 1, + sym_word, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7453), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4319), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3530), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(2327), 2, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + aux_sym_for_statement_repeat2, + ACTIONS(6121), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3378), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72216] = 18, - ACTIONS(3), 1, + [161957] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6960), 1, + aux_sym_for_statement_token1, + ACTIONS(6962), 1, + anon_sym_LPAREN, + ACTIONS(6964), 1, + anon_sym_BANG, + ACTIONS(6970), 1, + anon_sym_TILDE, + ACTIONS(6972), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6974), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6978), 1, + aux_sym_number_token1, + ACTIONS(6980), 1, + aux_sym_number_token2, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6990), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4321), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, + ACTIONS(6992), 1, + sym_variable_name, + STATE(2054), 1, + sym_arithmetic_expression, + ACTIONS(6966), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(6968), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(6976), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + sym_semgrep_metavariable, + STATE(2172), 5, + sym_subscript, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, + STATE(2064), 7, + sym_arithmetic_literal, + sym_arithmetic_binary_expression, + sym_arithmetic_ternary_expression, + sym_arithmetic_unary_expression, + sym_arithmetic_postfix_expression, + sym_arithmetic_parenthesized_expression, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [72285] = 18, + [162034] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6801), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6809), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6813), 1, + aux_sym_number_token1, + ACTIONS(6815), 1, + aux_sym_number_token2, + ACTIONS(6817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6819), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6823), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6829), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6831), 1, sym_semgrep_named_ellipsis, - ACTIONS(4323), 1, - anon_sym_RBRACE, - ACTIONS(4327), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6835), 1, + sym_brace_start, + ACTIONS(7633), 1, + anon_sym_DOLLAR, + ACTIONS(6825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1409), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4325), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7631), 2, + sym_comment_word, + sym_word, + ACTIONS(7635), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3198), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72354] = 18, + [162104] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(592), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(600), 1, + aux_sym_number_token1, + ACTIONS(602), 1, + aux_sym_number_token2, + ACTIONS(604), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(606), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(608), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(614), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(616), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4323), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(624), 1, + sym_brace_start, + ACTIONS(612), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7637), 2, + sym_comment_word, + sym_word, + ACTIONS(7639), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(798), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72423] = 18, + [162174] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3245), 1, + sym_brace_start, + ACTIONS(7643), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7645), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7647), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7651), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7653), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7655), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7657), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7661), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7663), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4329), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7641), 2, + sym_comment_word, + sym_word, + ACTIONS(7659), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7649), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3632), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72492] = 18, + [162244] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(4331), 1, - anon_sym_RBRACE, - ACTIONS(4335), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1410), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4333), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7665), 2, + sym_comment_word, + sym_word, + ACTIONS(7667), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(997), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72561] = 18, + [162314] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1442), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1472), 1, + sym_brace_start, + ACTIONS(6693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6705), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6707), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6713), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6715), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4331), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7669), 2, + sym_comment_word, + sym_word, + ACTIONS(7671), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(811), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72630] = 18, + [162384] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2170), 1, + sym_brace_start, + ACTIONS(7399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7401), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7405), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7409), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7411), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7415), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7417), 1, sym_semgrep_named_ellipsis, - ACTIONS(4337), 1, - anon_sym_RBRACE, - ACTIONS(4341), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7675), 1, + anon_sym_DOLLAR, + ACTIONS(7413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1411), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4339), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7673), 2, + sym_comment_word, + sym_word, + ACTIONS(7677), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1185), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72699] = 18, + [162454] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2110), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2116), 1, + aux_sym_number_token1, + ACTIONS(2118), 1, + aux_sym_number_token2, + ACTIONS(2122), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2136), 1, + sym_brace_start, + ACTIONS(7681), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7683), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7687), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7697), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7699), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4337), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7679), 2, + sym_comment_word, + sym_word, + ACTIONS(7695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7685), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1258), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72768] = 18, + [162524] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1372), 1, + sym_brace_start, + ACTIONS(7593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7599), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7605), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7611), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7613), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4343), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7701), 2, + sym_comment_word, + sym_word, + ACTIONS(7703), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(935), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72837] = 18, + [162594] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2984), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3010), 1, + sym_brace_start, + ACTIONS(7243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7249), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7253), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7259), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7261), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4345), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7257), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7705), 2, + sym_comment_word, + sym_word, + ACTIONS(7707), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1542), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72906] = 18, + [162664] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3219), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3245), 1, + sym_brace_start, + ACTIONS(7643), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7645), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7651), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7653), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7655), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7657), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7661), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7663), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4347), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7641), 2, + sym_comment_word, + sym_word, + ACTIONS(7659), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7649), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3632), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [72975] = 18, + [162734] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6727), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6731), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6735), 1, + aux_sym_number_token1, + ACTIONS(6737), 1, + aux_sym_number_token2, + ACTIONS(6739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6741), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6743), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6745), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6751), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6753), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4349), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6757), 1, + sym_brace_start, + ACTIONS(6747), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7709), 2, + sym_comment_word, + sym_word, + ACTIONS(7711), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3271), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73044] = 18, + [162804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4351), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7665), 2, + sym_comment_word, + sym_word, + ACTIONS(7667), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(997), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73113] = 19, - ACTIONS(57), 1, + [162874] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, + ACTIONS(2580), 1, anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2592), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(2606), 1, + sym_brace_start, + ACTIONS(7425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7431), 1, + anon_sym_DQUOTE, + ACTIONS(7433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7435), 1, anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, + ACTIONS(7437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(7443), 1, sym_semgrep_named_ellipsis, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2567), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, + ACTIONS(7439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(7715), 2, + sym_comment_word, + sym_word, + ACTIONS(7717), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1420), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73184] = 18, + [162944] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3071), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3097), 1, + sym_brace_start, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7727), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7731), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7737), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7739), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4353), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7719), 2, + sym_comment_word, + sym_word, + ACTIONS(7735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7725), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3436), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73253] = 18, + [163014] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4355), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7741), 2, + sym_comment_word, + sym_word, + ACTIONS(7743), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(995), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73322] = 18, + [163084] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6731), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6735), 1, + aux_sym_number_token1, + ACTIONS(6737), 1, + aux_sym_number_token2, + ACTIONS(6739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6741), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6743), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6745), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6751), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6753), 1, sym_semgrep_named_ellipsis, - ACTIONS(4357), 1, - anon_sym_RBRACE, - ACTIONS(4361), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6757), 1, + sym_brace_start, + ACTIONS(7745), 1, + anon_sym_DOLLAR, + ACTIONS(6747), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1446), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4359), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7709), 2, + sym_comment_word, + sym_word, + ACTIONS(7711), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3271), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73391] = 18, + [163154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(97), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(99), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(101), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(109), 1, + aux_sym_number_token1, + ACTIONS(111), 1, + aux_sym_number_token2, + ACTIONS(113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(117), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(123), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(125), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4363), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(129), 1, + sym_brace_start, + ACTIONS(121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7747), 2, + sym_comment_word, + sym_word, + ACTIONS(7749), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(422), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73460] = 18, - ACTIONS(3), 1, + [163224] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4278), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4280), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4292), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4300), 1, sym_semgrep_named_ellipsis, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(4302), 1, + sym_brace_start, + ACTIONS(7751), 1, + sym_word, + STATE(4117), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4194), 1, + sym_concatenation, + ACTIONS(4296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7753), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4010), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73529] = 18, + [163300] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(4365), 1, - anon_sym_RBRACE, - ACTIONS(4369), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(7757), 1, + anon_sym_DOLLAR, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4367), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7755), 2, + sym_comment_word, + sym_word, + ACTIONS(7759), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3874), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73598] = 18, + [163370] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2257), 1, + sym_brace_start, + ACTIONS(7763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7771), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7773), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7775), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7777), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7781), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7783), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4365), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7761), 2, + sym_comment_word, + sym_word, + ACTIONS(7779), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7769), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1252), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73667] = 18, - ACTIONS(3), 1, + [163440] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4278), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4280), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4292), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4300), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4357), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(4302), 1, + sym_brace_start, + ACTIONS(7785), 1, + sym_word, + STATE(4064), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4179), 1, + sym_concatenation, + ACTIONS(4296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7787), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4019), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73736] = 18, + [163516] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2500), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2512), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2520), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4371), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(2526), 1, + sym_brace_start, + ACTIONS(7791), 1, + anon_sym_DOLLAR, + ACTIONS(2516), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7789), 2, + sym_comment_word, + sym_word, + ACTIONS(7793), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1657), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73805] = 18, + [163586] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3738), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(4373), 1, - anon_sym_RBRACE, - ACTIONS(4377), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7511), 1, + sym_brace_start, + ACTIONS(7797), 1, + anon_sym_DOLLAR, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1486), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4375), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7795), 2, + sym_comment_word, + sym_word, + ACTIONS(7799), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1616), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73874] = 18, + [163656] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4280), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4292), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4300), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4379), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4302), 1, + sym_brace_start, + ACTIONS(7803), 1, + anon_sym_DOLLAR, + ACTIONS(4296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7801), 2, + sym_comment_word, + sym_word, + ACTIONS(7805), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4115), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [73943] = 18, - ACTIONS(3), 1, + [163726] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4381), 1, - anon_sym_RBRACE, - ACTIONS(4385), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(7807), 1, + sym_word, + STATE(5224), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5800), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1433), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4383), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7809), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5046), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74012] = 18, - ACTIONS(3), 1, + [163802] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6379), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4381), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(7811), 1, + sym_word, + STATE(1062), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1222), 1, + sym_concatenation, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7813), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(872), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74081] = 18, + [163878] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1372), 1, + sym_brace_start, + ACTIONS(7593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7599), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7605), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7611), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7613), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4387), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7815), 1, + anon_sym_DOLLAR, + ACTIONS(7609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7701), 2, + sym_comment_word, + sym_word, + ACTIONS(7703), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(935), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74150] = 18, + [163948] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4389), 1, - anon_sym_RBRACE, - ACTIONS(4393), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(7817), 1, + anon_sym_DOLLAR, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1434), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4391), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7741), 2, + sym_comment_word, + sym_word, + ACTIONS(7743), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(995), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74219] = 18, + [164018] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4389), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(7819), 2, + sym_comment_word, + sym_word, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7827), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4741), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74288] = 18, + [164088] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2492), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2494), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2496), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2500), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2504), 1, + aux_sym_number_token1, + ACTIONS(2506), 1, + aux_sym_number_token2, + ACTIONS(2508), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2510), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2512), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2518), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2520), 1, sym_semgrep_named_ellipsis, - ACTIONS(4395), 1, - anon_sym_RBRACE, - ACTIONS(4399), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(2526), 1, + sym_brace_start, + ACTIONS(2516), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1435), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4397), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7789), 2, + sym_comment_word, + sym_word, + ACTIONS(7793), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1657), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74357] = 18, + [164158] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4395), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(7851), 1, + anon_sym_DOLLAR, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 2, + sym_comment_word, + sym_word, + ACTIONS(7479), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74426] = 18, - ACTIONS(3), 1, + [164228] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4401), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(7853), 1, + sym_word, + STATE(1047), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1138), 1, + sym_concatenation, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7855), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(740), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74495] = 18, + [164304] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3935), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4403), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(7859), 1, + anon_sym_DOLLAR, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7857), 2, + sym_comment_word, + sym_word, + ACTIONS(7861), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1734), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74564] = 18, - ACTIONS(3), 1, + [164374] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7487), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7489), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4405), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7511), 1, + sym_brace_start, + ACTIONS(7863), 1, + sym_word, + STATE(1691), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1745), 1, + sym_concatenation, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7865), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1479), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74633] = 18, - ACTIONS(3), 1, + [164450] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3738), 1, + anon_sym_DQUOTE, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7487), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(7489), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4373), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7511), 1, + sym_brace_start, + ACTIONS(7867), 1, + sym_word, + STATE(1717), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1752), 1, + sym_concatenation, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7869), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1506), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74702] = 18, - ACTIONS(3), 1, + [164526] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6541), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(2263), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(7871), 1, + sym_word, + STATE(1049), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1142), 1, + sym_concatenation, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7873), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(748), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74771] = 18, + [164602] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4407), 1, - anon_sym_RBRACE, - ACTIONS(4411), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7877), 1, + anon_sym_DOLLAR, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1462), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4409), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7875), 2, + sym_comment_word, + sym_word, + ACTIONS(7879), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1515), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74840] = 18, - ACTIONS(3), 1, + [164672] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4413), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7881), 1, + sym_word, + STATE(5121), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5908), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7883), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4971), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74909] = 18, + [164748] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(177), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(179), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(189), 1, + aux_sym_number_token1, + ACTIONS(191), 1, + aux_sym_number_token2, + ACTIONS(193), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(195), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(199), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(203), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(205), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4407), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(215), 1, + sym_brace_start, + ACTIONS(7887), 1, + anon_sym_DOLLAR, + ACTIONS(201), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7885), 2, + sym_comment_word, + sym_word, + ACTIONS(7889), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(467), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [74978] = 18, + [164818] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3600), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3602), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3606), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3618), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3626), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4415), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3630), 1, + sym_brace_start, + ACTIONS(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7891), 2, + sym_comment_word, + sym_word, + ACTIONS(7893), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1856), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75047] = 18, - ACTIONS(3), 1, + [164888] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2962), 1, + sym_brace_start, + ACTIONS(7895), 1, + sym_word, + ACTIONS(7897), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7901), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7903), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7907), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7909), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7915), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7917), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4417), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3443), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3692), 1, + sym_concatenation, + ACTIONS(7913), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7905), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3299), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75116] = 18, + [164964] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(661), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(3031), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 2, + sym_comment_word, + sym_word, + ACTIONS(7479), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75185] = 18, - ACTIONS(3), 1, + [165034] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2962), 1, + sym_brace_start, + ACTIONS(7897), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7901), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7903), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7907), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7909), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7915), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7917), 1, sym_semgrep_named_ellipsis, - ACTIONS(4419), 1, - anon_sym_RBRACE, - ACTIONS(4423), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(7919), 1, + sym_word, + STATE(3484), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3695), 1, + sym_concatenation, + ACTIONS(7913), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1452), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4421), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7921), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3296), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75254] = 18, + [165110] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1264), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1292), 1, + sym_brace_start, + ACTIONS(7515), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7517), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7533), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7535), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4419), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7923), 2, + sym_comment_word, + sym_word, + ACTIONS(7925), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1005), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75323] = 18, + [165180] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3935), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, + anon_sym_DOLLAR, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4425), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7857), 2, + sym_comment_word, + sym_word, + ACTIONS(7861), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1734), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75392] = 18, - ACTIONS(3), 1, + [165250] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4427), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(7927), 1, + sym_word, + STATE(1741), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1817), 1, + sym_concatenation, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7929), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1643), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75461] = 18, - ACTIONS(3), 1, + [165326] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1156), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1184), 1, + sym_brace_start, + ACTIONS(7545), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7549), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7551), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7555), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7557), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4429), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7931), 1, + sym_word, + STATE(973), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1112), 1, + sym_concatenation, + ACTIONS(7561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7933), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(673), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75530] = 18, + [165402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6623), 1, + aux_sym_number_token1, + ACTIONS(6625), 1, + aux_sym_number_token2, + ACTIONS(6627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6631), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6633), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6639), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6641), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4431), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6645), 1, + sym_brace_start, + ACTIONS(7937), 1, + anon_sym_DOLLAR, + ACTIONS(6635), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7935), 2, + sym_comment_word, + sym_word, + ACTIONS(7939), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3171), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75599] = 18, - ACTIONS(3), 1, + [165472] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4433), 1, - anon_sym_RBRACE, - ACTIONS(4437), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(7941), 1, + sym_word, + STATE(5251), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5729), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1457), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4435), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7943), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5000), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75668] = 18, - ACTIONS(3), 1, + [165548] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1156), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1184), 1, + sym_brace_start, + ACTIONS(7545), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7549), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7551), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7555), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7557), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4433), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7945), 1, + sym_word, + STATE(996), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1088), 1, + sym_concatenation, + ACTIONS(7561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7947), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(675), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75737] = 18, + [165624] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(596), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(600), 1, + aux_sym_number_token1, + ACTIONS(602), 1, + aux_sym_number_token2, + ACTIONS(604), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(606), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(608), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(614), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(616), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4439), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(624), 1, + sym_brace_start, + ACTIONS(7949), 1, + anon_sym_DOLLAR, + ACTIONS(612), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7637), 2, + sym_comment_word, + sym_word, + ACTIONS(7639), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(798), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75806] = 18, + [165694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4441), 1, - anon_sym_RBRACE, - ACTIONS(4445), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(7953), 1, + anon_sym_DOLLAR, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1458), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4443), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7951), 2, + sym_comment_word, + sym_word, + ACTIONS(7955), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(761), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75875] = 18, + [165764] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2586), 1, + aux_sym_number_token1, + ACTIONS(2588), 1, + aux_sym_number_token2, + ACTIONS(2592), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2606), 1, + sym_brace_start, + ACTIONS(7425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4441), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7957), 1, + anon_sym_DOLLAR, + ACTIONS(7439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7715), 2, + sym_comment_word, + sym_word, + ACTIONS(7717), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1420), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [75944] = 18, + [165834] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(7961), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7963), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7965), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7969), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7973), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7975), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7979), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7981), 1, sym_semgrep_named_ellipsis, - ACTIONS(4447), 1, - anon_sym_RBRACE, - ACTIONS(4451), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7959), 2, + sym_comment_word, + sym_word, + ACTIONS(7977), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1459), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4449), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7967), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3512), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76013] = 18, + [165904] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2552), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2562), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4447), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(2566), 1, + sym_brace_start, + ACTIONS(2558), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7983), 2, + sym_comment_word, + sym_word, + ACTIONS(7985), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1726), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76082] = 18, - ACTIONS(3), 1, + [165974] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2349), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2375), 1, + sym_brace_start, + ACTIONS(7987), 1, + sym_word, + ACTIONS(7989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7993), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7995), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8001), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8003), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8007), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8009), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4453), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3346), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3637), 1, + sym_concatenation, + ACTIONS(8005), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7997), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3237), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76151] = 18, - ACTIONS(3), 1, + [166050] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3935), 1, + anon_sym_DQUOTE, + ACTIONS(6763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6767), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6769), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6773), 1, + aux_sym_number_token1, + ACTIONS(6775), 1, + aux_sym_number_token2, + ACTIONS(6777), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6779), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6781), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6789), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6791), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4455), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6795), 1, + sym_brace_start, + ACTIONS(8011), 1, + sym_word, + STATE(1746), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1777), 1, + sym_concatenation, + ACTIONS(6785), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8013), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1646), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76220] = 18, - ACTIONS(3), 1, + [166126] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4457), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8015), 1, + sym_word, + STATE(5102), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5765), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8017), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4972), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76289] = 18, - ACTIONS(3), 1, + [166202] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2349), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2375), 1, + sym_brace_start, + ACTIONS(7989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7993), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7995), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8001), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8003), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8007), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8009), 1, sym_semgrep_named_ellipsis, - ACTIONS(4459), 1, - anon_sym_RBRACE, - ACTIONS(4463), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8019), 1, + sym_word, + STATE(3341), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3640), 1, + sym_concatenation, + ACTIONS(8005), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1472), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4461), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8021), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3233), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76358] = 18, - ACTIONS(3), 1, + [166278] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4459), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8023), 1, + sym_word, + STATE(5099), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5378), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8025), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5008), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76427] = 18, + [166354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(821), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(825), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(843), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(845), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4465), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(849), 1, + sym_brace_start, + ACTIONS(841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8027), 2, + sym_comment_word, + sym_word, + ACTIONS(8029), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76496] = 18, - ACTIONS(3), 1, + [166424] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3802), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3806), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3816), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3826), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4467), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(3828), 1, + sym_brace_start, + ACTIONS(8031), 1, + sym_word, + ACTIONS(8033), 1, + sym_special_character, + STATE(4016), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4163), 1, + sym_concatenation, + ACTIONS(3822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8035), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3955), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76565] = 18, - ACTIONS(3), 1, + [166500] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(4469), 1, - anon_sym_RBRACE, - ACTIONS(4473), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(8037), 1, + sym_word, + STATE(1105), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1178), 1, + sym_concatenation, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1484), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4471), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8039), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(765), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76634] = 18, - ACTIONS(3), 1, + [166576] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4469), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8041), 1, + sym_word, + STATE(5189), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5676), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8043), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5035), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76703] = 18, - ACTIONS(3), 1, + [166652] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6651), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6653), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6655), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6657), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6659), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6663), 1, + aux_sym_number_token1, + ACTIONS(6665), 1, + aux_sym_number_token2, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6671), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6679), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6681), 1, sym_semgrep_named_ellipsis, - ACTIONS(4475), 1, - anon_sym_RBRACE, - ACTIONS(4479), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(6685), 1, + sym_brace_start, + ACTIONS(8045), 1, + sym_word, + STATE(1139), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1248), 1, + sym_concatenation, + ACTIONS(6675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1485), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4477), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8047), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(767), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76772] = 18, - ACTIONS(3), 1, + [166728] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3095), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8049), 1, + sym_word, + STATE(5262), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5933), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8051), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5059), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76841] = 18, + [166804] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1184), 1, + sym_brace_start, + ACTIONS(7545), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7551), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7555), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7557), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4481), 1, - anon_sym_RBRACE, - ACTIONS(4485), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8055), 1, + anon_sym_DOLLAR, + ACTIONS(7561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1476), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4483), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8053), 2, + sym_comment_word, + sym_word, + ACTIONS(8057), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(783), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76910] = 18, + [166874] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(177), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(179), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(181), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(185), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(189), 1, + aux_sym_number_token1, + ACTIONS(191), 1, + aux_sym_number_token2, + ACTIONS(193), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(195), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(197), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(199), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(203), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(205), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4481), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(215), 1, + sym_brace_start, + ACTIONS(201), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7885), 2, + sym_comment_word, + sym_word, + ACTIONS(7889), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(467), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [76979] = 18, - ACTIONS(3), 1, + [166944] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4475), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8059), 1, + sym_word, + STATE(5119), 1, + aux_sym_for_statement_repeat1, + STATE(6025), 1, + sym_concatenation, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8061), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4983), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77048] = 18, + [167020] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6926), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6930), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6934), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6938), 1, + aux_sym_number_token1, + ACTIONS(6940), 1, + aux_sym_number_token2, + ACTIONS(6942), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6944), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6946), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6952), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6954), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4487), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6956), 1, + sym_brace_start, + ACTIONS(6950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7755), 2, + sym_comment_word, + sym_word, + ACTIONS(7759), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3874), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77117] = 18, - ACTIONS(3), 1, + [167090] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4489), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8063), 1, + sym_word, + STATE(5225), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5607), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8065), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4996), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77186] = 18, - ACTIONS(3), 1, + [167166] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3219), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3245), 1, + sym_brace_start, + ACTIONS(7643), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7645), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7651), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7653), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7655), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7657), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7661), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7663), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4491), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8067), 1, + sym_word, + ACTIONS(8069), 1, + sym_special_character, + STATE(3648), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3871), 1, + sym_concatenation, + ACTIONS(7659), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8071), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3468), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77255] = 18, - ACTIONS(3), 1, + [167242] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4493), 1, - anon_sym_RBRACE, - ACTIONS(4497), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8073), 1, + sym_word, + STATE(5081), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5929), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1481), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4495), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8075), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5004), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77324] = 18, - ACTIONS(3), 1, + [167318] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3219), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3225), 1, + aux_sym_number_token1, + ACTIONS(3227), 1, + aux_sym_number_token2, + ACTIONS(3231), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3245), 1, + sym_brace_start, + ACTIONS(7643), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7645), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7651), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7653), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7655), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7657), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7661), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7663), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4493), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8069), 1, + sym_special_character, + ACTIONS(8077), 1, + sym_word, + STATE(3649), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3873), 1, + sym_concatenation, + ACTIONS(7659), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8079), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3385), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77393] = 18, + [167394] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1944), 1, + aux_sym_number_token1, + ACTIONS(1946), 1, + aux_sym_number_token2, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1964), 1, + sym_brace_start, + ACTIONS(8083), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8085), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8087), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8091), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8095), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8097), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8101), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8103), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4499), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8081), 2, + sym_comment_word, + sym_word, + ACTIONS(8099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8089), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1073), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77462] = 18, - ACTIONS(3), 1, + [167464] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4501), 1, - anon_sym_RBRACE, - ACTIONS(4505), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8105), 1, + sym_word, + STATE(5109), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5410), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1482), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4503), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8107), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5009), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77531] = 18, + [167540] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5128), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, + anon_sym_DOLLAR, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4501), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8109), 2, + sym_comment_word, + sym_word, + ACTIONS(8111), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2288), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77600] = 18, - ACTIONS(3), 1, + [167610] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3257), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(7961), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7963), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7969), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7973), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7975), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7979), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7981), 1, sym_semgrep_named_ellipsis, - ACTIONS(4507), 1, - anon_sym_RBRACE, - ACTIONS(4511), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8113), 1, + sym_word, + ACTIONS(8115), 1, + sym_special_character, + STATE(3481), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3693), 1, + sym_concatenation, + ACTIONS(7977), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1483), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4509), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8117), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3295), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77669] = 18, + [167686] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3097), 1, + sym_brace_start, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7727), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7731), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7737), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7739), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4507), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8119), 1, + anon_sym_DOLLAR, + ACTIONS(7719), 2, + sym_comment_word, + sym_word, + ACTIONS(7735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7725), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3436), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77738] = 18, + [167756] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4513), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(8123), 1, + anon_sym_DOLLAR, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8121), 2, + sym_comment_word, + sym_word, + ACTIONS(8125), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1842), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77807] = 18, + [167826] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2852), 1, + aux_sym_number_token1, + ACTIONS(2854), 1, + aux_sym_number_token2, + ACTIONS(2858), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2872), 1, + sym_brace_start, + ACTIONS(7571), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7573), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7577), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7579), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7581), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7587), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7589), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4515), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7585), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7875), 2, + sym_comment_word, + sym_word, + ACTIONS(7879), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1515), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77876] = 18, - ACTIONS(3), 1, + [167896] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4517), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8127), 1, + sym_word, + STATE(5135), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5506), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8129), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5021), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [77945] = 18, - ACTIONS(3), 1, + [167972] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1372), 1, + sym_brace_start, + ACTIONS(7593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7597), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7599), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7605), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7611), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7613), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4519), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8131), 1, + sym_word, + STATE(1090), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1244), 1, + sym_concatenation, + ACTIONS(7609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8133), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(769), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78014] = 18, - ACTIONS(3), 1, + [168048] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1344), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1350), 1, + aux_sym_number_token1, + ACTIONS(1352), 1, + aux_sym_number_token2, + ACTIONS(1356), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1372), 1, + sym_brace_start, + ACTIONS(7593), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7595), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7597), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7599), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7603), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7605), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7611), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7613), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4521), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8135), 1, + sym_word, + STATE(1093), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1250), 1, + sym_concatenation, + ACTIONS(7609), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8137), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(770), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78083] = 18, - ACTIONS(3), 1, + [168124] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3257), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(7961), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7963), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7969), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7973), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7975), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7979), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7981), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4523), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8115), 1, + sym_special_character, + ACTIONS(8139), 1, + sym_word, + STATE(3428), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3700), 1, + sym_concatenation, + ACTIONS(7977), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8141), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3350), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78152] = 18, + [168200] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4525), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8145), 1, + anon_sym_DOLLAR, + ACTIONS(7277), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8143), 2, + sym_comment_word, + sym_word, + ACTIONS(8147), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1402), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78221] = 19, - ACTIONS(57), 1, + [168270] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_BANG, - ACTIONS(4023), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(4027), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - STATE(2507), 1, + ACTIONS(8149), 1, + sym_word, + STATE(5164), 1, aux_sym_for_statement_repeat1, - STATE(2684), 1, - sym_expression, - ACTIONS(4029), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, + STATE(5593), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, + ACTIONS(8151), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5030), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78292] = 18, - ACTIONS(3), 1, + [168346] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3802), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3806), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3816), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3826), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4527), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(3828), 1, + sym_brace_start, + ACTIONS(8033), 1, + sym_special_character, + ACTIONS(8153), 1, + sym_word, + STATE(4022), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4157), 1, + sym_concatenation, + ACTIONS(3822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8155), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3968), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78361] = 18, - ACTIONS(3), 1, + [168422] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(4765), 1, + anon_sym_DOLLAR, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4791), 1, + sym_brace_start, + ACTIONS(8157), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8159), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8161), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8163), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8171), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8177), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8179), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4529), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(4227), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4319), 1, + sym_concatenation, + ACTIONS(8175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8167), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4186), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78430] = 18, - ACTIONS(3), 1, + [168498] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3159), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8181), 1, + sym_word, + STATE(5184), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5683), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8183), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5037), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78499] = 18, + [168574] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3257), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3263), 1, + aux_sym_number_token1, + ACTIONS(3265), 1, + aux_sym_number_token2, + ACTIONS(3269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3283), 1, + sym_brace_start, + ACTIONS(7961), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7963), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7969), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7973), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7975), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7979), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7981), 1, sym_semgrep_named_ellipsis, - ACTIONS(4531), 1, - anon_sym_RBRACE, - ACTIONS(4535), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7959), 2, + sym_comment_word, + sym_word, + ACTIONS(7977), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1500), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4533), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7967), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3512), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78568] = 18, + [168644] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3978), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3998), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4531), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4000), 1, + sym_brace_start, + ACTIONS(8187), 1, + anon_sym_DOLLAR, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8185), 2, + sym_comment_word, + sym_word, + ACTIONS(8189), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1862), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78637] = 19, - ACTIONS(57), 1, + [168714] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1963), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1967), 1, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - STATE(2483), 1, + ACTIONS(8191), 1, + sym_word, + STATE(5204), 1, aux_sym_for_statement_repeat1, - STATE(2671), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, + STATE(5763), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(8193), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5043), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78708] = 18, - ACTIONS(3), 1, + [168790] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3071), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3097), 1, + sym_brace_start, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7727), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7731), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7737), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7739), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4537), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8195), 1, + sym_word, + ACTIONS(8197), 1, + sym_special_character, + STATE(3504), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3760), 1, + sym_concatenation, + ACTIONS(7735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8199), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3318), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78777] = 18, - ACTIONS(3), 1, + [168866] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3071), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3077), 1, + aux_sym_number_token1, + ACTIONS(3079), 1, + aux_sym_number_token2, + ACTIONS(3083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3097), 1, + sym_brace_start, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7727), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7731), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7737), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7739), 1, sym_semgrep_named_ellipsis, - ACTIONS(4539), 1, - anon_sym_RBRACE, - ACTIONS(4543), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8197), 1, + sym_special_character, + ACTIONS(8201), 1, + sym_word, + STATE(3482), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3763), 1, + sym_concatenation, + ACTIONS(7735), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1793), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4541), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8203), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3352), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78846] = 18, + [168942] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1448), 1, + aux_sym_number_token1, + ACTIONS(1450), 1, + aux_sym_number_token2, + ACTIONS(1454), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1472), 1, + sym_brace_start, + ACTIONS(6693), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6705), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6707), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6713), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6715), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4545), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8205), 1, + anon_sym_DOLLAR, + ACTIONS(6709), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7669), 2, + sym_comment_word, + sym_word, + ACTIONS(7671), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(811), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78915] = 18, - ACTIONS(3), 1, + [169012] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4547), 1, - anon_sym_RBRACE, - ACTIONS(4551), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8207), 1, + sym_word, + STATE(5230), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5832), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1505), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4549), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8209), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5049), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [78984] = 18, + [169088] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5128), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4547), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(8211), 1, + anon_sym_DOLLAR, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8109), 2, + sym_comment_word, + sym_word, + ACTIONS(8111), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2288), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79053] = 18, - ACTIONS(3), 1, + [169158] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4553), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8213), 1, + sym_word, + STATE(5250), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5915), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8215), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5060), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79122] = 18, + [169234] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2116), 1, + aux_sym_number_token1, + ACTIONS(2118), 1, + aux_sym_number_token2, + ACTIONS(2122), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2136), 1, + sym_brace_start, + ACTIONS(7681), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7683), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7687), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7697), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7699), 1, sym_semgrep_named_ellipsis, - ACTIONS(4555), 1, - anon_sym_RBRACE, - ACTIONS(4559), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8217), 1, + anon_sym_DOLLAR, + ACTIONS(7679), 2, + sym_comment_word, + sym_word, + ACTIONS(7695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1506), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4557), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7685), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1258), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79191] = 18, + [169304] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6801), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6805), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6809), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6813), 1, + aux_sym_number_token1, + ACTIONS(6815), 1, + aux_sym_number_token2, + ACTIONS(6817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6819), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6821), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6823), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6829), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6831), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4555), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6835), 1, + sym_brace_start, + ACTIONS(6825), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7631), 2, + sym_comment_word, + sym_word, + ACTIONS(7635), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3198), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79260] = 18, + [169374] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(8221), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8223), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8225), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8229), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8231), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8233), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8239), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8241), 1, sym_semgrep_named_ellipsis, - ACTIONS(4561), 1, - anon_sym_RBRACE, - ACTIONS(4565), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8219), 2, + sym_comment_word, + sym_word, + ACTIONS(8237), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1507), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4563), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8227), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3334), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79329] = 18, - ACTIONS(3), 1, + [169444] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4561), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8243), 1, + sym_word, + STATE(5129), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5924), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8245), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4970), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79398] = 18, - ACTIONS(3), 1, + [169520] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4567), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8247), 1, + sym_word, + STATE(5190), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5453), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8249), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4976), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79467] = 18, + [169596] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2723), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2729), 1, + aux_sym_number_token1, + ACTIONS(2731), 1, + aux_sym_number_token2, + ACTIONS(2735), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2749), 1, + sym_brace_start, + ACTIONS(7263), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7265), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7271), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7273), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7279), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7281), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4569), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7277), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8143), 2, + sym_comment_word, + sym_word, + ACTIONS(8147), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1402), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79536] = 18, - ACTIONS(3), 1, + [169666] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4571), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8251), 1, + sym_word, + STATE(5095), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5889), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8253), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4981), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79605] = 19, - ACTIONS(57), 1, + [169742] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(3987), 1, - sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, + ACTIONS(4765), 1, anon_sym_DOLLAR, - ACTIONS(3995), 1, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4791), 1, + sym_brace_start, + ACTIONS(8159), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8161), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8163), 1, sym_special_character, - ACTIONS(3997), 1, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(8171), 1, anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8177), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(8179), 1, sym_semgrep_named_ellipsis, - STATE(2519), 1, + ACTIONS(8255), 1, + sym_word, + STATE(4229), 1, aux_sym_for_statement_repeat1, - STATE(2677), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, + STATE(4347), 1, + sym_concatenation, + ACTIONS(8175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, + ACTIONS(8257), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4198), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79676] = 18, - ACTIONS(3), 1, + [169818] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(2327), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8259), 1, + sym_word, + STATE(5143), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, + STATE(5405), 1, sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8261), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4986), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79745] = 18, + [169894] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(8221), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8223), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8229), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8231), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8233), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8239), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8241), 1, sym_semgrep_named_ellipsis, - ACTIONS(4573), 1, - anon_sym_RBRACE, - ACTIONS(4577), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8219), 2, + sym_comment_word, + sym_word, + ACTIONS(8237), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1534), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4575), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8227), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3334), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79814] = 18, - ACTIONS(3), 1, + [169964] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4579), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8263), 1, + sym_word, + STATE(5182), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5507), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8265), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4991), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79883] = 18, + [170040] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2990), 1, + aux_sym_number_token1, + ACTIONS(2992), 1, + aux_sym_number_token2, + ACTIONS(2996), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3010), 1, + sym_brace_start, + ACTIONS(7243), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7245), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7249), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7251), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7253), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7259), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7261), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4573), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8267), 1, + anon_sym_DOLLAR, + ACTIONS(7257), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7705), 2, + sym_comment_word, + sym_word, + ACTIONS(7707), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1542), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [79952] = 18, - ACTIONS(3), 1, + [170110] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4581), 1, - anon_sym_RBRACE, - ACTIONS(4585), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8269), 1, + sym_word, + STATE(5209), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5577), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1771), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4583), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8271), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4995), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80021] = 18, + [170186] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2892), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4587), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8273), 2, + sym_comment_word, + sym_word, + ACTIONS(8275), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3383), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80090] = 18, + [170256] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2898), 1, + aux_sym_number_token1, + ACTIONS(2900), 1, + aux_sym_number_token2, + ACTIONS(2904), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2920), 1, + sym_brace_start, + ACTIONS(7449), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7451), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7457), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7459), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7465), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7467), 1, sym_semgrep_named_ellipsis, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8277), 1, + anon_sym_DOLLAR, + ACTIONS(7463), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8273), 2, + sym_comment_word, + sym_word, + ACTIONS(8275), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3383), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80159] = 18, - ACTIONS(3), 1, + [170326] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4589), 1, - anon_sym_RBRACE, - ACTIONS(4593), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8279), 1, + sym_word, + STATE(5243), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5688), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1524), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4591), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8281), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4999), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80228] = 18, - ACTIONS(3), 1, + [170402] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6373), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6375), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6377), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6379), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6381), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6385), 1, + aux_sym_number_token1, + ACTIONS(6387), 1, + aux_sym_number_token2, + ACTIONS(6389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6393), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6401), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6403), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4589), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6407), 1, + sym_brace_start, + ACTIONS(8283), 1, + sym_word, + STATE(1087), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1227), 1, + sym_concatenation, + ACTIONS(6397), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8285), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(768), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80297] = 18, + [170478] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3756), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3760), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3772), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3780), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4539), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3782), 1, + sym_brace_start, + ACTIONS(3776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8287), 2, + sym_comment_word, + sym_word, + ACTIONS(8289), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1916), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80366] = 18, - ACTIONS(3), 1, + [170548] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4595), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8291), 1, + sym_word, + STATE(5066), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5785), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8293), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5001), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80435] = 18, + [170624] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4597), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(8295), 1, + anon_sym_DOLLAR, + ACTIONS(7819), 2, + sym_comment_word, + sym_word, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7827), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4741), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80504] = 18, - ACTIONS(3), 1, + [170694] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4599), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8297), 1, + sym_word, + STATE(5078), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5913), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8299), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5003), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80573] = 18, + [170770] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1292), 1, + sym_brace_start, + ACTIONS(7515), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7517), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7533), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7535), 1, sym_semgrep_named_ellipsis, - ACTIONS(4601), 1, - anon_sym_RBRACE, - ACTIONS(4605), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + ACTIONS(7531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1529), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4603), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7923), 2, + sym_comment_word, + sym_word, + ACTIONS(7925), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1005), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80642] = 18, - ACTIONS(3), 1, + [170840] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4601), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8303), 1, + sym_word, + STATE(5086), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5973), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8305), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5005), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80711] = 18, - ACTIONS(3), 1, + [170916] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4607), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8307), 1, + sym_word, + STATE(5096), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5367), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8309), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5007), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80780] = 18, + [170992] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6471), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6473), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6475), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6483), 1, + aux_sym_number_token1, + ACTIONS(6485), 1, + aux_sym_number_token2, + ACTIONS(6487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6491), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6493), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6499), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6501), 1, sym_semgrep_named_ellipsis, - ACTIONS(4609), 1, - anon_sym_RBRACE, - ACTIONS(4613), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6505), 1, + sym_brace_start, + ACTIONS(6495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1530), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4611), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8311), 2, + sym_comment_word, + sym_word, + ACTIONS(8313), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3985), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80849] = 18, - ACTIONS(3), 1, + [171062] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4609), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8315), 1, + sym_word, + STATE(5106), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5406), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8317), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5010), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80918] = 18, + [171138] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3752), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3754), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3760), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3764), 1, + aux_sym_number_token1, + ACTIONS(3766), 1, + aux_sym_number_token2, + ACTIONS(3768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3770), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3772), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3778), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3780), 1, sym_semgrep_named_ellipsis, - ACTIONS(4615), 1, - anon_sym_RBRACE, - ACTIONS(4619), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3782), 1, + sym_brace_start, + ACTIONS(8319), 1, + anon_sym_DOLLAR, + ACTIONS(3776), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1531), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4617), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8287), 2, + sym_comment_word, + sym_word, + ACTIONS(8289), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1916), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [80987] = 18, + [171208] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(260), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(266), 1, + aux_sym_number_token1, + ACTIONS(268), 1, + aux_sym_number_token2, + ACTIONS(272), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_brace_start, + ACTIONS(861), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(863), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(869), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(873), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(879), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(881), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4615), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(877), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8121), 2, + sym_comment_word, + sym_word, + ACTIONS(8125), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1842), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81056] = 18, - ACTIONS(3), 1, + [171278] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4621), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8321), 1, + sym_word, + STATE(5114), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5440), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8323), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5013), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81125] = 18, + [171354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3695), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3699), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3711), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3719), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4623), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3721), 1, + sym_brace_start, + ACTIONS(3715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8325), 2, + sym_comment_word, + sym_word, + ACTIONS(8327), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1852), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81194] = 18, - ACTIONS(3), 1, + [171424] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4625), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8329), 1, + sym_word, + STATE(5124), 1, + aux_sym_for_statement_repeat1, + STATE(5469), 1, + sym_concatenation, + ACTIONS(5439), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(8331), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5063), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81263] = 18, - ACTIONS(3), 1, + [171500] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1264), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1292), 1, + sym_brace_start, + ACTIONS(7515), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7517), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7519), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7533), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7535), 1, sym_semgrep_named_ellipsis, - ACTIONS(4627), 1, - anon_sym_RBRACE, - ACTIONS(4631), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8333), 1, + sym_word, + STATE(1072), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1163), 1, + sym_concatenation, + ACTIONS(7531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1544), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4629), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8335), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(879), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81332] = 18, - ACTIONS(3), 1, + [171576] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4627), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8337), 1, + sym_word, + STATE(5132), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5500), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8339), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5020), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81401] = 18, + [171652] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3802), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3806), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3816), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3826), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4633), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3828), 1, + sym_brace_start, + ACTIONS(3822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8341), 2, + sym_comment_word, + sym_word, + ACTIONS(8343), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4054), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81470] = 18, + [171722] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3738), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7483), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7487), 1, + anon_sym_DOLLAR, + ACTIONS(7493), 1, + aux_sym_number_token1, + ACTIONS(7495), 1, + aux_sym_number_token2, + ACTIONS(7497), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7501), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7507), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7509), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4635), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7511), 1, + sym_brace_start, + ACTIONS(7505), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7795), 2, + sym_comment_word, + sym_word, + ACTIONS(7799), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1616), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81539] = 18, - ACTIONS(3), 1, + [171792] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1264), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1270), 1, + aux_sym_number_token1, + ACTIONS(1272), 1, + aux_sym_number_token2, + ACTIONS(1276), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1292), 1, + sym_brace_start, + ACTIONS(7515), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7517), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7519), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7533), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7535), 1, sym_semgrep_named_ellipsis, - ACTIONS(4637), 1, - anon_sym_RBRACE, - ACTIONS(4641), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8345), 1, + sym_word, + STATE(1075), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1184), 1, + sym_concatenation, + ACTIONS(7531), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1556), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4639), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8347), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(880), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81608] = 18, - ACTIONS(3), 1, + [171868] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4637), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8349), 1, + sym_word, + STATE(5145), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5535), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8351), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5023), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81677] = 18, + [171944] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4582), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4608), 1, + sym_brace_start, + ACTIONS(7287), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7289), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7297), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7299), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7303), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7305), 1, sym_semgrep_named_ellipsis, - ACTIONS(4643), 1, - anon_sym_RBRACE, - ACTIONS(4647), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1557), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4645), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8353), 2, + sym_comment_word, + sym_word, + ACTIONS(8355), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2371), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81746] = 18, - ACTIONS(3), 1, + [172014] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3287), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8357), 1, + sym_word, + STATE(5154), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5568), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8359), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5029), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81815] = 18, + [172090] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2962), 1, + sym_brace_start, + ACTIONS(7897), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7903), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7907), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7909), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7915), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7917), 1, sym_semgrep_named_ellipsis, - ACTIONS(4649), 1, - anon_sym_RBRACE, - ACTIONS(4653), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8363), 1, + anon_sym_DOLLAR, + ACTIONS(7913), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1548), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4651), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8361), 2, + sym_comment_word, + sym_word, + ACTIONS(8365), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3460), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81884] = 18, - ACTIONS(3), 1, + [172160] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4649), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8367), 1, + sym_word, + STATE(5162), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5602), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8369), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5031), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [81953] = 18, + [172236] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(817), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(819), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(825), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(829), 1, + aux_sym_number_token1, + ACTIONS(831), 1, + aux_sym_number_token2, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(835), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(843), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(845), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4643), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(849), 1, + sym_brace_start, + ACTIONS(8371), 1, + anon_sym_DOLLAR, + ACTIONS(841), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8027), 2, + sym_comment_word, + sym_word, + ACTIONS(8029), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82022] = 18, + [172306] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4765), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4791), 1, + sym_brace_start, + ACTIONS(8159), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8161), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8171), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8177), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8179), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4655), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8373), 2, + sym_comment_word, + sym_word, + ACTIONS(8375), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4223), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82091] = 18, + [172376] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4143), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4153), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4155), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4163), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4657), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4165), 1, + sym_brace_start, + ACTIONS(8379), 1, + anon_sym_DOLLAR, + ACTIONS(4159), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8377), 2, + sym_comment_word, + sym_word, + ACTIONS(8381), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4114), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82160] = 18, - ACTIONS(3), 1, + [172446] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4659), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8383), 1, + sym_word, + STATE(5171), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5635), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8385), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5033), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82229] = 18, - ACTIONS(3), 1, + [172522] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4661), 1, - anon_sym_RBRACE, - ACTIONS(4665), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8387), 1, + sym_word, + STATE(5176), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5663), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1553), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4663), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8389), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5034), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82298] = 18, + [172598] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(464), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(466), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(468), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(476), 1, + aux_sym_number_token1, + ACTIONS(478), 1, + aux_sym_number_token2, + ACTIONS(480), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(482), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(484), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(490), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(492), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4661), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(500), 1, + sym_brace_start, + ACTIONS(488), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8391), 2, + sym_comment_word, + sym_word, + ACTIONS(8393), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(711), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82367] = 18, + [172668] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2699), 1, + sym_brace_start, + ACTIONS(7345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7351), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7355), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7357), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4667), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8397), 1, + anon_sym_DOLLAR, + ACTIONS(7359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8395), 2, + sym_comment_word, + sym_word, + ACTIONS(8399), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1301), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82436] = 18, - ACTIONS(3), 1, + [172738] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4669), 1, - anon_sym_RBRACE, - ACTIONS(4673), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8401), 1, + sym_word, + STATE(5186), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5695), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1554), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4671), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8403), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5039), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82505] = 18, + [172814] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3600), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3606), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3610), 1, + aux_sym_number_token1, + ACTIONS(3612), 1, + aux_sym_number_token2, + ACTIONS(3614), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3616), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3618), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3624), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3626), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4669), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3630), 1, + sym_brace_start, + ACTIONS(8405), 1, + anon_sym_DOLLAR, + ACTIONS(3622), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7891), 2, + sym_comment_word, + sym_word, + ACTIONS(7893), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1856), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82574] = 18, - ACTIONS(3), 1, + [172884] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4675), 1, - anon_sym_RBRACE, - ACTIONS(4679), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8407), 1, + sym_word, + STATE(5196), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5723), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1555), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4677), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8409), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5041), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82643] = 18, + [172960] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4191), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4195), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4207), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4215), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4675), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4217), 1, + sym_brace_start, + ACTIONS(4211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8411), 2, + sym_comment_word, + sym_word, + ACTIONS(8413), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2012), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82712] = 18, + [173030] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(73), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(75), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4681), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(8417), 1, + anon_sym_DOLLAR, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8415), 2, + sym_comment_word, + sym_word, + ACTIONS(8419), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(877), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82781] = 18, + [173100] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(97), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(99), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(105), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(109), 1, + aux_sym_number_token1, + ACTIONS(111), 1, + aux_sym_number_token2, + ACTIONS(113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(115), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(117), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(123), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(125), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4683), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(129), 1, + sym_brace_start, + ACTIONS(8421), 1, + anon_sym_DOLLAR, + ACTIONS(121), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7747), 2, + sym_comment_word, + sym_word, + ACTIONS(7749), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(422), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82850] = 18, + [173170] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6471), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6473), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6483), 1, + aux_sym_number_token1, + ACTIONS(6485), 1, + aux_sym_number_token2, + ACTIONS(6487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6491), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6493), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6499), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6501), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4685), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6505), 1, + sym_brace_start, + ACTIONS(8423), 1, + anon_sym_DOLLAR, + ACTIONS(6495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8311), 2, + sym_comment_word, + sym_word, + ACTIONS(8313), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3985), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82919] = 18, - ACTIONS(3), 1, + [173240] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8425), 1, + sym_word, + STATE(5201), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5752), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8427), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5042), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [82988] = 18, + [173316] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4408), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4412), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4422), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4424), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4432), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4689), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4434), 1, + sym_brace_start, + ACTIONS(4428), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8429), 2, + sym_comment_word, + sym_word, + ACTIONS(8431), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4133), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83057] = 18, - ACTIONS(3), 1, + [173386] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4691), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8433), 1, + sym_word, + STATE(5210), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5781), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8435), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5045), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83126] = 18, - ACTIONS(3), 1, + [173462] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4693), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8437), 1, + sym_word, + STATE(5222), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5812), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8439), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5048), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83195] = 19, - ACTIONS(57), 1, + [173538] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(3970), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3972), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3974), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(3982), 1, + aux_sym_number_token1, + ACTIONS(3984), 1, + aux_sym_number_token2, + ACTIONS(3986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3996), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(3998), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2711), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, + ACTIONS(4000), 1, + sym_brace_start, + ACTIONS(3994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(8185), 2, + sym_comment_word, + sym_word, + ACTIONS(8189), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1862), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83266] = 18, - ACTIONS(3), 1, + [173608] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4695), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8441), 1, + sym_word, + STATE(5228), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5839), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8443), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5051), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83335] = 18, - ACTIONS(3), 1, + [173684] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(3351), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8445), 1, + sym_word, + STATE(5238), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5866), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8447), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5053), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83404] = 18, - ACTIONS(3), 1, + [173760] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4697), 1, - anon_sym_RBRACE, - ACTIONS(4701), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8449), 1, + sym_word, + STATE(5256), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5893), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1571), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4699), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8451), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5057), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83473] = 18, + [173836] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4272), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4274), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4276), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4280), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4284), 1, + aux_sym_number_token1, + ACTIONS(4286), 1, + aux_sym_number_token2, + ACTIONS(4288), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4290), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4292), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4298), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4300), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4697), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4302), 1, + sym_brace_start, + ACTIONS(4296), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7801), 2, + sym_comment_word, + sym_word, + ACTIONS(7805), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4115), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83542] = 19, - ACTIONS(57), 1, + [173906] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3995), 1, - sym_special_character, - ACTIONS(3997), 1, + ACTIONS(3691), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3693), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3699), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(3703), 1, + aux_sym_number_token1, + ACTIONS(3705), 1, + aux_sym_number_token2, + ACTIONS(3707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(3709), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(3711), 1, anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3717), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(3719), 1, sym_semgrep_named_ellipsis, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2686), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, + ACTIONS(3721), 1, + sym_brace_start, + ACTIONS(8453), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, + ACTIONS(8325), 2, + sym_comment_word, + sym_word, + ACTIONS(8327), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1852), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83613] = 18, - ACTIONS(3), 1, + [173976] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4703), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8455), 1, + sym_word, + STATE(5245), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5898), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8457), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5058), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83682] = 18, - ACTIONS(3), 1, + [174052] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4705), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8459), 1, + sym_word, + STATE(5252), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5923), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8461), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5061), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83751] = 18, + [174128] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6539), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6543), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6547), 1, + aux_sym_number_token1, + ACTIONS(6549), 1, + aux_sym_number_token2, + ACTIONS(6551), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6553), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6555), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6565), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4707), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6569), 1, + sym_brace_start, + ACTIONS(6559), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7951), 2, + sym_comment_word, + sym_word, + ACTIONS(7955), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(761), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83820] = 18, - ACTIONS(3), 1, + [174198] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4408), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4410), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4412), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4422), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4424), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4432), 1, sym_semgrep_named_ellipsis, - ACTIONS(4709), 1, - anon_sym_RBRACE, - ACTIONS(4713), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(4434), 1, + sym_brace_start, + ACTIONS(8463), 1, + sym_word, + STATE(4138), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4236), 1, + sym_concatenation, + ACTIONS(4428), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1576), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4711), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8465), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4106), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83889] = 18, + [174274] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6479), 1, + anon_sym_DQUOTE, + ACTIONS(8467), 1, + aux_sym_for_statement_token1, + STATE(3983), 1, + sym_string, + STATE(4004), 1, + sym_orig_simple_variable_name, + ACTIONS(8471), 2, anon_sym_DOLLAR, - ACTIONS(1917), 1, + anon_sym__, + ACTIONS(8469), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(941), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(943), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [174326] = 21, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5199), 1, + anon_sym_DOLLAR, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4709), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8473), 1, + sym_word, + STATE(5269), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5953), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8475), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5062), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [83958] = 18, + [174402] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1104), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1110), 1, + aux_sym_number_token1, + ACTIONS(1112), 1, + aux_sym_number_token2, + ACTIONS(1116), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1134), 1, + sym_brace_start, + ACTIONS(6581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6587), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6601), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6603), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4715), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8477), 2, + sym_comment_word, + sym_word, + ACTIONS(8479), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(725), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84027] = 18, + [174472] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1302), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1332), 1, + sym_brace_start, + ACTIONS(6413), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6419), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6423), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6425), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6433), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6435), 1, sym_semgrep_named_ellipsis, - ACTIONS(4717), 1, - anon_sym_RBRACE, - ACTIONS(4721), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1577), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4719), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8481), 2, + sym_comment_word, + sym_word, + ACTIONS(8483), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(884), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84096] = 18, - ACTIONS(3), 1, + [174542] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4717), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8485), 1, + sym_word, + STATE(5113), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5456), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8487), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(5017), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84165] = 18, - ACTIONS(3), 1, + [174618] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4723), 1, - anon_sym_RBRACE, - ACTIONS(4727), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8489), 1, + sym_word, + STATE(5203), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5605), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1578), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4725), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8491), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4969), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84234] = 18, + [174694] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1938), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1944), 1, + aux_sym_number_token1, + ACTIONS(1946), 1, + aux_sym_number_token2, + ACTIONS(1950), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1964), 1, + sym_brace_start, + ACTIONS(8083), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8085), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8091), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8093), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8095), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8097), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8101), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8103), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4723), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8081), 2, + sym_comment_word, + sym_word, + ACTIONS(8099), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8089), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1073), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84303] = 18, + [174764] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(3798), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3800), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3806), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(3810), 1, + aux_sym_number_token1, + ACTIONS(3812), 1, + aux_sym_number_token2, + ACTIONS(3814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(3816), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3818), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3824), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(3826), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4729), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(3828), 1, + sym_brace_start, + ACTIONS(8493), 1, + anon_sym_DOLLAR, + ACTIONS(3822), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8341), 2, + sym_comment_word, + sym_word, + ACTIONS(8343), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4054), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84372] = 18, - ACTIONS(3), 1, + [174834] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(8221), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8223), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8229), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8231), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8233), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8239), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8241), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4731), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8495), 1, + sym_word, + ACTIONS(8497), 1, + sym_special_character, + STATE(3325), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3674), 1, + sym_concatenation, + ACTIONS(8237), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8499), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3249), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84441] = 18, - ACTIONS(3), 1, + [174910] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4733), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8501), 1, + sym_word, + STATE(5138), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5369), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8503), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4974), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84510] = 18, + [174986] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1156), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1162), 1, + aux_sym_number_token1, + ACTIONS(1164), 1, + aux_sym_number_token2, + ACTIONS(1168), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1184), 1, + sym_brace_start, + ACTIONS(7545), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7551), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7555), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7557), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7563), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7565), 1, sym_semgrep_named_ellipsis, - ACTIONS(2071), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7561), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8053), 2, + sym_comment_word, + sym_word, + ACTIONS(8057), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(783), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84579] = 18, - ACTIONS(3), 1, + [175056] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(2391), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8505), 1, + sym_word, + STATE(5205), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5531), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8507), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4979), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84648] = 18, - ACTIONS(3), 1, + [175132] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2812), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2818), 1, + aux_sym_number_token1, + ACTIONS(2820), 1, + aux_sym_number_token2, + ACTIONS(2824), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2838), 1, + sym_brace_start, + ACTIONS(8221), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8223), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8229), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8231), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8233), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8239), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8241), 1, sym_semgrep_named_ellipsis, - ACTIONS(4735), 1, - anon_sym_RBRACE, - ACTIONS(4739), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8497), 1, + sym_special_character, + ACTIONS(8509), 1, + sym_word, + STATE(3367), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(3521), 1, + sym_concatenation, + ACTIONS(8237), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1605), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4737), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8511), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(3262), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84717] = 18, - ACTIONS(3), 1, + [175208] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4741), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8513), 1, + sym_word, + STATE(5080), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5741), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8515), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4980), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84786] = 18, + [175284] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2673), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2679), 1, + aux_sym_number_token1, + ACTIONS(2681), 1, + aux_sym_number_token2, + ACTIONS(2685), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2699), 1, + sym_brace_start, + ACTIONS(7345), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7347), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7351), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7355), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7357), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4735), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7359), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8395), 2, + sym_comment_word, + sym_word, + ACTIONS(8399), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1301), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84855] = 18, + [175354] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(57), 1, + aux_sym_number_token1, + ACTIONS(59), 1, + aux_sym_number_token2, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(73), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(75), 1, sym_semgrep_named_ellipsis, - ACTIONS(4743), 1, - anon_sym_RBRACE, - ACTIONS(4747), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(83), 1, + sym_brace_start, + ACTIONS(69), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1796), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4745), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8415), 2, + sym_comment_word, + sym_word, + ACTIONS(8419), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(877), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84924] = 18, + [175424] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4749), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8519), 1, + anon_sym_DOLLAR, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8517), 2, + sym_comment_word, + sym_word, + ACTIONS(8521), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4948), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [84993] = 18, + [175494] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1110), 1, + aux_sym_number_token1, + ACTIONS(1112), 1, + aux_sym_number_token2, + ACTIONS(1116), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1134), 1, + sym_brace_start, + ACTIONS(6581), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6587), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6591), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6601), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6603), 1, sym_semgrep_named_ellipsis, - ACTIONS(3415), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8523), 1, + anon_sym_DOLLAR, + ACTIONS(6597), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8477), 2, + sym_comment_word, + sym_word, + ACTIONS(8479), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(725), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85062] = 18, - ACTIONS(3), 1, + [175564] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(4755), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8525), 1, + sym_word, + STATE(5105), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5927), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1595), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4753), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8527), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4982), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85131] = 18, - ACTIONS(3), 1, + [175640] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6341), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4751), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(8529), 1, + sym_word, + STATE(2538), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(2631), 1, + sym_concatenation, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8531), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2042), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85200] = 18, + [175716] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2552), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2562), 1, sym_semgrep_named_ellipsis, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(4761), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(2566), 1, + sym_brace_start, + ACTIONS(8533), 1, + anon_sym_DOLLAR, + ACTIONS(2558), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1660), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4759), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7983), 2, + sym_comment_word, + sym_word, + ACTIONS(7985), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1726), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85269] = 18, - ACTIONS(3), 1, + [175786] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(4763), 1, - sym_word, - ACTIONS(4766), 1, - anon_sym_RBRACE, - ACTIONS(4771), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(4774), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(4777), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(4783), 1, - anon_sym_POUND, - ACTIONS(4786), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4789), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4792), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(4798), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4801), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - STATE(2343), 1, + ACTIONS(8535), 1, + sym_word, + STATE(5130), 1, aux_sym_for_statement_repeat1, - ACTIONS(4780), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4795), 2, + STATE(5370), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4768), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8537), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4985), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85338] = 18, + [175862] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2942), 1, + aux_sym_number_token1, + ACTIONS(2944), 1, + aux_sym_number_token2, + ACTIONS(2948), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2962), 1, + sym_brace_start, + ACTIONS(7897), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7899), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7903), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7907), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7909), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7915), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7917), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4804), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7913), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8361), 2, + sym_comment_word, + sym_word, + ACTIONS(8365), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3460), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85407] = 18, + [175932] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4588), 1, + aux_sym_number_token1, + ACTIONS(4590), 1, + aux_sym_number_token2, + ACTIONS(4594), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4608), 1, + sym_brace_start, + ACTIONS(7287), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7289), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7293), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7297), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7299), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7303), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7305), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4806), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8539), 1, + anon_sym_DOLLAR, + ACTIONS(7301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8353), 2, + sym_comment_word, + sym_word, + ACTIONS(8355), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2371), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85476] = 18, - ACTIONS(3), 1, + [176002] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4808), 1, - anon_sym_RBRACE, - ACTIONS(4812), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(8541), 1, + sym_word, + STATE(5152), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5434), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1600), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4810), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8543), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4987), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85545] = 18, - ACTIONS(3), 1, + [176078] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5429), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4808), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(8545), 1, + sym_word, + STATE(5170), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(5477), 1, + sym_concatenation, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8547), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4990), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85614] = 18, + [176154] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(6611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6615), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6623), 1, + aux_sym_number_token1, + ACTIONS(6625), 1, + aux_sym_number_token2, + ACTIONS(6627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6631), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6633), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6639), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6641), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4814), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(6645), 1, + sym_brace_start, + ACTIONS(6635), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7935), 2, + sym_comment_word, + sym_word, + ACTIONS(7939), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3171), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85683] = 18, + [176224] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2375), 1, + sym_brace_start, + ACTIONS(7989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7995), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8001), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8003), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8007), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8009), 1, sym_semgrep_named_ellipsis, - ACTIONS(4816), 1, - anon_sym_RBRACE, - ACTIONS(4820), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8551), 1, + anon_sym_DOLLAR, + ACTIONS(8005), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1601), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4818), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8549), 2, + sym_comment_word, + sym_word, + ACTIONS(8553), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3351), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85752] = 18, + [176294] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2231), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2237), 1, + aux_sym_number_token1, + ACTIONS(2239), 1, + aux_sym_number_token2, + ACTIONS(2243), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2257), 1, + sym_brace_start, + ACTIONS(7763), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7765), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7771), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7773), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7775), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7777), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7781), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7783), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7761), 2, + sym_comment_word, + sym_word, + ACTIONS(7779), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7769), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1252), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85821] = 18, - ACTIONS(3), 1, + [176364] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4822), 1, - anon_sym_RBRACE, - ACTIONS(4826), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(8555), 1, + sym_word, + ACTIONS(8557), 1, + sym_special_character, + STATE(4744), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4884), 1, + sym_concatenation, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1602), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4824), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8559), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4726), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85890] = 18, + [176440] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4771), 1, + aux_sym_number_token1, + ACTIONS(4773), 1, + aux_sym_number_token2, + ACTIONS(4777), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4791), 1, + sym_brace_start, + ACTIONS(8159), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8161), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8171), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8173), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8177), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8179), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4822), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8561), 1, + anon_sym_DOLLAR, + ACTIONS(8175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8373), 2, + sym_comment_word, + sym_word, + ACTIONS(8375), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4223), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [85959] = 18, - ACTIONS(3), 1, + [176510] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4139), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4143), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4153), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4155), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4163), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4828), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(4165), 1, + sym_brace_start, + ACTIONS(8563), 1, + sym_word, + ACTIONS(8565), 1, + sym_special_character, + STATE(4067), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4216), 1, + sym_concatenation, + ACTIONS(4159), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8567), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4011), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86028] = 18, + [176586] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2144), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2150), 1, + aux_sym_number_token1, + ACTIONS(2152), 1, + aux_sym_number_token2, + ACTIONS(2156), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2170), 1, + sym_brace_start, + ACTIONS(7399), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7401), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7405), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7409), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7411), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7415), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7417), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4830), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(7413), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7673), 2, + sym_comment_word, + sym_word, + ACTIONS(7677), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1185), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86097] = 18, - ACTIONS(3), 1, + [176656] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4139), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4143), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4153), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4155), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4163), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4832), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(4165), 1, + sym_brace_start, + ACTIONS(8565), 1, + sym_special_character, + ACTIONS(8569), 1, + sym_word, + STATE(4128), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4207), 1, + sym_concatenation, + ACTIONS(4159), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8571), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4055), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86166] = 18, + [176732] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(464), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(466), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(472), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(476), 1, + aux_sym_number_token1, + ACTIONS(478), 1, + aux_sym_number_token2, + ACTIONS(480), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(482), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(484), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(490), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(492), 1, sym_semgrep_named_ellipsis, - ACTIONS(4834), 1, - anon_sym_RBRACE, - ACTIONS(4838), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(500), 1, + sym_brace_start, + ACTIONS(8573), 1, + anon_sym_DOLLAR, + ACTIONS(488), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1615), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4836), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8391), 2, + sym_comment_word, + sym_word, + ACTIONS(8393), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(711), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86235] = 18, + [176802] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(5205), 1, + aux_sym_number_token1, + ACTIONS(5207), 1, + aux_sym_number_token2, + ACTIONS(5211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5227), 1, + sym_brace_start, + ACTIONS(5425), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5427), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5431), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(5433), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(5435), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5441), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(5443), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4834), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8517), 2, + sym_comment_word, + sym_word, + ACTIONS(8521), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4948), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86304] = 18, - ACTIONS(3), 1, + [176872] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4408), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(4410), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4412), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4422), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4424), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4432), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4840), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(4434), 1, + sym_brace_start, + ACTIONS(8575), 1, + sym_word, + STATE(4132), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4241), 1, + sym_concatenation, + ACTIONS(4428), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8577), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4085), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86373] = 18, + [176948] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4187), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4189), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4195), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4199), 1, + aux_sym_number_token1, + ACTIONS(4201), 1, + aux_sym_number_token2, + ACTIONS(4203), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4207), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4213), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4215), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4842), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4217), 1, + sym_brace_start, + ACTIONS(8579), 1, + anon_sym_DOLLAR, + ACTIONS(4211), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8411), 2, + sym_comment_word, + sym_word, + ACTIONS(8413), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(2012), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86442] = 18, - ACTIONS(3), 1, + [177018] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2540), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2552), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2562), 1, sym_semgrep_named_ellipsis, - ACTIONS(4844), 1, - anon_sym_RBRACE, - ACTIONS(4848), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(2566), 1, + sym_brace_start, + ACTIONS(8581), 1, + sym_word, + STATE(1767), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1845), 1, + sym_concatenation, + ACTIONS(2558), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4846), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8583), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1606), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86511] = 18, + [177094] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(1308), 1, + aux_sym_number_token1, + ACTIONS(1310), 1, + aux_sym_number_token2, + ACTIONS(1314), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1332), 1, + sym_brace_start, + ACTIONS(6413), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6419), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6423), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6425), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6433), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6435), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4844), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8585), 1, + anon_sym_DOLLAR, + ACTIONS(6429), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8481), 2, + sym_comment_word, + sym_word, + ACTIONS(8483), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(884), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86580] = 18, - ACTIONS(3), 1, + [177164] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(5128), 1, + anon_sym_DQUOTE, + ACTIONS(6335), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6337), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6339), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(6341), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(6345), 1, + aux_sym_number_token1, + ACTIONS(6347), 1, + aux_sym_number_token2, + ACTIONS(6349), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(6351), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6361), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(6363), 1, sym_semgrep_named_ellipsis, - ACTIONS(4850), 1, - anon_sym_RBRACE, - ACTIONS(4854), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(6367), 1, + sym_brace_start, + ACTIONS(8587), 1, + sym_word, + STATE(2468), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(2623), 1, + sym_concatenation, + ACTIONS(6357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1628), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4852), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8589), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(2094), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86649] = 18, - ACTIONS(3), 1, + [177240] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2534), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2536), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2538), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(2540), 1, sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(2546), 1, + aux_sym_number_token1, + ACTIONS(2548), 1, + aux_sym_number_token2, + ACTIONS(2550), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(2552), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2560), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(2562), 1, sym_semgrep_named_ellipsis, - ACTIONS(3479), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + ACTIONS(2566), 1, + sym_brace_start, + ACTIONS(8591), 1, + sym_word, + STATE(1747), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(1774), 1, + sym_concatenation, + ACTIONS(2558), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8593), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(1622), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86718] = 18, + [177316] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(655), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(657), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(665), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(669), 1, + aux_sym_number_token1, + ACTIONS(671), 1, + aux_sym_number_token2, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(683), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(685), 1, sym_semgrep_named_ellipsis, - ACTIONS(4856), 1, - anon_sym_RBRACE, - ACTIONS(4860), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(689), 1, + sym_brace_start, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(8595), 1, + anon_sym_DOLLAR, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1619), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4858), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(7475), 2, + sym_comment_word, + sym_word, + ACTIONS(7479), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86787] = 18, - ACTIONS(3), 1, + [177386] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4856), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(8557), 1, + sym_special_character, + ACTIONS(8597), 1, + sym_word, + STATE(4749), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4879), 1, + sym_concatenation, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8599), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4728), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86856] = 18, + [177462] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(2349), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(2355), 1, + aux_sym_number_token1, + ACTIONS(2357), 1, + aux_sym_number_token2, + ACTIONS(2361), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2375), 1, + sym_brace_start, + ACTIONS(7989), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7991), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7995), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8001), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(8003), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8007), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8009), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4850), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(8005), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8549), 2, + sym_comment_word, + sym_word, + ACTIONS(8553), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(3351), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86925] = 18, + [177532] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4404), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4406), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4412), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4416), 1, + aux_sym_number_token1, + ACTIONS(4418), 1, + aux_sym_number_token2, + ACTIONS(4420), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4422), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4424), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4430), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4432), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4862), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4434), 1, + sym_brace_start, + ACTIONS(8601), 1, + anon_sym_DOLLAR, + ACTIONS(4428), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8429), 2, + sym_comment_word, + sym_word, + ACTIONS(8431), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4133), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [86994] = 18, - ACTIONS(3), 1, + [177602] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(8557), 1, + sym_special_character, + ACTIONS(8603), 1, + sym_word, + STATE(4766), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4872), 1, + sym_concatenation, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8605), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4731), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [87063] = 18, - ACTIONS(3), 1, + [177678] = 21, + ACTIONS(71), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(7821), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7823), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7825), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(7829), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(7831), 1, + aux_sym_number_token1, + ACTIONS(7833), 1, + aux_sym_number_token2, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(7837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(7841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7845), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(7847), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4866), 1, - anon_sym_RBRACE, - STATE(2343), 1, + ACTIONS(7849), 1, + sym_brace_start, + ACTIONS(8557), 1, + sym_special_character, + ACTIONS(8607), 1, + sym_word, + STATE(4765), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + STATE(4950), 1, + sym_concatenation, + ACTIONS(7843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8609), 3, + sym_test_operator, + sym_raw_string, + sym_ansi_c_string, + STATE(4721), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [87132] = 18, + [177754] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(4135), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4137), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4139), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4143), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(4147), 1, + aux_sym_number_token1, + ACTIONS(4149), 1, + aux_sym_number_token2, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(4153), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4155), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4161), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(4163), 1, sym_semgrep_named_ellipsis, - ACTIONS(4868), 1, - anon_sym_RBRACE, - ACTIONS(4872), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + ACTIONS(4165), 1, + sym_brace_start, + ACTIONS(4159), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1624), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4870), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8377), 2, + sym_comment_word, + sym_word, + ACTIONS(8381), 5, + sym_test_operator, + sym_bare_dollar, + sym_special_character, + sym_raw_string, + sym_ansi_c_string, + STATE(4114), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, sym_semgrep_deep_expression, - [87201] = 18, + [177824] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7057), 1, + anon_sym_PERCENT, + ACTIONS(7059), 1, + anon_sym_COLON, + ACTIONS(7063), 1, + anon_sym_RBRACE3, + ACTIONS(7065), 1, + anon_sym_AT2, + ACTIONS(7067), 1, + anon_sym_STAR2, + ACTIONS(8611), 1, + anon_sym_LBRACK, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(7073), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(7061), 3, + sym_immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(7071), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + STATE(5633), 6, + sym_expansion_expression, + sym_expansion_regex, + sym_expansion_regex_replacement, + sym_expansion_regex_removal, + sym_expansion_max_length, + sym_expansion_operator, + ACTIONS(7069), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [177885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, + ACTIONS(8613), 1, + aux_sym_concatenation_token1, + ACTIONS(8615), 1, + sym_concat, + STATE(3158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_special_character, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [177930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, + aux_sym_concatenation_token1, + ACTIONS(8619), 1, + sym_concat, + STATE(3153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(976), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_special_character, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [177975] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 1, + anon_sym_DQUOTE, + ACTIONS(8621), 1, + aux_sym_for_statement_token1, + ACTIONS(8625), 1, + anon_sym__, + STATE(4005), 1, + sym_string, + STATE(4036), 1, + sym_orig_simple_variable_name, + ACTIONS(941), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8623), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(943), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [178026] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6934), 1, + anon_sym_DQUOTE, + ACTIONS(8627), 1, + aux_sym_for_statement_token1, + ACTIONS(8631), 1, + anon_sym_POUND, + STATE(3804), 1, + sym_orig_simple_variable_name, + STATE(3872), 1, + sym_string, + ACTIONS(941), 4, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1915), 1, + ACTIONS(8629), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1917), 1, + anon_sym_AT, + anon_sym__, + ACTIONS(943), 15, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4868), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87270] = 18, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [178077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, + aux_sym_concatenation_token1, + ACTIONS(8619), 1, + sym_concat, + STATE(3153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178121] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8633), 1, + aux_sym_concatenation_token1, + ACTIONS(8635), 1, + sym_concat, + STATE(3202), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(976), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_special_character, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178165] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8644), 1, + sym_variable_name, + STATE(5308), 1, + sym_subscript, + ACTIONS(8639), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(8641), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3149), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8637), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [178211] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8650), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(8647), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3150), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8639), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(8637), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [178257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8653), 1, + aux_sym_concatenation_token1, + ACTIONS(8656), 1, + sym_concat, + STATE(3151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178301] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, + aux_sym_concatenation_token1, + ACTIONS(8619), 1, + sym_concat, + STATE(3153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178345] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, + aux_sym_concatenation_token1, + ACTIONS(8659), 1, + sym_concat, + STATE(3162), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(960), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178389] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8613), 1, + aux_sym_concatenation_token1, + ACTIONS(8615), 1, + sym_concat, + STATE(3158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178433] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8667), 1, + sym_variable_name, + STATE(5320), 1, + sym_subscript, + ACTIONS(8665), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3150), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8661), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(8663), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [178479] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8681), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(8689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4874), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3170), 1, + sym_c_terminator, + STATE(4779), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + STATE(5725), 1, + sym_for_body, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87339] = 18, + [178553] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4280), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4876), 1, - anon_sym_RBRACE, - ACTIONS(4880), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1625), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4878), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8697), 1, + aux_sym_for_statement_token1, + ACTIONS(8701), 1, + anon_sym__, + STATE(4060), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87408] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + STATE(4111), 1, + sym_orig_simple_variable_name, + ACTIONS(941), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8699), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(4876), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87477] = 18, + ACTIONS(943), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [178603] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8613), 1, + aux_sym_concatenation_token1, + ACTIONS(8703), 1, + sym_concat, + STATE(3151), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4882), 1, - anon_sym_RBRACE, - ACTIONS(4886), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1626), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4884), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87546] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8681), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(8689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4882), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3170), 1, + sym_c_terminator, + STATE(4779), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + STATE(5952), 1, + sym_for_body, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87615] = 18, + [178721] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8707), 1, + sym_variable_name, + STATE(5308), 1, + sym_subscript, + ACTIONS(8661), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(8705), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3149), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8663), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [178767] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8709), 1, + aux_sym_for_statement_token1, + ACTIONS(8713), 1, + anon_sym__, + STATE(4109), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87684] = 18, + STATE(4110), 1, + sym_orig_simple_variable_name, + ACTIONS(941), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8711), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + ACTIONS(943), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [178817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8715), 1, + aux_sym_concatenation_token1, + ACTIONS(8718), 1, + sym_concat, + STATE(3162), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(966), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178861] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8681), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(8689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3170), 1, + sym_c_terminator, + STATE(4779), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + STATE(5375), 1, + sym_for_body, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87753] = 18, + [178935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8613), 1, + aux_sym_concatenation_token1, + ACTIONS(8615), 1, + sym_concat, + STATE(3158), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4892), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87822] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [178979] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8681), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(8689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4894), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3170), 1, + sym_c_terminator, + STATE(4779), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + STATE(5417), 1, + sym_for_body, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87891] = 18, + [179053] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4896), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8681), 1, + anon_sym_DQUOTE, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8691), 1, + anon_sym_BQUOTE, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, + sym_semgrep_named_ellipsis, + ACTIONS(8723), 1, + aux_sym_statements_token1, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3473), 1, + sym_c_terminator, + STATE(4840), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [87960] = 18, + [179124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1048), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8725), 1, + aux_sym_concatenation_token1, + ACTIONS(8728), 1, + sym_concat, + STATE(3168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179241] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(8681), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(8689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8691), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4757), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8723), 1, + aux_sym_statements_token1, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3424), 1, + sym_c_terminator, + STATE(4790), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88029] = 18, + [179312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(966), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(996), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179386] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1016), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179423] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8731), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4898), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3174), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88098] = 18, + ACTIONS(1056), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8633), 1, + aux_sym_concatenation_token1, + ACTIONS(8635), 1, + sym_concat, + STATE(3202), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179507] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3431), 1, + aux_sym_statements_token1, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + ACTIONS(8740), 1, + sym_file_descriptor, + STATE(3696), 1, + sym_herestring_redirect, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3427), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3429), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [179564] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym_concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4900), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88167] = 18, + [179607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1010), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4902), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88236] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1014), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3543), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88305] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1018), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4904), 1, - anon_sym_RBRACE, - ACTIONS(4908), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1642), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4906), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88374] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179755] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8749), 1, + sym_variable_name, + STATE(5330), 1, + sym_subscript, + ACTIONS(8639), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(8746), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3182), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8637), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [179800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(982), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4904), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88443] = 19, - ACTIONS(57), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179874] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(1034), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2530), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88514] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1030), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4910), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88583] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1042), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4912), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88652] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [179985] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8752), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4914), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3174), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88721] = 18, + ACTIONS(3590), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1038), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4916), 1, - anon_sym_RBRACE, - ACTIONS(4920), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1647), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4918), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88790] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4916), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88859] = 18, + ACTIONS(8633), 1, + aux_sym_concatenation_token1, + ACTIONS(8635), 1, + sym_concat, + STATE(3202), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3732), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3411), 1, + aux_sym_statements_token1, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + ACTIONS(8740), 1, + sym_file_descriptor, + STATE(3696), 1, + sym_herestring_redirect, + ACTIONS(3409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [180163] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + STATE(3696), 1, + sym_herestring_redirect, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [180206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4922), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88928] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4924), 1, - anon_sym_RBRACE, - ACTIONS(4928), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1648), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4926), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [88997] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(998), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4924), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89066] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180317] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4930), 1, - anon_sym_RBRACE, - ACTIONS(4934), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1649), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4932), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8673), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(8677), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8681), 1, + anon_sym_DQUOTE, + ACTIONS(8683), 1, + aux_sym_number_token1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(8687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8691), 1, + anon_sym_BQUOTE, + ACTIONS(8693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8695), 1, + sym_semgrep_named_ellipsis, + ACTIONS(8723), 1, + aux_sym_statements_token1, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(3426), 1, + sym_c_terminator, + STATE(4856), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + ACTIONS(8675), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89135] = 18, + [180388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8754), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4930), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89204] = 18, + ACTIONS(1056), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1054), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(968), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4936), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89273] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4938), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89342] = 18, + ACTIONS(1046), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1044), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180503] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4940), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89411] = 18, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + STATE(3696), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [180548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4942), 1, - anon_sym_RBRACE, - ACTIONS(4946), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1710), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4944), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89480] = 18, + ACTIONS(982), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(980), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180585] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2455), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89549] = 18, + ACTIONS(8633), 1, + aux_sym_concatenation_token1, + ACTIONS(8757), 1, + sym_concat, + STATE(3168), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(960), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4948), 1, - anon_sym_RBRACE, - ACTIONS(4952), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1676), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4950), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89618] = 18, + ACTIONS(990), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(988), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1032), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1002), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4954), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89687] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(994), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4948), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89756] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4942), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89825] = 18, + ACTIONS(1014), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1012), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4956), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89894] = 18, + ACTIONS(1042), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1040), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3607), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [89963] = 18, + ACTIONS(1006), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1004), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4958), 1, - anon_sym_RBRACE, - ACTIONS(4962), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1666), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4960), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90032] = 18, + ACTIONS(1002), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1000), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4958), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90101] = 18, + ACTIONS(994), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(992), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4964), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90170] = 18, + ACTIONS(1022), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1020), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [180998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4966), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90239] = 18, + ACTIONS(1038), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1036), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90308] = 18, + ACTIONS(1030), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1028), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181109] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8759), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4970), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90377] = 18, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181150] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4972), 1, - anon_sym_RBRACE, - ACTIONS(4976), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1671), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4974), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90446] = 18, + ACTIONS(8763), 1, + sym_variable_name, + STATE(5330), 1, + sym_subscript, + ACTIONS(8661), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(8761), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3182), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8663), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [181195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4972), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90515] = 18, + ACTIONS(1026), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1024), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4978), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90584] = 18, + ACTIONS(986), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(984), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181269] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(4412), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(4984), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1672), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4982), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(8765), 1, + aux_sym_for_statement_token1, + ACTIONS(8769), 1, + anon_sym__, + STATE(4160), 1, + sym_orig_simple_variable_name, + STATE(4169), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90653] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(941), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8767), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(4980), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90722] = 18, + ACTIONS(943), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [181318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8759), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4986), 1, - anon_sym_RBRACE, - ACTIONS(4990), 1, - anon_sym_POUND, - STATE(2343), 1, + STATE(3197), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1673), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4988), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90791] = 18, + ACTIONS(3732), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8752), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4986), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3174), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90860] = 18, + ACTIONS(3732), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90929] = 18, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1048), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4994), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(7055), 1, + anon_sym_SLASH, + ACTIONS(7057), 1, + anon_sym_PERCENT, + ACTIONS(7059), 1, anon_sym_COLON, - anon_sym_COLON_QMARK, + ACTIONS(7423), 1, + anon_sym_AT2, + ACTIONS(8611), 1, + anon_sym_LBRACK, + ACTIONS(7053), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(7073), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(7061), 3, + sym_immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(7071), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + STATE(5691), 6, + sym_expansion_expression, + sym_expansion_regex, + sym_expansion_regex_replacement, + sym_expansion_regex_removal, + sym_expansion_max_length, + sym_expansion_operator, + ACTIONS(7069), 8, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [90998] = 18, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + [181492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(986), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4996), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91067] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4998), 1, - anon_sym_RBRACE, - ACTIONS(5002), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1686), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5000), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91136] = 18, + ACTIONS(1010), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1008), 25, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8773), 1, + sym_concat, + STATE(3256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(976), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91205] = 18, + [181609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1050), 5, + sym_file_descriptor, + sym_concat, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5004), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91274] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3441), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [181688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1036), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181724] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8773), 1, + sym_concat, + STATE(3256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [181766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8777), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5006), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3239), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91343] = 18, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181806] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8773), 1, + sym_concat, + STATE(3256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [181848] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8779), 1, + sym_concat, + STATE(3244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5008), 1, - anon_sym_RBRACE, - ACTIONS(5012), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1698), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5010), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91412] = 18, + [181890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym_concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5008), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91481] = 18, + [181932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5014), 1, - anon_sym_RBRACE, - ACTIONS(5018), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1699), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5016), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91550] = 18, + ACTIONS(1026), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1024), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [181968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3671), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91619] = 18, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8773), 1, + sym_concat, + STATE(3256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [182010] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5020), 1, - anon_sym_RBRACE, - ACTIONS(5024), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1690), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5022), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91688] = 18, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + STATE(3887), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 19, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [182054] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8783), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5020), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3239), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91757] = 18, + ACTIONS(1056), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1054), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8788), 1, + sym_concat, + STATE(3317), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(976), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5014), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91826] = 18, + [182136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5026), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91895] = 18, + ACTIONS(1002), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1000), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym_concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5028), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [91964] = 18, + [182214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5030), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92033] = 18, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + STATE(3887), 1, + sym_herestring_redirect, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [182256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8790), 1, + aux_sym_concatenation_token1, + ACTIONS(8793), 1, + sym_concat, + STATE(3244), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5032), 1, - anon_sym_RBRACE, - ACTIONS(5036), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1695), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5034), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92102] = 18, + [182298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(992), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182334] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 18, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [182378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5032), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92171] = 18, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8773), 1, + sym_concat, + STATE(3256), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [182420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5038), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92240] = 18, + ACTIONS(1006), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1004), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym_concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5040), 1, - anon_sym_RBRACE, - ACTIONS(5044), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1696), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5042), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92309] = 18, + [182498] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5040), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92378] = 18, + ACTIONS(3429), 1, + anon_sym_RPAREN, + ACTIONS(3487), 1, + ts_builtin_sym_end, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, + sym_file_descriptor, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3489), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [182556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8804), 1, + sym_concat, + STATE(3311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(976), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5046), 1, - anon_sym_RBRACE, - ACTIONS(5050), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1697), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5048), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92447] = 18, + [182598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5046), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92516] = 18, + ACTIONS(982), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(980), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5052), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92585] = 18, + ACTIONS(990), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(988), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5054), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92654] = 18, + ACTIONS(1018), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1016), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5056), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92723] = 18, + ACTIONS(8808), 1, + aux_sym_statements_token1, + ACTIONS(8814), 1, + anon_sym_LT_LT_LT, + ACTIONS(8816), 1, + sym_file_descriptor, + ACTIONS(8812), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3272), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8810), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8806), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [182752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5058), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92792] = 18, + ACTIONS(8771), 1, + aux_sym_concatenation_token1, + ACTIONS(8818), 1, + sym_concat, + STATE(3257), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(960), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [182794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5060), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92861] = 18, + ACTIONS(8820), 1, + aux_sym_concatenation_token1, + ACTIONS(8823), 1, + sym_concat, + STATE(3257), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [182836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5062), 1, - anon_sym_RBRACE, - ACTIONS(5066), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1722), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5064), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92930] = 18, + ACTIONS(998), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(996), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5068), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [92999] = 18, + ACTIONS(1014), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1012), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5062), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93068] = 18, + ACTIONS(1042), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1040), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182944] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5070), 1, - anon_sym_RBRACE, - ACTIONS(5074), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1727), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5072), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93137] = 18, + ACTIONS(1034), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1032), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [182980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8742), 1, + aux_sym_concatenation_token1, + ACTIONS(8744), 1, + sym_concat, + STATE(3234), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5076), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93206] = 18, + [183022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93275] = 18, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5078), 1, - anon_sym_RBRACE, - ACTIONS(5082), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1714), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5080), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93344] = 18, + ACTIONS(1046), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1044), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183094] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + ACTIONS(8830), 1, + sym_file_descriptor, + STATE(3887), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3459), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(1818), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [183150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5078), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93413] = 18, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183186] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8834), 1, + sym_concat, + STATE(3284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(976), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5070), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93482] = 18, + [183228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5084), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93551] = 18, + ACTIONS(1022), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1020), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5086), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93620] = 18, + ACTIONS(986), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(984), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183300] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5088), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93689] = 18, + ACTIONS(1816), 1, + ts_builtin_sym_end, + ACTIONS(1818), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, + sym_file_descriptor, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3459), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [183358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5090), 1, - anon_sym_RBRACE, - ACTIONS(5094), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1719), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5092), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93758] = 18, + ACTIONS(968), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(966), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183394] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5090), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93827] = 18, + ACTIONS(8838), 1, + aux_sym_statements_token1, + ACTIONS(8846), 1, + anon_sym_LT_LT_LT, + ACTIONS(8849), 1, + sym_file_descriptor, + ACTIONS(8843), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3272), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8840), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8836), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [183440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5096), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93896] = 18, + ACTIONS(1010), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1008), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183476] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5098), 1, - anon_sym_RBRACE, - ACTIONS(5102), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1720), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5100), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [93965] = 18, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + ACTIONS(8830), 1, + sym_file_descriptor, + STATE(3887), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3489), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3429), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [183532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 4, + sym_file_descriptor, + sym_concat, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(1028), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8777), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5098), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3239), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94034] = 18, + ACTIONS(3732), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5104), 1, - anon_sym_RBRACE, - ACTIONS(5108), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1721), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5106), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94103] = 18, + ACTIONS(1034), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1032), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [183643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(998), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5104), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94172] = 18, + [183678] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5110), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94241] = 18, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [183715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8852), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5112), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3339), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94310] = 18, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [183754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3590), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5114), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94379] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8854), 1, + aux_sym_concatenation_token1, + ACTIONS(8857), 1, + sym_concat, + STATE(3282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5116), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94448] = 18, + [183830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2519), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94517] = 18, + ACTIONS(1026), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1024), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [183865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5118), 1, - anon_sym_RBRACE, - ACTIONS(5122), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1748), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5120), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94586] = 18, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8860), 1, + sym_concat, + STATE(3342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(960), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [183906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5124), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, + ACTIONS(4400), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4398), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [183941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8862), 1, + sym_concat, + ACTIONS(5447), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_COLON_QMARK, + ACTIONS(5449), 21, + sym_immediate_double_hash, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT2, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94655] = 18, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [183978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8864), 1, + aux_sym_concatenation_token1, + ACTIONS(8866), 1, + sym_concat, + STATE(3303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(976), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5118), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94724] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5126), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94793] = 18, + [184019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1002), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5128), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94862] = 18, + [184054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(994), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [94931] = 18, + [184089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8804), 1, + sym_concat, + STATE(3311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5130), 1, - anon_sym_RBRACE, - ACTIONS(5134), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1738), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5132), 6, - anon_sym_EQ, - anon_sym_DASH, + [184130] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3411), 1, + aux_sym_statements_token1, + ACTIONS(8868), 1, + sym_file_descriptor, + ACTIONS(3409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1818), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [184181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8870), 1, + sym_concat, + ACTIONS(5494), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_COLON_QMARK, + ACTIONS(5496), 21, + sym_immediate_double_hash, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT2, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95000] = 18, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [184218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [184253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [184288] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8804), 1, + sym_concat, + STATE(3311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [184329] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8834), 1, + sym_concat, + STATE(3284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [184370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [184405] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + ACTIONS(8874), 1, + aux_sym_statements_token1, + ACTIONS(8876), 1, + sym_file_descriptor, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3754), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8872), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [184450] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8834), 1, + sym_concat, + STATE(3284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [184491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [184526] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8788), 1, + sym_concat, + STATE(3317), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [184567] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8884), 1, + anon_sym_LT_LT_LT, + ACTIONS(8887), 1, + sym_file_descriptor, + ACTIONS(8838), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(8881), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3302), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8878), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8836), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [184612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8864), 1, + aux_sym_concatenation_token1, + ACTIONS(8890), 1, + sym_concat, + STATE(3332), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(960), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5130), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95069] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4743), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95138] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5136), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95207] = 18, + [184653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5138), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95276] = 18, + ACTIONS(8868), 1, + sym_file_descriptor, + ACTIONS(8894), 1, + aux_sym_statements_token1, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3354), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8892), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [184698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1014), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5140), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95345] = 18, + [184733] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5142), 1, - anon_sym_RBRACE, - ACTIONS(5146), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1743), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5144), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95414] = 18, + ACTIONS(3431), 1, + aux_sym_statements_token1, + ACTIONS(8868), 1, + sym_file_descriptor, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3417), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3427), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3429), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [184784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1018), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5142), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95483] = 18, + [184819] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1818), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5148), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95552] = 18, + ACTIONS(3954), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8900), 1, + sym_file_descriptor, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3952), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [184874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1022), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5150), 1, - anon_sym_RBRACE, - ACTIONS(5154), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1744), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5152), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95621] = 18, + [184909] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5150), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95690] = 18, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [184948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5156), 1, - anon_sym_RBRACE, - ACTIONS(5160), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1745), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5158), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95759] = 18, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8902), 1, + sym_concat, + STATE(3282), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(960), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [184989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1026), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5156), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95828] = 18, + [185024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5162), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95897] = 18, + ACTIONS(982), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(980), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [185059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(982), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5164), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [95966] = 18, + [185094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1034), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5166), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96035] = 18, + [185129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1030), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5168), 1, - anon_sym_RBRACE, - ACTIONS(5172), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1758), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5170), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96104] = 18, + [185164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5168), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96173] = 18, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8904), 1, + sym_concat, + STATE(3369), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(960), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [185205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5174), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96242] = 18, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8788), 1, + sym_concat, + STATE(3317), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [185246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1042), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5176), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96311] = 18, + [185281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5178), 1, - anon_sym_RBRACE, - ACTIONS(5182), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1774), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5180), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96380] = 18, + ACTIONS(994), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(992), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [185316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4396), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(4394), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [185351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96449] = 18, + ACTIONS(1030), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1028), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [185386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5184), 1, - anon_sym_RBRACE, - ACTIONS(5188), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1775), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5186), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96518] = 18, + ACTIONS(1010), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1008), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [185421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1038), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3863), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96587] = 18, + [185456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8906), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5190), 1, - anon_sym_RBRACE, - ACTIONS(5194), 1, - anon_sym_POUND, - STATE(2343), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5192), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96656] = 18, + ACTIONS(3836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [185495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(8910), 1, + sym_concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(976), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5190), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96725] = 18, + [185536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8852), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5184), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3339), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96794] = 18, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [185575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5196), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96863] = 18, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8788), 1, + sym_concat, + STATE(3317), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [185616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5198), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [96932] = 18, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [185653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(4396), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4394), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5200), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97001] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [185688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(5206), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1767), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5204), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97070] = 18, + ACTIONS(998), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(996), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [185723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8912), 1, + aux_sym_concatenation_token1, + ACTIONS(8915), 1, + sym_concat, + STATE(3332), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5202), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97139] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5208), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97208] = 18, + [185764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(986), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5210), 1, - anon_sym_RBRACE, - ACTIONS(5214), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1768), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5212), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97277] = 18, + [185799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(968), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5210), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97346] = 18, + [185834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3732), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5216), 1, - anon_sym_RBRACE, - ACTIONS(5220), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1769), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5218), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97415] = 18, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [185869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5216), 1, - anon_sym_RBRACE, - STATE(2343), 1, + [185904] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [185939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [185974] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8918), 1, + sym_special_character, + STATE(3339), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97484] = 18, + ACTIONS(1056), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1054), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [186013] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8906), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + STATE(3373), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5222), 1, - anon_sym_RBRACE, - STATE(2343), 1, + [186052] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8852), 1, + sym_special_character, + STATE(3339), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97553] = 18, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [186091] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8921), 1, + aux_sym_concatenation_token1, + ACTIONS(8924), 1, + sym_concat, + STATE(3342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(966), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [186132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8804), 1, + sym_concat, + STATE(3311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [186173] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [186214] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8931), 1, + anon_sym_LT_LT_LT, + ACTIONS(8933), 1, + sym_file_descriptor, + ACTIONS(8808), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(8929), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3302), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8927), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8806), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [186259] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8852), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5224), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3339), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97622] = 18, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [186298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(1006), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5226), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97691] = 19, - ACTIONS(57), 1, + [186333] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, + ACTIONS(8906), 1, sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, - STATE(2690), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97762] = 18, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [186372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5228), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97831] = 19, - ACTIONS(57), 1, + ACTIONS(986), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(984), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [186407] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3995), 1, - sym_special_character, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(8802), 1, + aux_sym_concatenation_token1, + ACTIONS(8804), 1, + sym_concat, + STATE(3311), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2691), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97902] = 19, - ACTIONS(57), 1, + [186448] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2692), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [97973] = 18, + ACTIONS(968), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(966), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [186483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5230), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98042] = 18, + ACTIONS(8786), 1, + aux_sym_concatenation_token1, + ACTIONS(8788), 1, + sym_concat, + STATE(3317), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [186524] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(3429), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5232), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98111] = 19, - ACTIONS(57), 1, + ACTIONS(4069), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8900), 1, + sym_file_descriptor, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4067), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [186579] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_BANG, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, - sym_special_character, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2700), 1, - sym_expression, - ACTIONS(4029), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98182] = 19, - ACTIONS(57), 1, + ACTIONS(8937), 1, + aux_sym_statements_token1, + ACTIONS(8948), 1, + sym_file_descriptor, + ACTIONS(8942), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8945), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3354), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8939), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8935), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [186624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [186659] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2705), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98253] = 19, - ACTIONS(57), 1, + ACTIONS(990), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [186694] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - sym_word, - ACTIONS(1849), 1, - anon_sym_BANG, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(3923), 1, - anon_sym_LPAREN, - ACTIONS(3925), 1, - sym_special_character, - ACTIONS(3927), 1, - anon_sym_DQUOTE, - ACTIONS(3931), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, - anon_sym_BQUOTE, - ACTIONS(3939), 1, - sym_test_operator, - ACTIONS(3941), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2358), 1, - sym_expression, - ACTIONS(3929), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98324] = 18, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + ACTIONS(8876), 1, + sym_file_descriptor, + ACTIONS(8953), 1, + aux_sym_statements_token1, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3787), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8951), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [186739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(4581), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98393] = 18, + ACTIONS(8738), 1, + anon_sym_LT_LT_LT, + ACTIONS(8876), 1, + sym_file_descriptor, + ACTIONS(8957), 1, + aux_sym_statements_token1, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3777), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8734), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8955), 12, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [186784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5234), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98462] = 19, - ACTIONS(57), 1, + ACTIONS(4400), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(4398), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [186819] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2699), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98533] = 19, - ACTIONS(57), 1, + ACTIONS(1046), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1044), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [186854] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3987), 1, - sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3995), 1, - sym_special_character, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2701), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98604] = 19, - ACTIONS(57), 1, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8834), 1, + sym_concat, + STATE(3284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [186895] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2704), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98675] = 19, - ACTIONS(57), 1, + ACTIONS(8838), 1, + aux_sym_statements_token1, + ACTIONS(8965), 1, + anon_sym_LT_LT_LT, + ACTIONS(8968), 1, + sym_file_descriptor, + ACTIONS(8962), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3362), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8959), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8836), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [186940] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_BANG, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, - sym_special_character, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 18, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2667), 1, - sym_expression, - ACTIONS(4029), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98746] = 19, - ACTIONS(57), 1, + [186983] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2665), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98817] = 19, - ACTIONS(57), 1, + ACTIONS(3732), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [187018] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, + ACTIONS(4769), 1, anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2567), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(8971), 1, + aux_sym_for_statement_token1, + STATE(4226), 1, + sym_orig_simple_variable_name, + STATE(4230), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98888] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(943), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(8973), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, + anon_sym_AT, anon_sym_POUND, - ACTIONS(5236), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [98957] = 18, + anon_sym__, + ACTIONS(941), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [187063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5238), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99026] = 18, + ACTIONS(1006), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1004), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(8906), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(2583), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99095] = 19, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1959), 1, - anon_sym_BANG, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1963), 1, - sym_special_character, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(3848), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - ACTIONS(1975), 1, - sym_test_operator, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - STATE(2483), 1, - aux_sym_for_statement_repeat1, - STATE(2707), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99166] = 19, - ACTIONS(57), 1, + [187137] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_BANG, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4025), 1, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [187172] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8975), 1, + aux_sym_concatenation_token1, + ACTIONS(8978), 1, + sym_concat, + STATE(3369), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(966), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [187213] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + aux_sym_statements_token1, + ACTIONS(8985), 1, + anon_sym_LT_LT_LT, + ACTIONS(8987), 1, + sym_file_descriptor, + ACTIONS(8983), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3362), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8981), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8806), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [187258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1016), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1012), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8989), 1, sym_special_character, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - STATE(2507), 1, + STATE(3373), 1, aux_sym_for_statement_repeat1, - STATE(2703), 1, - sym_expression, - ACTIONS(4029), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99237] = 19, - ACTIONS(57), 1, + ACTIONS(1056), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [187367] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1040), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187437] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8832), 1, + aux_sym_concatenation_token1, + ACTIONS(8834), 1, + sym_concat, + STATE(3284), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [187478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1036), 24, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [187513] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8864), 1, + aux_sym_concatenation_token1, + ACTIONS(8866), 1, + sym_concat, + STATE(3303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4079), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(1967), 1, + 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, - ACTIONS(1969), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2693), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99308] = 18, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [187554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1046), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1044), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5240), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99377] = 18, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [187588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1040), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [187622] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9001), 1, + sym_file_descriptor, + ACTIONS(8937), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(8995), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8998), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3381), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8935), 8, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + ACTIONS(8992), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [187666] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + ACTIONS(8874), 1, + aux_sym_statements_token1, + ACTIONS(9004), 1, + sym_file_descriptor, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3858), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8872), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [187710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(966), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5242), 1, - anon_sym_RBRACE, - ACTIONS(5246), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1489), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5244), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99446] = 10, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [187744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(5248), 1, - aux_sym_for_statement_token1, - ACTIONS(5254), 1, - sym_raw_string, - STATE(2631), 1, - sym_orig_simple_variable_name, - STATE(2634), 1, - sym_string, - ACTIONS(621), 4, - anon_sym_EQ, + ACTIONS(990), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(988), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - ACTIONS(5250), 4, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(5252), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_POUND, - ACTIONS(623), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [187778] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(8910), 1, + sym_concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [187818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(992), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99499] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [187852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1022), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [187886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1036), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [187920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(980), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [187954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1008), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [187988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1036), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [188022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1024), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5256), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99568] = 19, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2712), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99639] = 19, - ACTIONS(57), 1, + [188056] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4017), 1, - sym_word, - ACTIONS(4019), 1, - anon_sym_LPAREN, - ACTIONS(4021), 1, - anon_sym_BANG, - ACTIONS(4023), 1, + ACTIONS(4400), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(4398), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [188090] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(8910), 1, + sym_concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [188130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(984), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4025), 1, sym_special_character, - ACTIONS(4027), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, anon_sym_BQUOTE, - ACTIONS(4039), 1, - sym_test_operator, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - STATE(2507), 1, - aux_sym_for_statement_repeat1, - STATE(2685), 1, - sym_expression, - ACTIONS(4029), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4037), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2706), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99710] = 19, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3987), 1, sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [188164] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3429), 1, + anon_sym_RPAREN, + ACTIONS(3487), 1, + ts_builtin_sym_end, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3489), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [188216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [188250] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(980), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3995), 1, sym_special_character, - ACTIONS(3997), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2678), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99781] = 18, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [188284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1034), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1032), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5258), 1, - anon_sym_RBRACE, - ACTIONS(5262), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1814), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5260), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99850] = 19, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, sym_word, - ACTIONS(1957), 1, - anon_sym_LPAREN, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2627), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [99921] = 10, + [188318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(5264), 1, - aux_sym_for_statement_token1, - ACTIONS(5270), 1, - sym_raw_string, - STATE(2496), 1, - sym_string, - STATE(2504), 1, - sym_orig_simple_variable_name, - ACTIONS(621), 4, - anon_sym_EQ, + ACTIONS(986), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(984), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - ACTIONS(5266), 4, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(5268), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_POUND, - ACTIONS(623), 13, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [188352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1044), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [188386] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 19, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99974] = 19, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [188424] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - sym_word, - ACTIONS(1849), 1, - anon_sym_BANG, - ACTIONS(1851), 1, + ACTIONS(1030), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1028), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3923), 1, - anon_sym_LPAREN, - ACTIONS(3925), 1, sym_special_character, - ACTIONS(3927), 1, anon_sym_DQUOTE, - ACTIONS(3931), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, anon_sym_BQUOTE, - ACTIONS(3939), 1, - sym_test_operator, - ACTIONS(3941), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, sym_semgrep_named_ellipsis, - STATE(2019), 1, + [188458] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9008), 1, + sym_special_character, + STATE(3483), 1, aux_sym_for_statement_repeat1, - STATE(2355), 1, - sym_expression, - ACTIONS(3929), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100045] = 18, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [188496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(9010), 1, + sym_file_descriptor, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8874), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3689), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8872), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [188540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1040), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5258), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [188574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [188610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5447), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_COLON, - anon_sym_COLON_QMARK, + ACTIONS(5449), 21, + sym_immediate_double_hash, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT2, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100114] = 19, - ACTIONS(57), 1, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [188644] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1843), 1, - sym_word, - ACTIONS(1849), 1, - anon_sym_BANG, - ACTIONS(1851), 1, - anon_sym_DOLLAR, - ACTIONS(3923), 1, - anon_sym_LPAREN, - ACTIONS(3925), 1, - sym_special_character, - ACTIONS(3927), 1, - anon_sym_DQUOTE, - ACTIONS(3931), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [188678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1020), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(3939), 1, - sym_test_operator, - ACTIONS(3941), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, - sym_semgrep_named_ellipsis, - STATE(2019), 1, - aux_sym_for_statement_repeat1, - STATE(2350), 1, - sym_expression, - ACTIONS(3929), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2466), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2039), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100185] = 18, + [188712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1012), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [188746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1026), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1024), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [188780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1036), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5272), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100254] = 19, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3987), 1, sym_word, - ACTIONS(3989), 1, - anon_sym_LPAREN, - ACTIONS(3991), 1, - anon_sym_BANG, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3995), 1, - sym_special_character, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4009), 1, - sym_test_operator, - ACTIONS(4011), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, sym_semgrep_named_ellipsis, - STATE(2519), 1, - aux_sym_for_statement_repeat1, - STATE(2697), 1, - sym_expression, - ACTIONS(3999), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2702), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2518), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100325] = 18, + [188814] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + ACTIONS(8957), 1, + aux_sym_statements_token1, + ACTIONS(9004), 1, + sym_file_descriptor, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3863), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8955), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [188858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [188892] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(996), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5274), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100394] = 18, + [188926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(8910), 1, + sym_concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [188966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1004), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5242), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100463] = 18, + sym_word, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [189000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1018), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1016), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [189034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1012), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [189068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3590), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3588), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [189102] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(9012), 1, + sym_concat, + STATE(3510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(960), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [189142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1032), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [189176] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9014), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(3963), 1, - anon_sym_RBRACE, - ACTIONS(4061), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5198), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100532] = 18, + [189240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(990), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [189274] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(5276), 1, - anon_sym_RBRACE, - ACTIONS(5280), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1289), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5278), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(9040), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5247), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100601] = 19, - ACTIONS(57), 1, + [189338] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1955), 1, - sym_word, - ACTIONS(1957), 1, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, anon_sym_LPAREN, - ACTIONS(1961), 1, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(3073), 1, - anon_sym_BANG, - ACTIONS(3075), 1, - sym_special_character, - ACTIONS(3077), 1, - sym_test_operator, - STATE(2299), 1, - aux_sym_for_statement_repeat1, - STATE(2672), 1, - sym_expression, - ACTIONS(1965), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2555), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2058), 7, + ACTIONS(9042), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5215), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100672] = 18, + [189402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(9044), 1, sym_special_character, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, - anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5276), 1, - anon_sym_RBRACE, - STATE(2343), 1, + STATE(3491), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100741] = 18, + ACTIONS(3848), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [189440] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [189476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1002), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1000), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, - sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5282), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100810] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1909), 1, sym_word, - ACTIONS(1915), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [189510] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(5284), 1, - anon_sym_RBRACE, - ACTIONS(5288), 1, - anon_sym_POUND, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1290), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5286), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(9046), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5160), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100879] = 18, + [189574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(1030), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1028), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [189608] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8781), 1, + anon_sym_LT_LT_LT, + ACTIONS(8953), 1, + aux_sym_statements_token1, + ACTIONS(9004), 1, + sym_file_descriptor, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3868), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8951), 11, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [189652] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1917), 1, - sym_special_character, - ACTIONS(1919), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5284), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(9048), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5220), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [100948] = 18, + [189716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, + ACTIONS(994), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(992), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1917), 1, sym_special_character, - ACTIONS(1919), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, sym_semgrep_named_ellipsis, - ACTIONS(4063), 1, - anon_sym_RBRACE, - ACTIONS(5292), 1, - anon_sym_POUND, - STATE(2343), 1, + [189750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [189784] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1040), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [189818] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8937), 1, + aux_sym_statements_token1, + ACTIONS(9059), 1, + sym_file_descriptor, + ACTIONS(9053), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(9056), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3438), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9050), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8935), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [189862] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9062), 1, + sym_special_character, + STATE(3439), 1, aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1291), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(5290), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [101017] = 18, + ACTIONS(1056), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1054), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [189900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1909), 1, - sym_word, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1917), 1, + ACTIONS(1006), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1004), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [189934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1000), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [189968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(992), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [190002] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9065), 1, sym_special_character, - ACTIONS(1919), 1, + STATE(3439), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [190040] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - ACTIONS(4061), 1, - anon_sym_POUND, - ACTIONS(5294), 1, - anon_sym_RBRACE, - STATE(2343), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1921), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1590), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(4059), 6, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - STATE(2107), 7, + ACTIONS(9067), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5257), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [101086] = 10, + [190104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(5296), 1, - aux_sym_for_statement_token1, - ACTIONS(5300), 1, - sym_raw_string, - ACTIONS(5302), 1, - anon_sym_POUND, - STATE(2366), 1, - sym_orig_simple_variable_name, - STATE(2467), 1, - sym_string, - ACTIONS(621), 7, - anon_sym_EQ, - anon_sym_COLON, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(5298), 8, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(623), 9, - anon_sym_RBRACE, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [101138] = 10, - ACTIONS(57), 1, + ACTIONS(8894), 1, + aux_sym_statements_token1, + ACTIONS(9069), 1, + sym_file_descriptor, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3438), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8892), 9, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + [190148] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [190182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(984), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [190216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1024), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [190250] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5312), 1, - anon_sym_DOLLAR, - ACTIONS(5317), 1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(9010), 1, sym_file_descriptor, - ACTIONS(5320), 1, - sym_variable_name, - STATE(3520), 1, - sym_subscript, - ACTIONS(5314), 2, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - ACTIONS(5306), 3, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8953), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3751), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - STATE(1820), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - ACTIONS(5309), 5, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5304), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [101189] = 5, - ACTIONS(57), 1, + ACTIONS(8951), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [190294] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5323), 1, + ACTIONS(1038), 3, + sym_file_descriptor, sym_concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 4, + aux_sym_statements_token1, + ACTIONS(1036), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1385), 22, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [190328] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 2, sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [190364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(988), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101229] = 5, - ACTIONS(57), 1, + [190398] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5326), 1, + ACTIONS(1050), 4, sym_concat, - STATE(1821), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1379), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101269] = 5, - ACTIONS(57), 1, + [190432] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(1022), 4, sym_concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5330), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1020), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(5328), 22, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101309] = 5, - ACTIONS(57), 1, + [190466] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(1010), 3, + sym_file_descriptor, sym_concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5336), 4, + aux_sym_statements_token1, + ACTIONS(1008), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(5334), 22, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [190500] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3966), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, sym_file_descriptor, - sym_variable_name, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3964), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [190552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3441), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [190588] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8808), 1, + aux_sym_statements_token1, + ACTIONS(8931), 1, + anon_sym_LT_LT_LT, + ACTIONS(9075), 1, + sym_file_descriptor, + ACTIONS(9073), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3513), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(9071), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + ACTIONS(8806), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [190632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(996), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101349] = 5, - ACTIONS(57), 1, + [190666] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, + ACTIONS(968), 3, + sym_file_descriptor, sym_concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 4, + aux_sym_statements_token1, + ACTIONS(966), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1361), 22, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [190700] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9044), 1, + sym_special_character, + STATE(3491), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [190738] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1816), 1, + ts_builtin_sym_end, + ACTIONS(1818), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3459), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [190790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1008), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101389] = 9, + [190824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 1, - anon_sym_LF, - ACTIONS(5338), 1, - aux_sym_for_statement_token1, - ACTIONS(5342), 1, + ACTIONS(5577), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(5579), 21, + sym_immediate_double_hash, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_POUND, + anon_sym_RBRACE3, + anon_sym_AT2, + anon_sym_EQ2, + anon_sym_COLON_EQ, + anon_sym_DASH3, + anon_sym_COLON_DASH, + anon_sym_PLUS3, + anon_sym_COLON_PLUS, + anon_sym_QMARK2, + anon_sym_COLON_QMARK, + anon_sym_PERCENT_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + [190858] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(5344), 1, - sym_raw_string, - STATE(2720), 1, - sym_orig_simple_variable_name, - STATE(2741), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9077), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5234), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, - ACTIONS(5340), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - ACTIONS(621), 13, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [190922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1012), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - sym_special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [101437] = 4, + [190956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1355), 2, + ACTIONS(982), 4, sym_file_descriptor, - anon_sym_LF, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1357), 21, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(980), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [190990] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8908), 1, + aux_sym_concatenation_token1, + ACTIONS(8910), 1, + sym_concat, + STATE(3422), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [191030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1004), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [101474] = 5, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [191064] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - sym_special_character, - STATE(1832), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5330), 4, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(9069), 1, + sym_file_descriptor, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3489), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3429), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(5328), 21, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101513] = 3, - ACTIONS(57), 1, + [191114] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1416), 4, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8894), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3381), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1418), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(8892), 8, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_RPAREN, + anon_sym_PIPE_AMP, + [191158] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 18, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [191196] = 18, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101548] = 11, + ACTIONS(9079), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5232), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [191260] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1341), 1, - anon_sym_LF, - ACTIONS(1351), 1, - anon_sym_LT_LT_LT, - ACTIONS(5350), 1, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(9069), 1, sym_file_descriptor, - ACTIONS(1343), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1345), 2, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1347), 2, - anon_sym_AMP_AMP, + ACTIONS(3459), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3463), 2, anon_sym_PIPE_PIPE, - ACTIONS(1349), 2, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(561), 4, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(1818), 3, anon_sym_SEMI_SEMI, - anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(1854), 4, + STATE(3445), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5348), 8, + ACTIONS(8826), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -107906,844 +228307,670 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [101599] = 5, + [191310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1345), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1373), 2, + ACTIONS(1034), 4, sym_file_descriptor, - anon_sym_LF, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 19, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1032), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [101638] = 5, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [191344] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, - sym_special_character, - STATE(1832), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 4, + ACTIONS(1002), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1434), 21, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101677] = 16, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [191378] = 18, + ACTIONS(71), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5357), 1, - anon_sym_LF, - ACTIONS(5361), 1, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(5363), 1, - sym_special_character, - ACTIONS(5365), 1, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5359), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2668), 7, + ACTIONS(9081), 1, + anon_sym_RPAREN_RPAREN, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5249), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [101738] = 3, - ACTIONS(57), 1, + [191442] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1398), 23, + ACTIONS(1030), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101773] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1412), 4, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1028), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1414), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101808] = 3, - ACTIONS(57), 1, + [191476] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1453), 23, + ACTIONS(1030), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101843] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1455), 4, + aux_sym_statements_token1, + ACTIONS(1028), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1457), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101878] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [191510] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1461), 23, + ACTIONS(1010), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1008), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101913] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [191544] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1540), 4, + ACTIONS(9044), 1, + sym_special_character, + STATE(3491), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1542), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101948] = 3, - ACTIONS(57), 1, + [191582] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 4, + ACTIONS(9008), 1, + sym_special_character, + STATE(3483), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1467), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [101983] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [191620] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 4, + ACTIONS(9083), 1, + sym_special_character, + STATE(3483), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1054), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1430), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102018] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [191658] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 4, + ACTIONS(9065), 1, + sym_special_character, + STATE(3439), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1471), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102053] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [191696] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1475), 23, + ACTIONS(1018), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1016), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102088] = 16, + [191730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(5363), 1, + ACTIONS(9065), 1, sym_special_character, - ACTIONS(5365), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, - anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5377), 1, - anon_sym_LF, - STATE(2736), 1, + STATE(3439), 1, aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5379), 3, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [102149] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [191768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(5363), 1, - sym_special_character, - ACTIONS(5365), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, - anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5381), 1, - anon_sym_LF, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5383), 3, + ACTIONS(982), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(980), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [102210] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1477), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1479), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102245] = 5, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [191802] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - sym_concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1337), 21, + ACTIONS(3732), 3, sym_file_descriptor, sym_variable_name, + aux_sym_statements_token1, + ACTIONS(3730), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [102284] = 16, + [191836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(5363), 1, - sym_special_character, - ACTIONS(5365), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, - anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5385), 1, - anon_sym_LF, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5387), 3, + ACTIONS(1050), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [102345] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [191870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(5363), 1, - sym_special_character, - ACTIONS(5365), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, - anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5389), 1, - anon_sym_LF, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5391), 3, + ACTIONS(994), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(992), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [102406] = 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [191904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 1, - anon_sym_DQUOTE, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(5363), 1, + ACTIONS(9086), 1, sym_special_character, - ACTIONS(5365), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5367), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5369), 1, - anon_sym_BQUOTE, - ACTIONS(5373), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5375), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5393), 1, - anon_sym_LF, - STATE(2736), 1, + STATE(3491), 1, aux_sym_for_statement_repeat1, - ACTIONS(5371), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5395), 3, + ACTIONS(1056), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1054), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [102467] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1420), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1422), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102502] = 3, - ACTIONS(57), 1, + [191942] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1483), 23, + ACTIONS(1042), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1040), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102537] = 3, - ACTIONS(57), 1, + [191976] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 4, + ACTIONS(990), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1487), 23, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1044), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102572] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192044] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, + ACTIONS(8775), 1, anon_sym_LT_LT_LT, - ACTIONS(5350), 1, + ACTIONS(9010), 1, sym_file_descriptor, - ACTIONS(5397), 1, - anon_sym_LF, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1872), 4, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8957), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + STATE(3759), 2, sym_file_redirect, - sym_heredoc_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5348), 8, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -108752,604 +228979,652 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5399), 10, + ACTIONS(8955), 10, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [102617] = 3, - ACTIONS(57), 1, + anon_sym_LT_LT_DASH, + [192088] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1491), 23, + ACTIONS(1050), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1048), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1012), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102652] = 3, - ACTIONS(57), 1, + [192156] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1394), 23, + ACTIONS(986), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(984), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 4, + sym_concat, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1016), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102687] = 3, - ACTIONS(57), 1, + [192224] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1385), 23, + ACTIONS(1034), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1032), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102722] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [192258] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1495), 23, + ACTIONS(1018), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1016), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102757] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192292] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 4, + ACTIONS(998), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(996), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1499), 23, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192326] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102792] = 3, - ACTIONS(57), 1, + [192360] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 4, + ACTIONS(9008), 1, + sym_special_character, + STATE(3483), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1402), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102827] = 5, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [192398] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 1, - sym_concat, - STATE(1822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1363), 4, + ACTIONS(9044), 1, + sym_special_character, + STATE(3491), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1365), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102866] = 3, - ACTIONS(57), 1, + [192436] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1441), 23, + ACTIONS(1046), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1044), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102901] = 3, - ACTIONS(57), 1, + [192470] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1445), 23, + ACTIONS(998), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(996), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102936] = 5, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [192504] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - sym_special_character, - STATE(1832), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5336), 4, + ACTIONS(1050), 4, + sym_file_descriptor, + sym_concat, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1048), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(5334), 21, - sym_file_descriptor, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [102975] = 16, + [192538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_LF, - ACTIONS(5408), 1, - anon_sym_DOLLAR, - ACTIONS(5411), 1, - sym_special_character, - ACTIONS(5414), 1, - anon_sym_DQUOTE, - ACTIONS(5417), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5420), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5423), 1, - anon_sym_BQUOTE, - ACTIONS(5429), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5432), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5426), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1865), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5401), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(5406), 3, + ACTIONS(1026), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1024), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [103036] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1447), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1449), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103071] = 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [192572] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1351), 1, - anon_sym_LT_LT_LT, - ACTIONS(1367), 1, - anon_sym_LF, - ACTIONS(5350), 1, + ACTIONS(9089), 1, + aux_sym_concatenation_token1, + ACTIONS(9092), 1, + sym_concat, + STATE(3510), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 2, sym_file_descriptor, - ACTIONS(1345), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1347), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1369), 2, + aux_sym_statements_token1, + ACTIONS(966), 21, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1371), 4, anon_sym_SEMI_SEMI, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1854), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5348), 8, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [103122] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [192612] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1503), 23, + ACTIONS(1006), 3, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + aux_sym_statements_token1, + ACTIONS(1004), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103157] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [192646] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1449), 23, + ACTIONS(968), 4, sym_file_descriptor, sym_concat, - sym_variable_name, - anon_sym_RPAREN, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(966), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103192] = 3, - ACTIONS(57), 1, + [192680] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 4, + ACTIONS(8838), 1, + aux_sym_statements_token1, + ACTIONS(8884), 1, + anon_sym_LT_LT_LT, + ACTIONS(9101), 1, + sym_file_descriptor, + ACTIONS(9098), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3513), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(9095), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1406), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8836), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103227] = 3, - ACTIONS(57), 1, + [192724] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 4, + ACTIONS(9008), 1, + sym_special_character, + STATE(3483), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1410), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103262] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [192762] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, - anon_sym_LF, - ACTIONS(5445), 1, + ACTIONS(3941), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, anon_sym_LT_LT_LT, - ACTIONS(5448), 1, + ACTIONS(8800), 1, sym_file_descriptor, - ACTIONS(5442), 2, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(1872), 4, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3939), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5439), 8, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -109358,802 +229633,1092 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5437), 10, + [192814] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9065), 1, + sym_special_character, + STATE(3439), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [103307] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1505), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1507), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103342] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [192852] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 4, + ACTIONS(3844), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, + sym_file_descriptor, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3842), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1511), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103377] = 3, - ACTIONS(57), 1, + [192904] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1515), 23, + ACTIONS(4396), 3, sym_file_descriptor, - sym_concat, sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103412] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1517), 4, + aux_sym_statements_token1, + ACTIONS(4394), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1519), 23, - sym_file_descriptor, - sym_concat, - sym_variable_name, - anon_sym_RPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_semgrep_metavar_eq, sym_semgrep_metavar_pluseq, - [103447] = 3, - ACTIONS(57), 1, + [192938] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1426), 23, - sym_file_descriptor, + ACTIONS(1050), 4, sym_concat, - sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1048), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103482] = 18, - ACTIONS(57), 1, + [192972] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(9104), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5453), 1, - anon_sym_esac, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3621), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1944), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, + STATE(2493), 1, + sym_c_expression_not_assignment, + STATE(5094), 1, + sym_c_expression, + STATE(5323), 1, + sym_c_variable_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [103546] = 4, - ACTIONS(57), 1, + [193033] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5459), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(3848), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103582] = 4, - ACTIONS(57), 1, + [193066] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5461), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8874), 1, + aux_sym_statements_token1, + ACTIONS(9128), 1, + sym_file_descriptor, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3689), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103618] = 18, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(8872), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_special_character, - ACTIONS(5463), 1, - anon_sym_esac, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3807), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1938), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [103682] = 4, - ACTIONS(57), 1, + [193109] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5465), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(9132), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9130), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [193142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3445), 2, sym_file_descriptor, - sym_variable_name, + aux_sym_statements_token1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 18, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103718] = 4, - ACTIONS(57), 1, + [193179] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5467), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(3445), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103754] = 4, - ACTIONS(57), 1, + [193214] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5469), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(8937), 1, + aux_sym_statements_token1, + ACTIONS(9140), 1, + sym_file_descriptor, + ACTIONS(8995), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(9137), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3526), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8935), 8, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + anon_sym_BQUOTE, + ACTIONS(9134), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [193257] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8957), 1, + aux_sym_statements_token1, + ACTIONS(9128), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3759), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8896), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8955), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103790] = 4, - ACTIONS(57), 1, + [193300] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5471), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8953), 1, + aux_sym_statements_token1, + ACTIONS(9128), 1, + sym_file_descriptor, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3751), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8951), 10, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103826] = 4, - ACTIONS(57), 1, + [193343] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(3441), 2, + sym_file_descriptor, + aux_sym_statements_token1, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [193378] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9143), 1, sym_special_character, + STATE(3533), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4079), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(4077), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103862] = 4, + [193415] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9149), 1, + anon_sym_RBRACE3, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5855), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [193472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1355), 2, + ACTIONS(9165), 2, sym_file_descriptor, - anon_sym_LF, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1357), 20, + aux_sym_statements_token1, + ACTIONS(9163), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [103898] = 4, - ACTIONS(57), 1, + [193505] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5475), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, + ACTIONS(9167), 1, sym_special_character, + STATE(3533), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(1054), 20, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_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_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103934] = 4, - ACTIONS(57), 1, + [193542] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5477), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(9172), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9170), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [193575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9176), 2, sym_file_descriptor, - sym_variable_name, + aux_sym_statements_token1, + ACTIONS(9174), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [103970] = 18, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [193608] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9157), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_special_character, - ACTIONS(5479), 1, - anon_sym_esac, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3614), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1977), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [104034] = 11, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9178), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5542), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [193665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1526), 1, - anon_sym_LF, - ACTIONS(1534), 1, - anon_sym_LT_LT_LT, - ACTIONS(5483), 1, + ACTIONS(9182), 2, sym_file_descriptor, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1528), 2, + aux_sym_statements_token1, + ACTIONS(9180), 23, anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(1530), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1532), 2, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1371), 3, - anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5481), 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [193698] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9184), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9186), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [104084] = 18, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [193731] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9188), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5762), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [193788] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(4027), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9190), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_special_character, - ACTIONS(5485), 1, - anon_sym_esac, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3783), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1933), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(5036), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [104148] = 4, - ACTIONS(57), 1, + [193849] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5487), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(9210), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9212), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [193882] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104184] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9214), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5350), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [193939] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9216), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5643), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [193996] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, + ACTIONS(9218), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5869), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194053] = 17, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9190), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104220] = 8, + STATE(2322), 1, + sym_c_expression_not_assignment, + STATE(5038), 1, + sym_c_expression, + STATE(5044), 1, + sym_c_variable_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [194114] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, - anon_sym_LF, - ACTIONS(5497), 1, - anon_sym_LT_LT_LT, - ACTIONS(5500), 1, + ACTIONS(3411), 1, + aux_sym_statements_token1, + ACTIONS(8868), 1, sym_file_descriptor, - ACTIONS(5494), 2, + ACTIONS(3409), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3417), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(1895), 4, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5491), 8, + ACTIONS(1818), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -110162,1003 +230727,2886 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5437), 9, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + [194161] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - [104264] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9220), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5627), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194218] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5503), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9222), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5546), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194275] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9224), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5840), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194332] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104300] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9226), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5381), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194389] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5505), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9228), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5481), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194446] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9230), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5578), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194503] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104336] = 18, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9232), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5669), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194560] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9234), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5745), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194617] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9157), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_special_character, - ACTIONS(5507), 1, - anon_sym_esac, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3690), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1945), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [104400] = 18, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9236), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5821), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194674] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9238), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5906), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194731] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9157), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5451), 1, - sym_word, - ACTIONS(5455), 1, - sym_special_character, - ACTIONS(5509), 1, - anon_sym_esac, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3728), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5457), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1935), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [104464] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9240), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5977), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194788] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9242), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5930), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194845] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9244), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5796), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194902] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9246), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5383), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [194959] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5511), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(9250), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9248), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [194992] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104500] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9252), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5486), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195049] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5513), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9254), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5551), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195106] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9256), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5653), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195163] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104536] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9258), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5754), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195220] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5515), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9260), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5853), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195277] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9262), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5942), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195334] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104572] = 11, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9264), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5359), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195391] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LT_LT_LT, - ACTIONS(1536), 1, - anon_sym_LF, - ACTIONS(5483), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9266), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5390), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9132), 3, sym_file_descriptor, - ACTIONS(1349), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1530), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1532), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1538), 2, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9130), 22, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(561), 3, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5481), 8, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [104622] = 4, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [195481] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9268), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5429), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195538] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104658] = 5, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9270), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5461), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195595] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5346), 1, - sym_special_character, - STATE(1832), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1335), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9272), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5488), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1337), 20, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195652] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9274), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5523), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195709] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104696] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9276), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5560), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195766] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5519), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9278), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5591), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195823] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9280), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5620), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195880] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104732] = 3, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9282), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5651), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195937] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5330), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9284), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5684), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(5328), 22, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [195994] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9286), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5714), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196051] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104766] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9288), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5743), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196108] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9290), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5770), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196165] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9292), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5802), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196222] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104802] = 5, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9294), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5829), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 2, + STATE(4199), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9298), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1530), 2, + aux_sym_statements_token1, + ACTIONS(9300), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 18, + ACTIONS(9296), 20, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [104840] = 4, - ACTIONS(57), 1, + [196316] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5523), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9303), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5857), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196373] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9305), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5885), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196430] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104876] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9307), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5916), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196487] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5525), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9309), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5944), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196544] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9311), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5476), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196601] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104912] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9313), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5459), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196658] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9315), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5972), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196715] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9317), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5482), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196772] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104948] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9319), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5665), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [196829] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(5529), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, - sym_special_character, + ACTIONS(9024), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [104984] = 4, - ACTIONS(57), 1, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5286), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [196890] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(5531), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9016), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, - sym_special_character, + ACTIONS(9024), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105020] = 4, - ACTIONS(57), 1, + STATE(2404), 1, + sym_c_expression_not_assignment, + STATE(5309), 1, + sym_c_expression, + STATE(5318), 1, + sym_c_variable_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [196951] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9321), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5900), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197008] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9323), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5352), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197065] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105056] = 3, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9325), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5412), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197122] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9327), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5467), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(5334), 22, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197179] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_RPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9329), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5508), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197236] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105090] = 8, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9331), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5534), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197293] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(5397), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9333), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5552), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197350] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8894), 1, + aux_sym_statements_token1, + ACTIONS(9335), 1, sym_file_descriptor, - ACTIONS(1550), 2, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(1895), 4, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3526), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(5399), 9, + ACTIONS(8892), 8, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_BQUOTE, - [105134] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5539), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, - sym_variable_name, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + [197393] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9337), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5608), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197450] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9339), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5648), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197507] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9341), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5672), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197564] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105170] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5346), 1, - sym_special_character, - STATE(1832), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1363), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1365), 20, - sym_file_descriptor, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9343), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5698), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197621] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105208] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5541), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9345), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5724), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197678] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105244] = 4, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9347), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(6093), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197735] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9349), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5787), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(1353), 21, - sym_file_descriptor, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197792] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(9351), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5815), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197849] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105280] = 5, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9353), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5844), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [197906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, + ACTIONS(9357), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 22, + aux_sym_statements_token1, + ACTIONS(9355), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym_special_character, - [105318] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5547), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105354] = 4, - ACTIONS(57), 1, + [197939] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(5549), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(9104), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, - sym_special_character, + ACTIONS(9112), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105390] = 8, + STATE(2493), 1, + sym_c_expression_not_assignment, + STATE(5074), 1, + sym_c_expression, + STATE(5323), 1, + sym_c_variable_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [198000] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, - anon_sym_LT_LT_LT, - ACTIONS(5397), 1, - anon_sym_LF, - ACTIONS(5483), 1, + ACTIONS(3431), 1, + aux_sym_statements_token1, + ACTIONS(8868), 1, sym_file_descriptor, - ACTIONS(1349), 2, + ACTIONS(3413), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3417), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(1927), 4, + ACTIONS(3427), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3304), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5481), 8, + ACTIONS(3429), 4, + anon_sym_SEMI_SEMI, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8734), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111167,697 +233615,338 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(5399), 9, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [105434] = 4, + [198047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1355), 2, + ACTIONS(9250), 3, sym_file_descriptor, - anon_sym_LF, - STATE(1925), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1357), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9248), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [105470] = 8, + anon_sym_BQUOTE, + [198080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5435), 1, - anon_sym_LF, - ACTIONS(5554), 1, - anon_sym_LT_LT_LT, - ACTIONS(5557), 1, + ACTIONS(9361), 2, sym_file_descriptor, - ACTIONS(5442), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1927), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5551), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(5437), 9, + aux_sym_statements_token1, + ACTIONS(9359), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [105514] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5560), 1, - anon_sym_RPAREN, - ACTIONS(1339), 4, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1353), 21, - 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105550] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(485), 1, - anon_sym_DOLLAR, - ACTIONS(5564), 1, - anon_sym_LPAREN, - ACTIONS(5566), 1, - sym_special_character, - ACTIONS(5568), 1, - anon_sym_DQUOTE, - ACTIONS(5570), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5572), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5574), 1, - anon_sym_BQUOTE, - ACTIONS(5578), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5580), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5582), 1, - sym_empty_value, - STATE(362), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(425), 2, - sym_concatenation, - sym_array, - ACTIONS(5562), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(310), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105609] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(5586), 1, - anon_sym_LPAREN, - ACTIONS(5588), 1, - sym_special_character, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5596), 1, - anon_sym_BQUOTE, - ACTIONS(5600), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5602), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5604), 1, - sym_empty_value, - STATE(414), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5598), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(654), 2, - sym_concatenation, - sym_array, - ACTIONS(5584), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(350), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105668] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(5586), 1, - anon_sym_LPAREN, - ACTIONS(5588), 1, - sym_special_character, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5592), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5594), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5596), 1, - anon_sym_BQUOTE, - ACTIONS(5600), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5602), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5608), 1, - sym_empty_value, - STATE(431), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5598), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(655), 2, - sym_concatenation, - sym_array, - ACTIONS(5606), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(363), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105727] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [198113] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1335), 4, + ACTIONS(9363), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9365), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1337), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [105760] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3728), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105819] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5612), 1, - anon_sym_LPAREN, - ACTIONS(5614), 1, - anon_sym_DOLLAR, - ACTIONS(5616), 1, - sym_special_character, - ACTIONS(5618), 1, - anon_sym_DQUOTE, - ACTIONS(5620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, - anon_sym_BQUOTE, - ACTIONS(5628), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5630), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5632), 1, - sym_empty_value, - STATE(819), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(948), 2, - sym_concatenation, - sym_array, - ACTIONS(5610), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(658), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105878] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3788), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [105937] = 5, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [198146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, + ACTIONS(9369), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 21, + aux_sym_statements_token1, + ACTIONS(9367), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [198179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9357), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9355), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym_special_character, - [105974] = 5, + anon_sym_BQUOTE, + [198212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, - sym_concat, - STATE(1968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, + ACTIONS(9210), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 21, + aux_sym_statements_token1, + ACTIONS(9212), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [198245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [106011] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3765), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106070] = 5, + [198278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5328), 2, + ACTIONS(1745), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 21, + aux_sym_statements_token1, + ACTIONS(1743), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [198311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9165), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9163), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [106107] = 11, + anon_sym_BQUOTE, + [198344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1568), 1, - ts_builtin_sym_end, - ACTIONS(1570), 1, - anon_sym_LF, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(5638), 1, + STATE(3634), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9373), 2, sym_file_descriptor, - ACTIONS(1574), 2, + aux_sym_statements_token1, + ACTIONS(9375), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1576), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1578), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1572), 3, + ACTIONS(9371), 20, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5636), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - [106156] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(5644), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - sym_special_character, - ACTIONS(5648), 1, - anon_sym_DQUOTE, - ACTIONS(5650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5654), 1, - anon_sym_BQUOTE, - ACTIONS(5658), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5660), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5662), 1, - sym_empty_value, - STATE(466), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(659), 2, - sym_concatenation, - sym_array, - ACTIONS(5640), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(373), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106215] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5642), 1, - anon_sym_LPAREN, - ACTIONS(5644), 1, - anon_sym_DOLLAR, - ACTIONS(5646), 1, - sym_special_character, - ACTIONS(5648), 1, - anon_sym_DQUOTE, - ACTIONS(5650), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5652), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5654), 1, - anon_sym_BQUOTE, - ACTIONS(5658), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5660), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5666), 1, - sym_empty_value, - STATE(468), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(660), 2, - sym_concatenation, - sym_array, - ACTIONS(5664), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(376), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106274] = 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [198381] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, + ACTIONS(1818), 1, anon_sym_BQUOTE, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1666), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(3954), 1, + aux_sym_statements_token1, + ACTIONS(9335), 1, sym_file_descriptor, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1670), 2, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1672), 2, - anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, anon_sym_PIPE_PIPE, - ACTIONS(1668), 3, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3952), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, + STATE(3604), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -111866,3000 +233955,2185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [106323] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3690), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106382] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3611), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106441] = 10, + [198430] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(621), 1, - sym_word, - ACTIONS(5668), 1, - aux_sym_for_statement_token1, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string, - ACTIONS(5676), 1, - anon_sym_POUND, - STATE(2772), 1, - sym_orig_simple_variable_name, - STATE(2783), 1, - sym_string, - ACTIONS(5670), 8, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(623), 10, - anon_sym_RPAREN, - sym_special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [106488] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(485), 1, - anon_sym_DOLLAR, - ACTIONS(5564), 1, - anon_sym_LPAREN, - ACTIONS(5566), 1, - sym_special_character, - ACTIONS(5568), 1, - anon_sym_DQUOTE, - ACTIONS(5570), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5572), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5574), 1, - anon_sym_BQUOTE, - ACTIONS(5578), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5580), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5680), 1, - sym_empty_value, - STATE(359), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(422), 2, - sym_concatenation, - sym_array, - ACTIONS(5678), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(309), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106547] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(569), 1, - anon_sym_DOLLAR, - ACTIONS(5684), 1, - anon_sym_LPAREN, - ACTIONS(5686), 1, - sym_special_character, - ACTIONS(5688), 1, - anon_sym_DQUOTE, - ACTIONS(5690), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5692), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5694), 1, - anon_sym_BQUOTE, - ACTIONS(5698), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5700), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5702), 1, - sym_empty_value, - STATE(435), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - sym_array, - ACTIONS(5682), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(368), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106606] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5706), 1, - anon_sym_LPAREN, - ACTIONS(5708), 1, - anon_sym_DOLLAR, - ACTIONS(5710), 1, - sym_special_character, - ACTIONS(5712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, - anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5724), 1, - sym_empty_value, - STATE(1905), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1932), 2, - sym_concatenation, - sym_array, - ACTIONS(5704), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1847), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106665] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5612), 1, - anon_sym_LPAREN, - ACTIONS(5614), 1, - anon_sym_DOLLAR, - ACTIONS(5616), 1, - sym_special_character, - ACTIONS(5618), 1, - anon_sym_DQUOTE, - ACTIONS(5620), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, - anon_sym_BQUOTE, - ACTIONS(5628), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5630), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5728), 1, - sym_empty_value, - STATE(837), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(979), 2, - sym_concatenation, - sym_array, - ACTIONS(5726), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106724] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5706), 1, - anon_sym_LPAREN, - ACTIONS(5708), 1, - anon_sym_DOLLAR, - ACTIONS(5710), 1, + ACTIONS(9377), 1, sym_special_character, - ACTIONS(5712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, - anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5732), 1, - sym_empty_value, - STATE(1919), 1, + STATE(3644), 1, aux_sym_for_statement_repeat1, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1962), 2, - sym_concatenation, - sym_array, - ACTIONS(5730), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1861), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [106783] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(5638), 1, + ACTIONS(1741), 2, sym_file_descriptor, - ACTIONS(1578), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5397), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1961), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5399), 7, + aux_sym_statements_token1, + ACTIONS(1739), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5636), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [106826] = 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [198467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1371), 1, - anon_sym_RPAREN, - ACTIONS(1544), 1, - anon_sym_LF, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(5537), 1, + ACTIONS(9172), 3, sym_file_descriptor, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1528), 3, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9170), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [106875] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [198500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5334), 2, + ACTIONS(9176), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9174), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [106912] = 11, + anon_sym_BQUOTE, + [198533] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, - ts_builtin_sym_end, - ACTIONS(1580), 1, - anon_sym_LT_LT_LT, - ACTIONS(1601), 1, - anon_sym_LF, - ACTIONS(5638), 1, + ACTIONS(9377), 1, + sym_special_character, + STATE(3644), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1745), 2, sym_file_descriptor, - ACTIONS(1574), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1576), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1578), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1603), 3, + aux_sym_statements_token1, + ACTIONS(1743), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5636), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [106961] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [198570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1574), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1373), 3, + ACTIONS(968), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 16, + sym_concat, + aux_sym_statements_token1, + ACTIONS(966), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [106998] = 5, + aux_sym_concatenation_token1, + [198603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, - sym_special_character, - STATE(1963), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5334), 2, + ACTIONS(998), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 21, + sym_concat, + aux_sym_statements_token1, + ACTIONS(996), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [107035] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LPAREN, - ACTIONS(5740), 1, - anon_sym_DOLLAR, - ACTIONS(5742), 1, - sym_special_character, - ACTIONS(5744), 1, - anon_sym_DQUOTE, - ACTIONS(5746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5748), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5750), 1, - anon_sym_BQUOTE, - ACTIONS(5754), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5756), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5758), 1, - sym_empty_value, - STATE(522), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(677), 2, - sym_concatenation, - sym_array, - ACTIONS(5736), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(418), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107094] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5738), 1, - anon_sym_LPAREN, - ACTIONS(5740), 1, - anon_sym_DOLLAR, - ACTIONS(5742), 1, - sym_special_character, - ACTIONS(5744), 1, - anon_sym_DQUOTE, - ACTIONS(5746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5748), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5750), 1, - anon_sym_BQUOTE, - ACTIONS(5754), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5756), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5762), 1, - sym_empty_value, - STATE(523), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(678), 2, - sym_concatenation, - sym_array, - ACTIONS(5760), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(419), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107153] = 11, + aux_sym_concatenation_token1, + [198636] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, - anon_sym_BQUOTE, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1682), 1, - anon_sym_LF, - ACTIONS(5537), 1, + STATE(3634), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9298), 2, sym_file_descriptor, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1670), 2, + aux_sym_statements_token1, + ACTIONS(9379), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1672), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1684), 3, + ACTIONS(9296), 20, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - [107202] = 8, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [198673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5770), 1, - anon_sym_LT_LT_LT, - ACTIONS(5773), 1, + ACTIONS(1002), 3, sym_file_descriptor, - ACTIONS(5435), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5767), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1961), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5437), 7, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(5764), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [107245] = 3, - ACTIONS(57), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [198706] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1363), 4, + ACTIONS(994), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(992), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1365), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [107278] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [198739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5776), 1, - sym_special_character, - STATE(1963), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, + ACTIONS(3836), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 21, + aux_sym_statements_token1, + ACTIONS(3834), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [107315] = 5, + [198772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 2, + ACTIONS(990), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 17, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [107352] = 4, + aux_sym_concatenation_token1, + [198805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1355), 3, + ACTIONS(9182), 3, sym_file_descriptor, ts_builtin_sym_end, - anon_sym_LF, - STATE(1952), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1357), 18, + aux_sym_statements_token1, + ACTIONS(9180), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [107387] = 11, + anon_sym_BQUOTE, + [198838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, - anon_sym_RPAREN, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1599), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(3848), 2, sym_file_descriptor, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1538), 3, + aux_sym_statements_token1, + ACTIONS(3846), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, - [107436] = 4, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [198871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 1, + ACTIONS(986), 3, + sym_file_descriptor, sym_concat, - STATE(2033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 23, - anon_sym_LF, + aux_sym_statements_token1, + ACTIONS(984), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_special_character, - sym_test_operator, - [107471] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [198904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5781), 1, - sym_concat, - STATE(1968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, + ACTIONS(1006), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 21, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1004), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [107508] = 16, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [198937] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(5786), 1, + ACTIONS(9104), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9108), 1, anon_sym_LPAREN, - ACTIONS(5788), 1, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(5790), 1, - sym_special_character, - ACTIONS(5792), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(5794), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5796), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5798), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(5802), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5804), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - ACTIONS(5806), 1, - sym_empty_value, - STATE(833), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5800), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(968), 2, - sym_concatenation, - sym_array, - ACTIONS(5784), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(667), 7, + STATE(2493), 1, + sym_c_expression_not_assignment, + STATE(5127), 1, + sym_c_expression, + STATE(5323), 1, + sym_c_variable_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107567] = 5, + [198998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(9382), 1, sym_special_character, - STATE(1963), 1, + STATE(3644), 1, aux_sym_for_statement_repeat1, - ACTIONS(5328), 2, + ACTIONS(1056), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 21, + aux_sym_statements_token1, + ACTIONS(1054), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [199035] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9385), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9387), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [107604] = 3, - ACTIONS(57), 1, + anon_sym_BQUOTE, + [199068] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1582), 4, + ACTIONS(9361), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9359), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1584), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [107637] = 5, + [199101] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1373), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1670), 2, + STATE(4199), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9300), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1375), 17, + ACTIONS(9298), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9296), 19, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [107674] = 5, + [199138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1937), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5808), 2, + ACTIONS(9377), 1, + sym_special_character, + STATE(3644), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 21, + aux_sym_statements_token1, + ACTIONS(3834), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [107711] = 5, + [199175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(9377), 1, sym_special_character, - STATE(1963), 1, + STATE(3644), 1, aux_sym_for_statement_repeat1, - ACTIONS(5808), 2, + ACTIONS(3848), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 21, + aux_sym_statements_token1, + ACTIONS(3846), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [199212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1741), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [107748] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5786), 1, - anon_sym_LPAREN, - ACTIONS(5788), 1, - anon_sym_DOLLAR, - ACTIONS(5790), 1, - sym_special_character, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - ACTIONS(5794), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5796), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5798), 1, anon_sym_BQUOTE, - ACTIONS(5802), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5804), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5814), 1, - sym_empty_value, - STATE(840), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5800), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(982), 2, - sym_concatenation, - sym_array, - ACTIONS(5812), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(601), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107807] = 3, - ACTIONS(57), 1, + [199245] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1586), 4, + ACTIONS(1010), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1008), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_DOLLAR, - ACTIONS(1588), 21, - sym_file_descriptor, - sym_variable_name, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - sym_semgrep_metavar_eq, - sym_semgrep_metavar_pluseq, - [107840] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3177), 1, - aux_sym_for_statement_repeat1, - STATE(3397), 1, - sym_concatenation, - STATE(3807), 1, - sym_last_case_item, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5457), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3182), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107899] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [199278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 1, - sym_concat, - STATE(1983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, + ACTIONS(1018), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1359), 21, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1016), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym_special_character, - anon_sym_BQUOTE, - [107936] = 16, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [199311] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(405), 1, - anon_sym_DOLLAR, - ACTIONS(5820), 1, + ACTIONS(9104), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9108), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, - sym_special_character, - ACTIONS(5824), 1, - anon_sym_DQUOTE, - ACTIONS(5826), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5828), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 1, - anon_sym_BQUOTE, - ACTIONS(5834), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5836), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5838), 1, - sym_empty_value, - STATE(307), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5832), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(348), 2, - sym_concatenation, - sym_array, - ACTIONS(5818), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(259), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [107995] = 16, - ACTIONS(57), 1, - sym_comment, - ACTIONS(405), 1, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(5820), 1, - anon_sym_LPAREN, - ACTIONS(5822), 1, - sym_special_character, - ACTIONS(5824), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(5826), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5828), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(5834), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5836), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - ACTIONS(5842), 1, - sym_empty_value, - STATE(308), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5832), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(382), 2, - sym_concatenation, - sym_array, - ACTIONS(5840), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(263), 7, + STATE(2493), 1, + sym_c_expression_not_assignment, + STATE(5323), 1, + sym_c_variable_assignment, + STATE(5337), 1, + sym_c_expression, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108054] = 16, - ACTIONS(57), 1, + [199372] = 17, + ACTIONS(71), 1, sym_comment, - ACTIONS(569), 1, - anon_sym_DOLLAR, - ACTIONS(5684), 1, + ACTIONS(9104), 1, + aux_sym_c_expression_not_assignment_token1, + ACTIONS(9108), 1, anon_sym_LPAREN, - ACTIONS(5686), 1, - sym_special_character, - ACTIONS(5688), 1, - anon_sym_DQUOTE, - ACTIONS(5690), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5692), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5694), 1, - anon_sym_BQUOTE, - ACTIONS(5698), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5700), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5846), 1, - sym_empty_value, - STATE(384), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(621), 2, - sym_concatenation, - sym_array, - ACTIONS(5844), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(358), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108113] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5851), 1, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(5854), 1, - sym_special_character, - ACTIONS(5857), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(5860), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5863), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(5872), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5875), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - STATE(3214), 1, - aux_sym_for_statement_repeat1, - STATE(3376), 1, - sym_concatenation, - ACTIONS(5869), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(5848), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3204), 7, + STATE(2493), 1, + sym_c_expression_not_assignment, + STATE(5307), 1, + sym_c_expression, + STATE(5323), 1, + sym_c_variable_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108169] = 5, + [199433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5878), 1, - sym_concat, - STATE(2024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, + ACTIONS(1745), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [108205] = 3, + [199466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 3, + ACTIONS(982), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1493), 21, + aux_sym_statements_token1, + ACTIONS(980), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108237] = 3, + aux_sym_concatenation_token1, + [199499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 3, + ACTIONS(1034), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1497), 21, + aux_sym_statements_token1, + ACTIONS(1032), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108269] = 3, + aux_sym_concatenation_token1, + [199532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 3, + ACTIONS(1030), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1501), 21, + aux_sym_statements_token1, + ACTIONS(1028), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108301] = 5, + aux_sym_concatenation_token1, + [199565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5880), 1, - sym_concat, - STATE(1968), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, + ACTIONS(9363), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1377), 20, + aux_sym_statements_token1, + ACTIONS(9365), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [108337] = 3, + [199598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 3, + ACTIONS(1014), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1505), 21, + aux_sym_statements_token1, + ACTIONS(1012), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108369] = 3, + aux_sym_concatenation_token1, + [199631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 3, + ACTIONS(1042), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1509), 21, + aux_sym_statements_token1, + ACTIONS(1040), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [199664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108401] = 3, + aux_sym_concatenation_token1, + [199697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 3, + ACTIONS(1038), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1513), 21, + aux_sym_statements_token1, + ACTIONS(1036), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [199730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9385), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9387), 23, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [108433] = 3, + [199763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(1026), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1517), 21, + aux_sym_statements_token1, + ACTIONS(1024), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108465] = 3, + aux_sym_concatenation_token1, + [199796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 3, + ACTIONS(1050), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1392), 21, + aux_sym_statements_token1, + ACTIONS(1048), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [199829] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1044), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108497] = 3, + aux_sym_concatenation_token1, + [199862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 3, + ACTIONS(1050), 3, sym_file_descriptor, sym_concat, - anon_sym_LF, - ACTIONS(1424), 21, + aux_sym_statements_token1, + ACTIONS(1048), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [199895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9367), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [108529] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5884), 1, - anon_sym_RPAREN, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108585] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5902), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2008), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108641] = 5, + [199928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 1, - sym_special_character, - STATE(1996), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, + ACTIONS(9184), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1432), 20, + aux_sym_statements_token1, + ACTIONS(9186), 23, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [108677] = 15, - ACTIONS(57), 1, + [199961] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9389), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5587), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [200018] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, + ACTIONS(9157), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5907), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2002), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108733] = 5, - ACTIONS(57), 1, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9391), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5813), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [200075] = 11, + ACTIONS(3), 1, sym_comment, - ACTIONS(5909), 1, - sym_concat, - STATE(1998), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 5, - anon_sym_EQ, + ACTIONS(3429), 1, + anon_sym_BQUOTE, + ACTIONS(4069), 1, + aux_sym_statements_token1, + ACTIONS(9335), 1, + sym_file_descriptor, + ACTIONS(3415), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4067), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [108769] = 5, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [200124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, - sym_special_character, - STATE(1996), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5808), 2, + ACTIONS(3836), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [108805] = 3, + [200157] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_BANG2, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9161), 1, + sym_variable_name, + ACTIONS(9393), 1, + anon_sym_RBRACE3, + STATE(2773), 1, + sym_subscript, + STATE(4871), 1, + aux_sym_expansion_body_repeat1, + STATE(4916), 1, + sym_command_substitution, + STATE(5581), 1, + sym_expansion_body, + ACTIONS(9153), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + ACTIONS(9145), 5, + aux_sym_for_statement_token1, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym__, + ACTIONS(9147), 5, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT, + sym_semgrep_metavariable, + [200214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, + ACTIONS(9395), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9397), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108837] = 3, + anon_sym_BQUOTE, + [200246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 3, + ACTIONS(9399), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9401), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [108869] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5914), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108925] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5916), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1994), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [108981] = 3, + [200278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 3, + ACTIONS(9405), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 21, + aux_sym_statements_token1, + ACTIONS(9403), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109013] = 3, + [200310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 3, + ACTIONS(9407), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9409), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109045] = 5, + anon_sym_BQUOTE, + [200342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 1, - sym_concat, - STATE(1983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5334), 2, + ACTIONS(9413), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 20, + aux_sym_statements_token1, + ACTIONS(9411), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [109081] = 10, + [200374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1640), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(9165), 3, sym_file_descriptor, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1642), 3, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9163), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [109127] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5918), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109183] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5920), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109239] = 10, + [200406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1644), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(9184), 2, sym_file_descriptor, - ACTIONS(1546), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1646), 3, + aux_sym_statements_token1, + ACTIONS(9186), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [109285] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [200438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 3, + ACTIONS(9132), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9130), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109317] = 5, + anon_sym_BQUOTE, + [200470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, - sym_special_character, - STATE(1996), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5334), 2, + ACTIONS(4570), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4568), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [109353] = 3, + [200502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 3, + ACTIONS(4570), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(4568), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109385] = 5, + anon_sym_BQUOTE, + [200534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, - sym_special_character, - STATE(1996), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5328), 2, + ACTIONS(9415), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9417), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [109421] = 4, - ACTIONS(3), 1, + [200566] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5922), 1, - sym_concat, - STATE(2015), 1, + STATE(3743), 1, aux_sym_concatenation_repeat1, - ACTIONS(1383), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [109455] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, + ACTIONS(9419), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(4077), 6, anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5925), 1, + sym_word, + ACTIONS(4079), 15, + sym_test_operator, + sym_brace_start, anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - STATE(2045), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109511] = 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [200602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, + ACTIONS(9363), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 21, + aux_sym_statements_token1, + ACTIONS(9365), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [200634] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9421), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9423), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109543] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5927), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2038), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109599] = 4, + [200666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5931), 1, - sym_special_character, - STATE(2025), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5929), 22, - anon_sym_LF, + ACTIONS(9184), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9186), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [109633] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5933), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2041), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109689] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5935), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2009), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109745] = 5, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [200698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 1, - sym_concat, - STATE(1983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5808), 2, + ACTIONS(1741), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1739), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [109781] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5937), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109837] = 5, + [200730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, - sym_concat, - STATE(2024), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 2, + ACTIONS(3836), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(1383), 20, + aux_sym_statements_token1, + ACTIONS(3834), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [109873] = 4, + [200762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5942), 1, - sym_special_character, - STATE(2025), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 22, - anon_sym_LF, + ACTIONS(3836), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3834), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [109907] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5945), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [109963] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [200794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 3, + ACTIONS(9413), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9411), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [109995] = 3, + anon_sym_BQUOTE, + [200826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 3, + ACTIONS(3848), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 21, + aux_sym_statements_token1, + ACTIONS(3846), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110027] = 3, + [200858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 3, + ACTIONS(9427), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 21, + aux_sym_statements_token1, + ACTIONS(9425), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [200890] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(9069), 1, + sym_file_descriptor, + ACTIONS(3459), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(3463), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(1818), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114868,56 +236142,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110059] = 3, + [200936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 3, + ACTIONS(1745), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(1743), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110091] = 3, + anon_sym_BQUOTE, + [200968] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 3, + ACTIONS(3844), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(3415), 2, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3842), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -114926,437 +236207,389 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110123] = 5, + [201014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5816), 1, - sym_concat, - STATE(1983), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5328), 2, + ACTIONS(3848), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(3846), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [110159] = 4, + [201046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5947), 1, - sym_concat, - STATE(2015), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 22, - anon_sym_LF, + ACTIONS(9429), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9431), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [110193] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5949), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2026), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110249] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [201078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 3, + ACTIONS(9395), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 21, + aux_sym_statements_token1, + ACTIONS(9397), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [201110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9433), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9435), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110281] = 3, + anon_sym_BQUOTE, + [201142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(9250), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 21, + aux_sym_statements_token1, + ACTIONS(9248), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [201174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9437), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9439), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110313] = 3, + anon_sym_BQUOTE, + [201206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 3, + ACTIONS(9443), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 21, + aux_sym_statements_token1, + ACTIONS(9441), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110345] = 15, - ACTIONS(57), 1, + [201238] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, + ACTIONS(8864), 1, + aux_sym_concatenation_token1, + ACTIONS(8866), 1, + sym_concat, + STATE(3303), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9447), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(9445), 18, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(5888), 1, sym_special_character, - ACTIONS(5890), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5951), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110401] = 4, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [201276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5779), 1, - sym_concat, - STATE(2033), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5929), 22, - anon_sym_LF, + ACTIONS(9172), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9170), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [110435] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [201308] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 3, + STATE(4199), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9298), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 21, + aux_sym_statements_token1, + ACTIONS(9300), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9296), 19, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110467] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5953), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110523] = 15, - ACTIONS(57), 1, + [201344] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5404), 1, - anon_sym_RPAREN, - ACTIONS(5958), 1, - anon_sym_DOLLAR, - ACTIONS(5961), 1, + STATE(3791), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9449), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(978), 14, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym_special_character, - ACTIONS(5964), 1, - anon_sym_DQUOTE, - ACTIONS(5967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5970), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5973), 1, - anon_sym_BQUOTE, - ACTIONS(5979), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5982), 1, - sym_semgrep_named_ellipsis, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5976), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5955), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110579] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [201380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(1741), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 21, + aux_sym_statements_token1, + ACTIONS(1739), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [110611] = 10, + [201412] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1552), 1, - anon_sym_LT_LT_LT, - ACTIONS(1632), 1, - anon_sym_LF, - ACTIONS(5537), 1, + ACTIONS(3966), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - ACTIONS(1546), 2, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1548), 2, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - ACTIONS(1550), 2, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1634), 3, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3964), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1917), 4, + STATE(3471), 3, sym_file_redirect, sym_heredoc_redirect, - sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(5535), 8, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -115365,404 +236598,326 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [110657] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5985), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2042), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110713] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, - anon_sym_DOLLAR, - ACTIONS(5888), 1, - sym_special_character, - ACTIONS(5890), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, - anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5987), 1, - anon_sym_RPAREN, - STATE(2761), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2023), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(5882), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2751), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [110769] = 5, + [201458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - sym_concat, - STATE(2145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, + ACTIONS(9405), 3, sym_file_descriptor, ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1359), 19, + aux_sym_statements_token1, + ACTIONS(9403), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym_special_character, - [110805] = 5, + anon_sym_BQUOTE, + [201490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5808), 2, + ACTIONS(9443), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 20, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9441), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110841] = 3, + anon_sym_BQUOTE, + [201522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 3, + ACTIONS(9451), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9453), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110873] = 5, + anon_sym_BQUOTE, + [201554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5328), 2, + ACTIONS(9132), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 20, + aux_sym_statements_token1, + ACTIONS(9130), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [110909] = 5, + [201586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5545), 1, - sym_concat, - STATE(1987), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5334), 2, + ACTIONS(9457), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 20, + aux_sym_statements_token1, + ACTIONS(9455), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [110945] = 3, + [201618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 3, + ACTIONS(1745), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 21, + aux_sym_statements_token1, + ACTIONS(1743), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [110977] = 3, + [201650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 3, + ACTIONS(9357), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 21, + aux_sym_statements_token1, + ACTIONS(9355), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [111009] = 3, + [201682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 3, + ACTIONS(9176), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 21, + aux_sym_statements_token1, + ACTIONS(9174), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [111041] = 3, + [201714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 3, + STATE(3742), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9459), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9373), 3, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9371), 18, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [111073] = 3, + [201750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 3, + ACTIONS(9385), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 21, + aux_sym_statements_token1, + ACTIONS(9387), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [111105] = 3, + [201782] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 3, + ACTIONS(3941), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + ACTIONS(3415), 2, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3939), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -115771,3373 +236926,3991 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [111137] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5993), 1, - sym_concat, - STATE(2235), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111172] = 3, + [201828] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 1, - sym_concat, - ACTIONS(1400), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + ACTIONS(3429), 1, + anon_sym_RPAREN, + ACTIONS(3487), 1, + ts_builtin_sym_end, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111203] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1406), 1, - sym_concat, - ACTIONS(1404), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1410), 1, - sym_concat, - ACTIONS(1408), 22, - anon_sym_LF, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3489), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111265] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(175), 1, - anon_sym_DOLLAR, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(185), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 1, - anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(193), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1707), 1, - sym_special_character, - ACTIONS(5997), 1, - sym_regex, - STATE(576), 1, - aux_sym_for_statement_repeat1, - STATE(713), 1, - sym_concatenation, - ACTIONS(189), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5995), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(504), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [111320] = 3, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [201876] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - sym_concat, - ACTIONS(1412), 22, - anon_sym_LF, + ACTIONS(9361), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9359), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5999), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6001), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [111382] = 3, + [201908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6003), 2, + ACTIONS(9165), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6005), 21, + aux_sym_statements_token1, + ACTIONS(9163), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [111413] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(2071), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3365), 1, - aux_sym_for_statement_repeat1, - STATE(3748), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6007), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3361), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [111468] = 3, + [201940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - sym_concat, - ACTIONS(1416), 22, - anon_sym_LF, + ACTIONS(9463), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9461), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111499] = 3, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [201972] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 1, - sym_concat, - ACTIONS(1420), 22, - anon_sym_LF, + ACTIONS(3491), 1, + aux_sym_statements_token1, + ACTIONS(9069), 1, + sym_file_descriptor, + ACTIONS(3463), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3465), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3489), 2, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(8828), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3429), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 8, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111530] = 3, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [202018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 1, - sym_concat, - ACTIONS(1424), 22, - anon_sym_LF, + ACTIONS(9369), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9367), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111561] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4912), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3411), 1, - aux_sym_for_statement_repeat1, - STATE(3695), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6027), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3373), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [111616] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [202050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 1, - sym_concat, - ACTIONS(1428), 22, - anon_sym_LF, + ACTIONS(9467), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9465), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111647] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, - sym_concat, - ACTIONS(1439), 22, - anon_sym_LF, + ACTIONS(9399), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9401), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111678] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 1, - sym_concat, - ACTIONS(1443), 22, - anon_sym_LF, + ACTIONS(9429), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9431), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111709] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 1, - sym_concat, - ACTIONS(1447), 22, - anon_sym_LF, + ACTIONS(9433), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9435), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111740] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 1, - sym_concat, - ACTIONS(1451), 22, - anon_sym_LF, + ACTIONS(9437), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9439), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111771] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(321), 1, - anon_sym_DOLLAR, - ACTIONS(325), 1, - anon_sym_DQUOTE, - ACTIONS(329), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(331), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(333), 1, - anon_sym_BQUOTE, - ACTIONS(337), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(339), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1729), 1, - sym_special_character, - ACTIONS(6031), 1, - sym_regex, - STATE(812), 1, - aux_sym_for_statement_repeat1, - STATE(999), 1, - sym_concatenation, - ACTIONS(335), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6029), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(651), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [111826] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 1, - sym_concat, - ACTIONS(1455), 22, - anon_sym_LF, + ACTIONS(9210), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9212), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111857] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [202242] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, - sym_concat, - ACTIONS(1459), 22, - anon_sym_LF, + ACTIONS(1816), 1, + ts_builtin_sym_end, + ACTIONS(1818), 1, + anon_sym_RPAREN, + ACTIONS(3461), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3459), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111888] = 3, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [202290] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 1, - sym_concat, - ACTIONS(1540), 22, - anon_sym_LF, + ACTIONS(9471), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9469), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111919] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 1, - sym_concat, - ACTIONS(1465), 22, - anon_sym_LF, + ACTIONS(9475), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9473), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111950] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 1, - sym_concat, - ACTIONS(1469), 22, - anon_sym_LF, + ACTIONS(9407), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9409), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [111981] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 1, - sym_concat, - ACTIONS(1473), 22, - anon_sym_LF, + ACTIONS(9477), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9479), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112012] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [202418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 1, - sym_concat, - ACTIONS(1477), 22, - anon_sym_LF, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4568), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112043] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 1, - sym_concat, - ACTIONS(1481), 22, - anon_sym_LF, + STATE(3742), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9481), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9298), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9296), 18, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112074] = 15, - ACTIONS(57), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202486] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2135), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9419), 1, + aux_sym_concatenation_token1, + ACTIONS(9484), 1, + sym_concat, + STATE(3747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 6, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(962), 15, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3364), 1, - aux_sym_for_statement_repeat1, - STATE(3723), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6033), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3363), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112129] = 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [202524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 1, - sym_concat, - ACTIONS(1485), 22, - anon_sym_LF, + ACTIONS(9182), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9180), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112160] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 1, - sym_concat, - ACTIONS(1489), 22, - anon_sym_LF, + ACTIONS(9184), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9186), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112191] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 1, - sym_concat, - ACTIONS(1493), 22, - anon_sym_LF, + ACTIONS(9363), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9365), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [202620] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3747), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9486), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(968), 15, sym_test_operator, - [112222] = 3, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [202656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 1, - sym_concat, - ACTIONS(1497), 22, - anon_sym_LF, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4568), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112253] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 1, - sym_concat, - ACTIONS(1501), 22, - anon_sym_LF, + ACTIONS(9172), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9170), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112284] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [202720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 1, - sym_concat, - ACTIONS(1505), 22, - anon_sym_LF, + ACTIONS(9176), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9174), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112315] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [202752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 1, - sym_concat, - ACTIONS(1509), 22, - anon_sym_LF, + ACTIONS(9489), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9491), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112346] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [202784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 1, - sym_concat, - ACTIONS(1513), 22, - anon_sym_LF, + ACTIONS(9415), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9417), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112377] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 1, - sym_concat, - ACTIONS(1517), 22, - anon_sym_LF, + STATE(3764), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9373), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9493), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9371), 19, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112408] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4087), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3451), 1, - aux_sym_for_statement_repeat1, - STATE(3637), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6035), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3420), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112463] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, - sym_concat, - ACTIONS(1383), 22, - anon_sym_LF, + ACTIONS(9421), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9423), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [112494] = 15, - ACTIONS(57), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202884] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(2199), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + STATE(3743), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9419), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 6, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3436), 1, - aux_sym_for_statement_repeat1, - STATE(3685), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6037), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(3434), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112549] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4259), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, + ACTIONS(978), 15, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3265), 1, - aux_sym_for_statement_repeat1, - STATE(3795), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6039), 3, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3264), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112604] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(2263), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3319), 1, - aux_sym_for_statement_repeat1, - STATE(3718), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6041), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3318), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112659] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3963), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3358), 1, - aux_sym_for_statement_repeat1, - STATE(3815), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6043), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3357), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112714] = 3, + sym_semgrep_named_ellipsis, + [202920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6045), 2, + ACTIONS(1741), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6047), 21, + aux_sym_statements_token1, + ACTIONS(1739), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [112745] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4429), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3341), 1, - aux_sym_for_statement_repeat1, - STATE(3687), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6049), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3334), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [112800] = 3, + [202952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6051), 2, + ACTIONS(9451), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6053), 21, + aux_sym_statements_token1, + ACTIONS(9453), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [202984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9427), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9425), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [112831] = 3, + anon_sym_BQUOTE, + [203016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6055), 2, + ACTIONS(9495), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6057), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9497), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [203048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [112862] = 3, + [203080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6059), 2, + ACTIONS(9132), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6061), 21, + aux_sym_statements_token1, + ACTIONS(9130), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [203112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9363), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9365), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [112893] = 3, + anon_sym_BQUOTE, + [203144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 2, + ACTIONS(3848), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6065), 21, + aux_sym_statements_token1, + ACTIONS(3846), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [203176] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3764), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9298), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9296), 19, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [112924] = 5, + [203212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6071), 1, - sym_concat, - STATE(2123), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6067), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(6069), 12, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [112959] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(2327), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9463), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9461), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3418), 1, - aux_sym_for_statement_repeat1, - STATE(3624), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6073), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3415), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113014] = 3, + [203244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 2, + ACTIONS(9502), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6077), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9504), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113045] = 3, + anon_sym_BQUOTE, + [203276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 2, + ACTIONS(9506), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9508), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [203308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9172), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9170), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113076] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3450), 1, - aux_sym_for_statement_repeat1, - STATE(3734), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6079), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3447), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113131] = 3, + [203340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6081), 2, + ACTIONS(9510), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6083), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9512), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [203372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9176), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9174), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113162] = 3, + anon_sym_BQUOTE, + [203404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6085), 2, + ACTIONS(1745), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6087), 21, + aux_sym_statements_token1, + ACTIONS(1743), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [203436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9457), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9455), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113193] = 3, + anon_sym_BQUOTE, + [203468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6089), 2, + ACTIONS(9385), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6091), 21, + aux_sym_statements_token1, + ACTIONS(9387), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [203500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9471), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9469), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113224] = 3, + anon_sym_BQUOTE, + [203532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6093), 2, + ACTIONS(9477), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6095), 21, + aux_sym_statements_token1, + ACTIONS(9479), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [203564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9180), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113255] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(2391), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3281), 1, - aux_sym_for_statement_repeat1, - STATE(3699), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6097), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3273), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113310] = 3, + [203596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 2, + ACTIONS(9495), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6101), 21, + aux_sym_statements_token1, + ACTIONS(9497), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [203628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9506), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9508), 22, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113341] = 3, + [203660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6103), 2, + ACTIONS(9385), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6105), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9387), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [203692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9467), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9465), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113372] = 3, + anon_sym_BQUOTE, + [203724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6107), 2, + ACTIONS(9514), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6109), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9516), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113403] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4804), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3352), 1, - aux_sym_for_statement_repeat1, - STATE(3781), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6111), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3350), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113458] = 3, + [203756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6113), 2, + ACTIONS(9165), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6115), 21, + aux_sym_statements_token1, + ACTIONS(9163), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113489] = 3, + [203788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6117), 2, + ACTIONS(9510), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6119), 21, + aux_sym_statements_token1, + ACTIONS(9512), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113520] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6121), 1, - sym_concat, - STATE(2124), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1379), 12, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [113555] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6123), 1, - sym_concat, - STATE(2124), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1385), 12, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [113590] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(2455), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3268), 1, - aux_sym_for_statement_repeat1, - STATE(3752), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6126), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3267), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113645] = 3, + [203820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 2, + ACTIONS(9182), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6130), 21, + aux_sym_statements_token1, + ACTIONS(9180), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [113676] = 3, + [203852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 2, + ACTIONS(9514), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6134), 21, + aux_sym_statements_token1, + ACTIONS(9516), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113707] = 3, + [203884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6136), 2, + ACTIONS(9475), 3, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6138), 21, + ts_builtin_sym_end, + aux_sym_statements_token1, + ACTIONS(9473), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113738] = 3, + anon_sym_BQUOTE, + [203916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 2, + ACTIONS(9489), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6142), 21, + aux_sym_statements_token1, + ACTIONS(9491), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113769] = 3, + [203948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6144), 2, + ACTIONS(9502), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6146), 21, + aux_sym_statements_token1, + ACTIONS(9504), 22, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113800] = 15, - ACTIONS(57), 1, + [203980] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - STATE(3280), 1, - aux_sym_for_statement_repeat1, - STATE(3727), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6148), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3279), 7, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2472), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [113855] = 3, - ACTIONS(3), 1, + [204035] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6150), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6152), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9524), 1, anon_sym_esac, + ACTIONS(9520), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204068] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9449), 1, + aux_sym_concatenation_token1, + ACTIONS(9526), 1, + sym_concat, + STATE(3797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 7, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(962), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113886] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [204105] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9524), 1, + anon_sym_esac, + ACTIONS(9520), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6154), 2, + ACTIONS(9132), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6156), 21, + aux_sym_statements_token1, + ACTIONS(9130), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113917] = 3, - ACTIONS(3), 1, + [204169] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6158), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6160), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9524), 1, + anon_sym_esac, + ACTIONS(9520), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204202] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9532), 1, + anon_sym_esac, + ACTIONS(9528), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204235] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9532), 1, anon_sym_esac, + ACTIONS(9528), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204268] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3797), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9534), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113948] = 3, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [204303] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2374), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [204358] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2375), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [204413] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2184), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [204468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6162), 2, + STATE(3801), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9298), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6164), 21, + aux_sym_statements_token1, + ACTIONS(9539), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9296), 18, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [113979] = 3, + anon_sym_BQUOTE, + [204503] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204534] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9546), 1, + anon_sym_esac, + ACTIONS(9542), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204567] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1030), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204598] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9546), 1, + anon_sym_esac, + ACTIONS(9542), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204631] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1046), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 2, + ACTIONS(9165), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6168), 21, + aux_sym_statements_token1, + ACTIONS(9163), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6172), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114041] = 15, - ACTIONS(57), 1, + [204693] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2519), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(1048), 6, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1050), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204724] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - STATE(3309), 1, - aux_sym_for_statement_repeat1, - STATE(3719), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6174), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3307), 7, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2611), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114096] = 3, - ACTIONS(3), 1, + [204779] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6176), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6178), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9546), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114127] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5138), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9542), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3327), 1, - aux_sym_for_statement_repeat1, - STATE(3816), 1, - sym_concatenation, - ACTIONS(6021), 2, + [204812] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2614), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [204867] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2515), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [204922] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1038), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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(6180), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3326), 7, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [204953] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2537), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114182] = 3, - ACTIONS(3), 1, + [205008] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(6182), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6184), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114213] = 15, - ACTIONS(57), 1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2516), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205063] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2583), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - STATE(3367), 1, - aux_sym_for_statement_repeat1, - STATE(3634), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6186), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3366), 7, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2616), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114268] = 5, - ACTIONS(3), 1, + [205118] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(6071), 1, - sym_concat, - STATE(2123), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2399), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205173] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2447), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205228] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2458), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205283] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2462), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205338] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2486), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205393] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, + anon_sym_DOLLAR, + ACTIONS(9024), 1, + anon_sym_DQUOTE, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9032), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9034), 1, + anon_sym_BQUOTE, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2508), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + 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, + [205448] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9554), 1, + anon_sym_esac, + ACTIONS(9550), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1361), 12, - anon_sym_RBRACE, + ACTIONS(9552), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + 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, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [114303] = 15, - ACTIONS(57), 1, + [205481] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(9112), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9120), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9122), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, sym_semgrep_named_ellipsis, - STATE(3392), 1, - aux_sym_for_statement_repeat1, - STATE(3721), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6188), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3387), 7, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2563), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114358] = 5, - ACTIONS(3), 1, + [205536] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(6190), 1, - sym_concat, - STATE(2146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1377), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114393] = 5, - ACTIONS(3), 1, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2194), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [205591] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(6192), 1, - sym_concat, - STATE(2146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114428] = 15, - ACTIONS(57), 1, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2200), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [205646] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2647), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - STATE(3449), 1, - aux_sym_for_statement_repeat1, - STATE(3738), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6195), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3448), 7, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2204), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114483] = 3, - ACTIONS(3), 1, + [205701] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6199), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9560), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114514] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9556), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9558), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3468), 1, - aux_sym_for_statement_repeat1, - STATE(3799), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6201), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3467), 7, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [205734] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2206), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [205789] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2207), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114569] = 15, - ACTIONS(57), 1, + [205844] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2711), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - STATE(3263), 1, - aux_sym_for_statement_repeat1, - STATE(3812), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6203), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3469), 7, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2217), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114624] = 15, - ACTIONS(57), 1, + [205899] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - STATE(3329), 1, - aux_sym_for_statement_repeat1, - STATE(3612), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6205), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3324), 7, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2219), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6207), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6209), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114710] = 15, - ACTIONS(57), 1, + [205954] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2775), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - STATE(3456), 1, - aux_sym_for_statement_repeat1, - STATE(3759), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6211), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3455), 7, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2220), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114765] = 15, - ACTIONS(57), 1, + [206009] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9566), 1, + anon_sym_esac, + ACTIONS(9562), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3478), 1, - aux_sym_for_statement_repeat1, - STATE(3814), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6213), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3474), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [114820] = 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [206042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 2, + STATE(3801), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9373), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6217), 21, + aux_sym_statements_token1, + ACTIONS(9568), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(9371), 18, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114851] = 3, + anon_sym_BQUOTE, + [206077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 3, + ACTIONS(9172), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 20, + aux_sym_statements_token1, + ACTIONS(9170), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [206108] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9574), 1, + anon_sym_esac, + ACTIONS(9570), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9572), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [114882] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [206141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 2, + ACTIONS(9176), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6221), 21, + aux_sym_statements_token1, + ACTIONS(9174), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [114913] = 3, + [206172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 3, + ACTIONS(9184), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 20, + aux_sym_statements_token1, + ACTIONS(9186), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [114944] = 5, + [206203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6223), 1, - sym_special_character, - STATE(2159), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 3, + ACTIONS(9182), 2, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1432), 18, + aux_sym_statements_token1, + ACTIONS(9180), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206234] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9576), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 8, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym_special_character, + ACTIONS(978), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [114979] = 3, + [206269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 3, + ACTIONS(9363), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 20, + aux_sym_statements_token1, + ACTIONS(9365), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115010] = 3, + [206300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 2, + ACTIONS(9385), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6228), 21, + aux_sym_statements_token1, + ACTIONS(9387), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4570), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(4568), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [115041] = 3, + [206362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 3, + ACTIONS(4570), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 20, + aux_sym_statements_token1, + ACTIONS(4568), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115072] = 15, - ACTIONS(57), 1, + [206393] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(2839), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9566), 1, + anon_sym_esac, + ACTIONS(9562), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3285), 1, - aux_sym_for_statement_repeat1, - STATE(3757), 1, - sym_concatenation, - ACTIONS(6021), 2, + [206426] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9566), 1, + anon_sym_esac, + ACTIONS(9562), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6230), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3282), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [115127] = 3, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [206459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 3, + ACTIONS(9457), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 20, + aux_sym_statements_token1, + ACTIONS(9455), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206490] = 7, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9580), 1, + sym_variable_name, + STATE(5319), 1, + sym_subscript, + ACTIONS(9578), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3875), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8663), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8661), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115158] = 3, + [206529] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 3, + ACTIONS(1818), 1, + anon_sym_BQUOTE, + ACTIONS(3954), 1, + aux_sym_statements_token1, + ACTIONS(9335), 1, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 20, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3952), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -119146,690 +240919,1502 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [206574] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(9582), 1, + aux_sym_statements_token1, + ACTIONS(9586), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9592), 1, + anon_sym_DOLLAR, + ACTIONS(9594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9596), 1, + anon_sym_RBRACE3, + ACTIONS(9598), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9600), 1, anon_sym_BQUOTE, - [115189] = 3, + ACTIONS(9602), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9604), 1, + sym_semgrep_named_ellipsis, + STATE(4107), 1, + sym_simple_expansion, + STATE(4962), 1, + sym_expansion_max_length_expression, + ACTIONS(9584), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(4817), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + STATE(5842), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [206637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6232), 2, + ACTIONS(1741), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6234), 21, + aux_sym_statements_token1, + ACTIONS(1739), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [115220] = 3, + [206699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 3, + ACTIONS(9395), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 20, + aux_sym_statements_token1, + ACTIONS(9397), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115251] = 15, - ACTIONS(57), 1, + [206730] = 16, + ACTIONS(71), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(5766), 1, + anon_sym_LPAREN, + ACTIONS(5776), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(5784), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(5798), 1, + sym_semgrep_named_ellipsis, + ACTIONS(5800), 1, + sym_variable_name, + ACTIONS(9608), 1, + anon_sym_DOLLAR, + ACTIONS(9610), 1, + anon_sym_RBRACE3, + ACTIONS(9612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9614), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3289), 1, - aux_sym_for_statement_repeat1, - STATE(3724), 1, - sym_concatenation, - ACTIONS(6021), 2, + ACTIONS(9616), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(5167), 1, + sym_process_substitution, + STATE(5626), 1, + sym_concatenation_in_expansion, + ACTIONS(5439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6236), 3, + ACTIONS(9606), 4, + sym_expansion_word, sym_raw_string, - sym_ansii_c_string, + sym_ansi_c_string, sym_word, - STATE(3288), 7, + STATE(5032), 5, sym_string, + sym_array, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [115306] = 3, + [206787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 3, + ACTIONS(9443), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 20, + aux_sym_statements_token1, + ACTIONS(9441), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9415), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9417), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [206849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9421), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(9423), 21, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + 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_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115337] = 15, - ACTIONS(57), 1, + [206880] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2903), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(8679), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9202), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9204), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, sym_semgrep_named_ellipsis, - STATE(3313), 1, - aux_sym_for_statement_repeat1, - STATE(3659), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6238), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3310), 7, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2338), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [115392] = 3, + [206935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 3, + ACTIONS(9451), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 20, + aux_sym_statements_token1, + ACTIONS(9453), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [206966] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9622), 1, + anon_sym_esac, + ACTIONS(9618), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9620), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - [115423] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [206999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 3, + ACTIONS(9477), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 20, + aux_sym_statements_token1, + ACTIONS(9479), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115454] = 3, + [207030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 3, + ACTIONS(9495), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 20, + aux_sym_statements_token1, + ACTIONS(9497), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115485] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4321), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3321), 1, - aux_sym_for_statement_repeat1, - STATE(3736), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6240), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3320), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [115540] = 3, + [207061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 3, + ACTIONS(9506), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 20, + aux_sym_statements_token1, + ACTIONS(9508), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115571] = 3, + [207092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 3, + ACTIONS(9510), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 20, + aux_sym_statements_token1, + ACTIONS(9512), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [207123] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [115602] = 3, + sym_word, + ACTIONS(1042), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, + ACTIONS(9514), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 20, + aux_sym_statements_token1, + ACTIONS(9516), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115633] = 3, + [207185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 3, + ACTIONS(9489), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 20, + aux_sym_statements_token1, + ACTIONS(9491), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115664] = 3, + [207216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 2, + ACTIONS(9405), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6244), 21, + aux_sym_statements_token1, + ACTIONS(9403), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [115695] = 3, + [207247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 3, + ACTIONS(9413), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 20, + aux_sym_statements_token1, + ACTIONS(9411), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115726] = 3, + [207278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 3, + ACTIONS(3836), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 20, + aux_sym_statements_token1, + ACTIONS(3834), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [207309] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [115757] = 3, + sym_word, + ACTIONS(998), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 3, + ACTIONS(3848), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 20, + aux_sym_statements_token1, + ACTIONS(3846), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [207371] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(966), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [115788] = 3, - ACTIONS(3), 1, + sym_word, + ACTIONS(968), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207402] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 3, + ACTIONS(9627), 1, + sym_variable_name, + STATE(5319), 1, + sym_subscript, + ACTIONS(9624), 2, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + STATE(3875), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8637), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(8639), 10, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [207441] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3791), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9449), 2, sym_concat, - anon_sym_LF, - ACTIONS(1540), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(3588), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3590), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [207476] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1000), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1002), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(994), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207538] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(988), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(990), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [207569] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2445), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207624] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2449), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207679] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2451), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207734] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2479), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207789] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2490), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207844] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2546), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207899] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, anon_sym_BQUOTE, - [115819] = 3, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2557), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [207954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 3, + ACTIONS(9427), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 20, + aux_sym_statements_token1, + ACTIONS(9425), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [207985] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2558), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [208040] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2559), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [208095] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2586), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [208150] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9108), 1, + anon_sym_LPAREN, + ACTIONS(9110), 1, + anon_sym_DOLLAR, + ACTIONS(9112), 1, + anon_sym_DQUOTE, + ACTIONS(9114), 1, + aux_sym_number_token1, + ACTIONS(9116), 1, + aux_sym_number_token2, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9126), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9518), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2590), 1, + sym_c_expression_not_assignment, + ACTIONS(9106), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2496), 9, + 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, + [208205] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(984), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(986), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [208236] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(9586), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9592), 1, + anon_sym_DOLLAR, + ACTIONS(9594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9598), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9600), 1, anon_sym_BQUOTE, - [115850] = 3, - ACTIONS(3), 1, + ACTIONS(9602), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9604), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9630), 1, + aux_sym_statements_token1, + ACTIONS(9634), 1, + anon_sym_RBRACE3, + STATE(4095), 1, + sym_simple_expansion, + STATE(4962), 1, + sym_expansion_max_length_expression, + ACTIONS(9632), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(4796), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + STATE(5788), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [208299] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 3, - sym_file_descriptor, + ACTIONS(1004), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1006), 17, sym_concat, - anon_sym_LF, - ACTIONS(1469), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + sym_test_operator, + sym_brace_start, anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115881] = 15, - ACTIONS(57), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [208330] = 15, + ACTIONS(71), 1, sym_comment, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9020), 1, + anon_sym_LPAREN, + ACTIONS(9022), 1, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, + ACTIONS(9024), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9026), 1, + aux_sym_number_token1, + ACTIONS(9028), 1, + aux_sym_number_token2, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9038), 1, sym_semgrep_named_ellipsis, - STATE(3349), 1, - aux_sym_for_statement_repeat1, - STATE(3750), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6246), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3348), 7, + ACTIONS(9548), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2517), 1, + sym_c_expression_not_assignment, + ACTIONS(9018), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2408), 9, + sym_c_unary_expression, + sym_c_binary_expression, + sym_c_postfix_expression, + sym_c_parenthesized_expression, sym_string, + sym_number, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [115936] = 3, + [208385] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 3, + ACTIONS(4471), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [115967] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1479), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -119838,54 +242423,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [208432] = 15, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8679), 1, + anon_sym_DOLLAR, + ACTIONS(8685), 1, + aux_sym_number_token2, + ACTIONS(9194), 1, + anon_sym_LPAREN, + ACTIONS(9196), 1, + anon_sym_DQUOTE, + ACTIONS(9198), 1, + aux_sym_number_token1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, anon_sym_BQUOTE, - [115998] = 3, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9208), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9537), 1, + aux_sym_c_expression_not_assignment_token1, + STATE(2373), 1, + sym_c_expression_not_assignment, + ACTIONS(9192), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2324), 9, + 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, + [208487] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 3, + ACTIONS(4473), 1, + aux_sym_statements_token1, + ACTIONS(8775), 1, + anon_sym_LT_LT_LT, + ACTIONS(8800), 1, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(3758), 1, + sym_herestring_redirect, + ACTIONS(3415), 2, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1487), 3, - sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -119894,723 +242499,482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116060] = 3, + [208534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 3, + ACTIONS(9463), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 20, + aux_sym_statements_token1, + ACTIONS(9461), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116091] = 3, + [208565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 3, + ACTIONS(9467), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 20, + aux_sym_statements_token1, + ACTIONS(9465), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116122] = 3, + [208596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 3, + ACTIONS(9399), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 20, + aux_sym_statements_token1, + ACTIONS(9401), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116153] = 3, + [208627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 3, + ACTIONS(9429), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1501), 20, + aux_sym_statements_token1, + ACTIONS(9431), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116184] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4379), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3356), 1, - aux_sym_for_statement_repeat1, - STATE(3808), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6248), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3355), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116239] = 3, + [208658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 3, + ACTIONS(9433), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 20, + aux_sym_statements_token1, + ACTIONS(9435), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116270] = 3, + [208689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 3, + ACTIONS(9437), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 20, + aux_sym_statements_token1, + ACTIONS(9439), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116301] = 3, + [208720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 3, + ACTIONS(9502), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 20, + aux_sym_statements_token1, + ACTIONS(9504), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116332] = 3, + [208751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 3, + ACTIONS(9471), 2, sym_file_descriptor, - sym_concat, - anon_sym_LF, - ACTIONS(1517), 20, + aux_sym_statements_token1, + ACTIONS(9469), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [116363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6250), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6252), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [116394] = 3, + [208782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 2, + ACTIONS(9475), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6256), 21, + aux_sym_statements_token1, + ACTIONS(9473), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [116425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6258), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6260), 21, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_GT_GT, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [116456] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3378), 1, - aux_sym_for_statement_repeat1, - STATE(3790), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6262), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3377), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116511] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4431), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3383), 1, - aux_sym_for_statement_repeat1, - STATE(3665), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6264), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3382), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116566] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3404), 1, - aux_sym_for_statement_repeat1, - STATE(3797), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6266), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3402), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116621] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4491), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3410), 1, - aux_sym_for_statement_repeat1, - STATE(3613), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6268), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3409), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116676] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3432), 1, - aux_sym_for_statement_repeat1, - STATE(3678), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6270), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3431), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116731] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3441), 1, - aux_sym_for_statement_repeat1, - STATE(3705), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6272), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3438), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116786] = 3, + [208813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 2, + ACTIONS(9407), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 21, + aux_sym_statements_token1, + ACTIONS(9409), 21, anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + 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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [116817] = 15, - ACTIONS(57), 1, + [208844] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(3223), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9532), 1, + anon_sym_esac, + ACTIONS(9528), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3458), 1, - aux_sym_for_statement_repeat1, - STATE(3771), 1, - sym_concatenation, - ACTIONS(6021), 2, + [208877] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1010), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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(6274), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3457), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116872] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [208908] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4599), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(1012), 6, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1014), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [208939] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + sym_word, + ACTIONS(1018), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3475), 1, - aux_sym_for_statement_repeat1, - STATE(3806), 1, - sym_concatenation, - ACTIONS(6021), 2, + [208970] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1022), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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(6276), 3, - sym_raw_string, - sym_ansii_c_string, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209001] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - STATE(3471), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [116927] = 3, + ACTIONS(1034), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209032] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5334), 2, + ACTIONS(3429), 1, + anon_sym_BQUOTE, + ACTIONS(4069), 1, + aux_sym_statements_token1, + ACTIONS(9335), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 21, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3956), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(8898), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4067), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -120619,436 +242983,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [209077] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3791), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9449), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3730), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3732), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [116958] = 15, - ACTIONS(57), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [209112] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3287), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(1024), 6, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1026), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3343), 1, - aux_sym_for_statement_repeat1, - STATE(3704), 1, - sym_concatenation, - ACTIONS(6021), 2, + [209143] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(982), 17, + sym_concat, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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(6278), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3342), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117013] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209174] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9636), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9638), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3403), 1, - aux_sym_for_statement_repeat1, - STATE(3773), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6280), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3398), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117068] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209204] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3351), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9636), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9638), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3292), 1, - aux_sym_for_statement_repeat1, - STATE(3715), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6282), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3287), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117123] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209234] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9528), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3340), 1, - aux_sym_for_statement_repeat1, - STATE(3662), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6284), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3335), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117178] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209264] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3415), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9618), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9620), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3401), 1, - aux_sym_for_statement_repeat1, - STATE(3787), 1, - sym_concatenation, - ACTIONS(6021), 2, + [209294] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9520), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6286), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3400), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117233] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209324] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9520), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3424), 1, - aux_sym_for_statement_repeat1, - STATE(3640), 1, - sym_concatenation, - ACTIONS(6021), 2, + [209354] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9520), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9522), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6288), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3417), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117288] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209384] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3479), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9528), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3464), 1, - aux_sym_for_statement_repeat1, - STATE(3791), 1, - sym_concatenation, - ACTIONS(6021), 2, + [209414] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9528), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9530), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6290), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3461), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117343] = 5, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209444] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - STATE(2235), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1361), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_special_character, + ACTIONS(9542), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, sym_test_operator, - [117378] = 15, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209474] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9542), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3477), 1, - aux_sym_for_statement_repeat1, - STATE(3822), 1, - sym_concatenation, - ACTIONS(6021), 2, + [209504] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9542), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9544), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6292), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3476), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117433] = 3, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209534] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1416), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1418), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9550), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9552), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [117464] = 5, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209564] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - sym_concat, - STATE(2145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5808), 3, + ACTIONS(3941), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5810), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [117499] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6294), 1, - sym_special_character, - STATE(2159), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5808), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5810), 18, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3939), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -121057,638 +243453,628 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [117534] = 15, - ACTIONS(41), 1, + [209606] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9640), 5, anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(51), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(53), 1, - anon_sym_BQUOTE, - ACTIONS(57), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(61), 1, - sym_semgrep_named_ellipsis, - ACTIONS(1743), 1, - sym_special_character, - ACTIONS(6298), 1, - sym_regex, - STATE(883), 1, - aux_sym_for_statement_repeat1, - STATE(1002), 1, - sym_concatenation, - ACTIONS(55), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6296), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(710), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117589] = 15, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3543), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, + ACTIONS(9642), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3276), 1, - aux_sym_for_statement_repeat1, - STATE(3615), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6300), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3275), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117644] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209636] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9644), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3284), 1, - aux_sym_for_statement_repeat1, - STATE(3823), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6302), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3283), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117699] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209666] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3607), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9644), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3296), 1, - aux_sym_for_statement_repeat1, - STATE(3680), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6304), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3295), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117754] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209696] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9654), 1, + anon_sym_LT_LT_LT, + ACTIONS(9656), 1, + sym_file_descriptor, + ACTIONS(8806), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(9652), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9650), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3950), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8808), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(9648), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [209738] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9658), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9660), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3302), 1, - aux_sym_for_statement_repeat1, - STATE(3776), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6306), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3301), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [117809] = 5, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209768] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5989), 1, - sym_concat, - STATE(2145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5328), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5330), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1000), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1002), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [117844] = 5, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [209798] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6294), 1, - sym_special_character, - STATE(2159), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5328), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5330), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(4043), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9662), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(978), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [117879] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1420), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1422), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [117910] = 3, - ACTIONS(57), 1, + sym_special_character, + [209832] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1424), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1426), 18, + STATE(3997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9576), 2, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [117941] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1392), 5, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(1739), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1394), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [117972] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6308), 1, - sym_concat, - STATE(1998), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1379), 16, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [118007] = 15, - ACTIONS(57), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [209866] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3671), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, + ACTIONS(9664), 1, sym_special_character, - ACTIONS(6013), 1, + STATE(3990), 1, + aux_sym_for_statement_repeat1, + ACTIONS(4077), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4079), 15, + sym_test_operator, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3317), 1, - aux_sym_for_statement_repeat1, - STATE(3670), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6310), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3316), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118062] = 3, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209900] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1396), 5, - anon_sym_EQ, + ACTIONS(992), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1398), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(994), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118093] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1428), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1430), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118124] = 15, - ACTIONS(57), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [209930] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9644), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3323), 1, - aux_sym_for_statement_repeat1, - STATE(3755), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6312), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3322), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118179] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [209960] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(105), 1, + ACTIONS(9644), 5, anon_sym_DOLLAR, - ACTIONS(109), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, - ACTIONS(113), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, sym_semgrep_named_ellipsis, - ACTIONS(1741), 1, + [209990] = 13, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9672), 1, + anon_sym_LT_LT_LT, + ACTIONS(9674), 1, + sym_file_descriptor, + STATE(4185), 1, + sym_herestring_redirect, + ACTIONS(4803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [210040] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9676), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6316), 1, - sym_regex, - STATE(975), 1, - aux_sym_for_statement_repeat1, - STATE(1009), 1, - sym_concatenation, - ACTIONS(119), 2, + 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, - ACTIONS(6314), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(721), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118234] = 5, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210070] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6318), 1, + ACTIONS(9680), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9682), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 5, - anon_sym_EQ, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210100] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(988), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1434), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(990), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118269] = 5, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210130] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5989), 1, + ACTIONS(1008), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1010), 15, + sym_file_descriptor, sym_concat, - STATE(2145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5334), 3, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210160] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9693), 1, + anon_sym_LT_LT_LT, + ACTIONS(9696), 1, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5336), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(8836), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(9690), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9687), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3950), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8838), 5, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(9684), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [210202] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1014), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210232] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1018), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210262] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9699), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 8, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym_special_character, + ACTIONS(978), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [118304] = 5, + [210296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 1, - sym_special_character, - STATE(2159), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5334), 3, + ACTIONS(3966), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5336), 18, + ACTIONS(3493), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3964), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -121697,1764 +244083,2554 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [210338] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9576), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [118339] = 15, - ACTIONS(57), 1, + [210372] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3735), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6011), 1, + ACTIONS(9143), 1, sym_special_character, - ACTIONS(6013), 1, + STATE(3533), 1, + aux_sym_for_statement_repeat1, + ACTIONS(9447), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(9445), 17, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3337), 1, - aux_sym_for_statement_repeat1, - STATE(3673), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6321), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(3336), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118394] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210406] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(1020), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1022), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210436] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9644), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3345), 1, - aux_sym_for_statement_repeat1, - STATE(3714), 1, - sym_concatenation, - ACTIONS(6021), 2, + [210466] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9644), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9646), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - ACTIONS(6323), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3344), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118449] = 3, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210496] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1383), 5, - anon_sym_EQ, + ACTIONS(1024), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1026), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118480] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210526] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1400), 5, - anon_sym_EQ, + ACTIONS(980), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1402), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(982), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118511] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210556] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1439), 5, - anon_sym_EQ, + ACTIONS(1032), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1441), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1034), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210586] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9562), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118542] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210616] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1443), 5, - anon_sym_EQ, + ACTIONS(1040), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1445), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1042), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118573] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210646] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 5, - anon_sym_EQ, + ACTIONS(1036), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1038), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210676] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9701), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9703), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118604] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210706] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 5, - anon_sym_EQ, + ACTIONS(9701), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9703), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210736] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(3997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9576), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3846), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118635] = 15, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [210770] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9705), 1, + anon_sym_LT_LT_LT, + STATE(4277), 1, + sym_herestring_redirect, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3441), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [210806] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3799), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9701), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9703), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3354), 1, - aux_sym_for_statement_repeat1, - STATE(3796), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6325), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3353), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118690] = 3, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [210836] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1404), 5, - anon_sym_EQ, + ACTIONS(984), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1406), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(986), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, + sym_variable_name, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210866] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118721] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210896] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1408), 5, - anon_sym_EQ, + ACTIONS(1044), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1046), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, + sym_variable_name, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210926] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 15, + sym_file_descriptor, + sym_concat, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [118752] = 15, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [210956] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(5140), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(9705), 1, + anon_sym_LT_LT_LT, + STATE(4277), 1, + sym_herestring_redirect, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3445), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [210996] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9701), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, - sym_special_character, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, - anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3360), 1, - aux_sym_for_statement_repeat1, - STATE(3827), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6327), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(3359), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118807] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(6331), 1, + ACTIONS(9703), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6333), 1, anon_sym_DQUOTE, - ACTIONS(6335), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1833), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118860] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211026] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4191), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9707), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9709), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3266), 1, - aux_sym_for_statement_repeat1, - STATE(3761), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6347), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3391), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118915] = 14, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211056] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(9676), 5, anon_sym_DOLLAR, - ACTIONS(6331), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6333), 1, anon_sym_DQUOTE, - ACTIONS(6335), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1848), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [118968] = 4, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211086] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6353), 1, - sym_concat, - ACTIONS(6349), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(9676), 5, anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(6351), 13, - anon_sym_RBRACE, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [119001] = 15, - ACTIONS(57), 1, + [211116] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3863), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9676), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3370), 1, - aux_sym_for_statement_repeat1, - STATE(3671), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6355), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3369), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119056] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211146] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9676), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3375), 1, - aux_sym_for_statement_repeat1, - STATE(3743), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6357), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3374), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119111] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1412), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1414), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119142] = 3, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211176] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + ACTIONS(3844), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119173] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1455), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1457), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119204] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1459), 5, - anon_sym_EQ, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3842), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1461), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119235] = 3, - ACTIONS(57), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [211218] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1540), 5, - anon_sym_EQ, + ACTIONS(996), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1542), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(998), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119266] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1467), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119297] = 4, - ACTIONS(3), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211248] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6363), 1, - sym_concat, - ACTIONS(6359), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(9636), 5, anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(6361), 13, - anon_sym_RBRACE, + ACTIONS(9638), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym_special_character, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, sym_semgrep_named_ellipsis, - [119330] = 3, - ACTIONS(57), 1, + [211278] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1469), 5, - anon_sym_EQ, + ACTIONS(966), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1471), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(968), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119361] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1473), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119392] = 3, - ACTIONS(57), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211308] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1477), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9701), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9703), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119423] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211338] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1481), 5, - anon_sym_EQ, + ACTIONS(9711), 1, + sym_special_character, + STATE(3999), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3588), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1483), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3590), 13, + sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119454] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1485), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1487), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119485] = 3, - ACTIONS(57), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211372] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1489), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1491), 18, + STATE(3997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9576), 2, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119516] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1493), 5, - anon_sym_EQ, + aux_sym_concatenation_token1, + ACTIONS(1743), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 12, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119547] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [211406] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1497), 5, - anon_sym_EQ, + ACTIONS(1004), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1499), 18, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1006), 15, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211436] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9713), 1, + sym_special_character, + STATE(3990), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1056), 15, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119578] = 3, - ACTIONS(57), 1, + sym_brace_start, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211470] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1501), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1503), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9701), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9703), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119609] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211500] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1505), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1507), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9636), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9638), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119640] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211530] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1509), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1511), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9556), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9558), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119671] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211560] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1513), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1515), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(9562), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119702] = 3, - ACTIONS(57), 1, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211590] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1517), 5, - anon_sym_EQ, + ACTIONS(9711), 1, + sym_special_character, + STATE(3999), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3730), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1519), 18, - sym_concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3732), 13, + sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_DOT_DOT_DOT_GT, - [119733] = 15, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211624] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9570), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9572), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, - sym_semgrep_named_ellipsis, - STATE(3462), 1, - aux_sym_for_statement_repeat1, - STATE(3780), 1, - sym_concatenation, - ACTIONS(6021), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(6365), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3460), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119788] = 15, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211654] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9576), 1, + aux_sym_concatenation_token1, + ACTIONS(9716), 1, + sym_concat, + STATE(4001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(962), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [211690] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(6009), 1, + ACTIONS(9676), 5, anon_sym_DOLLAR, - ACTIONS(6011), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9678), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6013), 1, anon_sym_DQUOTE, - ACTIONS(6015), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, sym_semgrep_named_ellipsis, - STATE(3395), 1, + [211720] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9718), 1, + sym_special_character, + STATE(3999), 1, aux_sym_for_statement_repeat1, - STATE(3784), 1, - sym_concatenation, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6367), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3330), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119843] = 14, - ACTIONS(57), 1, + ACTIONS(1054), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1056), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211754] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(9636), 5, anon_sym_DOLLAR, - ACTIONS(6331), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9638), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6333), 1, anon_sym_DQUOTE, - ACTIONS(6335), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1844), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119896] = 14, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211784] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5361), 1, + STATE(4001), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9721), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(968), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [211818] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9562), 5, anon_sym_DOLLAR, - ACTIONS(6331), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9564), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym_special_character, - ACTIONS(6333), 1, anon_sym_DQUOTE, - ACTIONS(6335), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, + [211848] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9636), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(9638), 17, + sym_test_operator, + sym_extglob_pattern, + sym_brace_start, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + 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, - STATE(1845), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [119949] = 3, - ACTIONS(3), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [211878] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 1, + ACTIONS(1028), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1030), 15, + sym_file_descriptor, sym_concat, - ACTIONS(1392), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [211908] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(998), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [211937] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5882), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [119980] = 3, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [211984] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6085), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212031] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(8892), 1, + anon_sym_PIPE, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4030), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8894), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(9666), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212074] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9735), 1, + anon_sym_LT_LT_LT, + ACTIONS(9738), 1, + sym_file_descriptor, + ACTIONS(8836), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(9732), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9729), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4009), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8838), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(9726), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212115] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4043), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9662), 2, sym_concat, - ACTIONS(1396), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212148] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9699), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [212181] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4043), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9662), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1743), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [120011] = 14, - ACTIONS(57), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212214] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, + ACTIONS(9447), 3, + sym_test_operator, + sym_brace_start, + aux_sym_statements_token1, + ACTIONS(9445), 18, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(6331), 1, sym_special_character, - ACTIONS(6333), 1, anon_sym_DQUOTE, - ACTIONS(6335), 1, + sym_raw_string, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1849), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [120064] = 14, - ACTIONS(57), 1, + anon_sym_LT_DOT_DOT_DOT, + sym_semgrep_named_ellipsis, + [212243] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(6331), 1, - sym_special_character, - ACTIONS(6333), 1, - anon_sym_DQUOTE, - ACTIONS(6335), 1, + ACTIONS(988), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(990), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212272] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(9586), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9594), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, + ACTIONS(9598), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, + ACTIONS(9600), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, - sym_semgrep_named_ellipsis, - STATE(2736), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6341), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1850), 2, - sym_concatenation, - aux_sym_for_statement_repeat2, - ACTIONS(6329), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2668), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, + ACTIONS(9602), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9741), 1, + aux_sym_statements_token1, + ACTIONS(9745), 1, + anon_sym_COLON, + ACTIONS(9747), 1, + anon_sym_RBRACE3, + STATE(4962), 1, + sym_expansion_max_length_expression, + ACTIONS(9743), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(4756), 3, + sym_number, sym_expansion, + sym_expansion_max_length_binary_expression, + STATE(5301), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [120117] = 3, - ACTIONS(3), 1, + [212329] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9749), 1, + sym_special_character, + STATE(4053), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212362] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6006), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212409] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 1, + ACTIONS(1000), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1002), 14, + sym_file_descriptor, sym_concat, - ACTIONS(1447), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212438] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4043), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9662), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212471] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [120148] = 3, - ACTIONS(3), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(994), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212500] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1459), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1461), 13, + STATE(4043), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9662), 2, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120178] = 5, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212533] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6369), 1, + ACTIONS(9749), 1, sym_special_character, - STATE(2292), 1, + STATE(4053), 1, aux_sym_for_statement_repeat1, - ACTIONS(1432), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1434), 12, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120212] = 3, - ACTIONS(3), 1, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [212566] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 4, + ACTIONS(1008), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1010), 14, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1383), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212595] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1012), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1014), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212624] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5982), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, + [212671] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1016), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1018), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120242] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [212700] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1396), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1398), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120272] = 3, - ACTIONS(3), 1, + ACTIONS(9757), 1, + anon_sym_LT_LT_LT, + ACTIONS(9759), 1, + sym_file_descriptor, + ACTIONS(8806), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(9755), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9753), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4009), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(8808), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(9751), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212741] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 4, + ACTIONS(1020), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1022), 14, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1400), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212770] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, anon_sym_PIPE, + ACTIONS(3441), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5890), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + [212817] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8935), 1, + anon_sym_PIPE, + ACTIONS(9764), 1, + anon_sym_LT_LT, + ACTIONS(9773), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9776), 1, + sym_file_descriptor, + ACTIONS(9770), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9767), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + STATE(4030), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8937), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(9761), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [212860] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(984), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(986), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120302] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [212889] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 4, + ACTIONS(1024), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1026), 14, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1404), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212918] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(982), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [212947] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9699), 1, + aux_sym_concatenation_token1, + ACTIONS(9779), 1, + sym_concat, + STATE(4048), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(962), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [212982] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1034), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [213011] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1030), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120332] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [213040] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 4, + ACTIONS(1004), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1006), 14, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1408), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [213069] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, anon_sym_PIPE, + ACTIONS(3441), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6077), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, + [213116] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1042), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120362] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [213145] = 12, + ACTIONS(71), 1, sym_comment, - ACTIONS(1383), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1385), 13, - sym_concat, - anon_sym_RBRACE, + ACTIONS(5766), 1, + anon_sym_LPAREN, + ACTIONS(5776), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + ACTIONS(5784), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5798), 1, + sym_semgrep_named_ellipsis, + ACTIONS(9608), 1, + anon_sym_DOLLAR, + ACTIONS(9612), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9614), 1, anon_sym_BQUOTE, + ACTIONS(9616), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5794), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120392] = 5, - ACTIONS(57), 1, + ACTIONS(9781), 5, + sym_variable_name, + sym_expansion_word, + sym_raw_string, + sym_ansi_c_string, + sym_word, + STATE(4989), 6, + sym_string, + sym_array, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [213192] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, + ACTIONS(1036), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 15, - anon_sym_RPAREN_RPAREN, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1038), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [213221] = 5, + ACTIONS(71), 1, + sym_comment, + STATE(4076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9783), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(976), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(978), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [120426] = 3, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_special_character, + [213254] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9662), 1, + aux_sym_concatenation_token1, + ACTIONS(9785), 1, + sym_concat, + STATE(4047), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(962), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [213289] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 4, + ACTIONS(4471), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1412), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -123463,52 +246639,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [120456] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1400), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1402), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120486] = 3, + [213330] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 4, + ACTIONS(4473), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1416), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3415), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -123517,3246 +246671,2712 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [213371] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9749), 1, + sym_special_character, + STATE(4053), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120516] = 3, - ACTIONS(3), 1, + [213404] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 4, - sym_file_descriptor, + STATE(4047), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9787), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1420), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120546] = 3, - ACTIONS(3), 1, + [213437] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 4, - sym_file_descriptor, + STATE(4048), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9790), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1424), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [120576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1406), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120606] = 3, - ACTIONS(3), 1, + [213470] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1428), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1050), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120636] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1408), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1410), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120666] = 5, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [213499] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6374), 1, - sym_concat, - STATE(2509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 6, - anon_sym_EQ, + ACTIONS(1044), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym_special_character, - ACTIONS(1361), 14, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1046), 14, + sym_file_descriptor, + sym_concat, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [120700] = 3, - ACTIONS(3), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [213528] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 4, + ACTIONS(1048), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 14, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1439), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [213557] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, anon_sym_PIPE, + ACTIONS(3441), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6002), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, + [213604] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9793), 1, + sym_special_character, + STATE(4053), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1056), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120730] = 3, - ACTIONS(3), 1, + [213637] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1443), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 14, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120760] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [213666] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, + STATE(4034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9699), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(3846), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3848), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [213699] = 12, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3415), 1, + anon_sym_PIPE, + ACTIONS(3441), 1, + anon_sym_PIPE_AMP, + ACTIONS(4805), 1, anon_sym_LT_LT, + ACTIONS(4807), 1, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [120790] = 14, - ACTIONS(57), 1, + ACTIONS(5994), 1, + anon_sym_RBRACK, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [213746] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6378), 1, - anon_sym_DOLLAR, - ACTIONS(6380), 1, + ACTIONS(9749), 1, sym_special_character, - ACTIONS(6382), 1, - anon_sym_DQUOTE, - ACTIONS(6384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6388), 1, - anon_sym_BQUOTE, - ACTIONS(6392), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6394), 1, - sym_semgrep_named_ellipsis, - STATE(2224), 1, + STATE(4053), 1, aux_sym_for_statement_repeat1, - STATE(2515), 1, - sym_concatenation, - ACTIONS(6390), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6376), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2223), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [120842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1449), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1447), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1741), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120872] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1414), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [120902] = 3, - ACTIONS(3), 1, + [213779] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 4, - sym_file_descriptor, + STATE(4034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9699), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1451), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [120932] = 3, - ACTIONS(3), 1, + [213812] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 4, - sym_file_descriptor, + STATE(4034), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9699), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1455), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [120962] = 3, - ACTIONS(3), 1, + [213845] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1459), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(996), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(998), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [120992] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [213873] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1540), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1024), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1026), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [121022] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [213901] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5999), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6001), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9796), 1, + sym_special_character, + STATE(4123), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [121052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6003), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6005), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + [213933] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4398), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4400), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [121082] = 3, - ACTIONS(3), 1, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [213961] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1465), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9796), 1, + sym_special_character, + STATE(4123), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3848), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [121112] = 5, - ACTIONS(57), 1, + [213993] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - STATE(2235), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 6, - anon_sym_EQ, + ACTIONS(8935), 1, + anon_sym_PIPE, + ACTIONS(9801), 1, + anon_sym_LT_LT, + ACTIONS(9810), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9813), 1, + sym_file_descriptor, + ACTIONS(9807), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8937), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(9804), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4065), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9798), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym_special_character, - ACTIONS(1361), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [121146] = 3, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [214035] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 4, + ACTIONS(9705), 1, + anon_sym_LT_LT_LT, + ACTIONS(9822), 1, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1469), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(8872), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(9820), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4282), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(9818), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(8874), 4, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(9816), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121176] = 14, - ACTIONS(57), 1, + [214075] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6398), 1, - anon_sym_DOLLAR, - ACTIONS(6400), 1, + ACTIONS(9824), 1, sym_special_character, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6404), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6408), 1, - anon_sym_BQUOTE, - ACTIONS(6412), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6414), 1, - sym_semgrep_named_ellipsis, - STATE(3087), 1, + STATE(4079), 1, aux_sym_for_statement_repeat1, - STATE(3216), 1, - sym_concatenation, - ACTIONS(6410), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6396), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3103), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1473), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3834), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121258] = 3, - ACTIONS(3), 1, + [214107] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1477), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(988), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(990), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121288] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214135] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 4, - sym_file_descriptor, + STATE(4076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9783), 2, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1481), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + aux_sym_concatenation_token1, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121318] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, - anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, - sym_semgrep_named_ellipsis, - ACTIONS(5455), 1, - sym_special_character, - STATE(3250), 1, - aux_sym_for_statement_repeat1, - STATE(3601), 1, - sym_concatenation, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6416), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3234), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121370] = 3, - ACTIONS(3), 1, + [214167] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1485), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1050), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121400] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214195] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1489), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1046), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121430] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214223] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1493), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1050), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121460] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214251] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1497), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3415), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3441), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121490] = 3, - ACTIONS(3), 1, + [214281] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1501), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1024), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1026), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121520] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5708), 1, - anon_sym_DOLLAR, - ACTIONS(5710), 1, - sym_special_character, - ACTIONS(5712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, - anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, - sym_semgrep_named_ellipsis, - STATE(1864), 1, - aux_sym_for_statement_repeat1, - STATE(1916), 1, - sym_concatenation, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6418), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1824), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121572] = 6, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214309] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6420), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(1016), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [121608] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6432), 1, - sym_special_character, - STATE(3259), 1, - aux_sym_for_statement_repeat1, - STATE(3537), 1, - sym_concatenation, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6430), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3331), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1507), 4, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1018), 13, sym_file_descriptor, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1505), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [121690] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214337] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 4, - sym_file_descriptor, + ACTIONS(9783), 1, + aux_sym_concatenation_token1, + ACTIONS(9826), 1, sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1509), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(4080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(962), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [121720] = 3, - ACTIONS(3), 1, + [214371] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1513), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(980), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(982), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [121750] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3446), 1, - aux_sym_for_statement_repeat1, - STATE(3828), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6434), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3444), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121802] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - sym_special_character, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - STATE(1970), 1, - aux_sym_for_statement_repeat1, - STATE(2209), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6438), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1939), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [121854] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214399] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 4, - sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1517), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1012), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1014), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [121884] = 5, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214427] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6458), 1, + ACTIONS(9828), 1, sym_special_character, - STATE(2292), 1, + STATE(4079), 1, aux_sym_for_statement_repeat1, - ACTIONS(6067), 8, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(6069), 12, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [121918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6045), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6047), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1054), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [121948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6051), 2, + ACTIONS(1056), 11, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6053), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_AMP_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, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [121978] = 5, - ACTIONS(57), 1, + [214459] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - STATE(2534), 1, + STATE(4080), 1, aux_sym_concatenation_repeat1, - ACTIONS(1359), 5, - anon_sym_EQ, + ACTIONS(9831), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(966), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1361), 15, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(968), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_special_character, - sym_test_operator, - [122012] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [214491] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6055), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6057), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(988), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(990), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122042] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214519] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6059), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6061), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1020), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1022), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122072] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214547] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6063), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6065), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3415), 1, anon_sym_PIPE, - anon_sym_RPAREN, + ACTIONS(3441), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3445), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122102] = 2, - ACTIONS(3), 1, + [214581] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(6462), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + ACTIONS(8892), 1, + anon_sym_PIPE, + ACTIONS(9834), 1, + anon_sym_LT_LT, + ACTIONS(9836), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9838), 1, + sym_file_descriptor, + ACTIONS(9820), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(8894), 3, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(9818), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4065), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9816), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122130] = 5, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [214623] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6464), 1, - sym_special_character, - STATE(2351), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 6, + STATE(4076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9783), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(3846), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1434), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122164] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [214655] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(5334), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(5336), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3443), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3445), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122194] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - sym_special_character, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - STATE(1974), 1, - aux_sym_for_statement_repeat1, - STATE(2110), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6467), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1973), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [122246] = 2, - ACTIONS(3), 1, + [214685] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6469), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(3588), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6471), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3590), 13, + sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [214713] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6471), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1034), 13, + sym_file_descriptor, + sym_concat, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [214741] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(980), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122330] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6442), 1, - sym_special_character, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - STATE(1957), 1, - aux_sym_for_statement_repeat1, - STATE(2212), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6473), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1954), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [122382] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6475), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(982), 13, + sym_file_descriptor, + sym_concat, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [214769] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [122418] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5708), 1, - anon_sym_DOLLAR, - ACTIONS(5710), 1, - sym_special_character, - ACTIONS(5712), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, - anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, - sym_semgrep_named_ellipsis, - STATE(1828), 1, - aux_sym_for_statement_repeat1, - STATE(1907), 1, - sym_concatenation, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6477), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1823), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [122470] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6479), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1038), 13, + sym_file_descriptor, sym_concat, - STATE(2360), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 6, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [214797] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1000), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1002), 13, + sym_file_descriptor, + sym_concat, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122504] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [214825] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6075), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6077), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(984), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(986), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122534] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [214853] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(5808), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(5810), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9796), 1, + sym_special_character, + STATE(4123), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1416), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1418), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122594] = 6, - ACTIONS(3), 1, + [214885] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6482), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + ACTIONS(1000), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [122630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1420), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1422), 13, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1002), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122660] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [214913] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1426), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122690] = 3, - ACTIONS(3), 1, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(9586), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9598), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9600), 1, + anon_sym_BQUOTE, + ACTIONS(9602), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9840), 1, + aux_sym_statements_token1, + ACTIONS(9844), 1, + anon_sym_RBRACE3, + STATE(4962), 1, + sym_expansion_max_length_expression, + ACTIONS(9842), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(4814), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + STATE(5562), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [214967] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1428), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(9824), 1, sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1430), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6484), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + STATE(4079), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1739), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [122748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6081), 2, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 11, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6083), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [214999] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1050), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122778] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215027] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6085), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6087), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1046), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122808] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215055] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6089), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6091), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1004), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1006), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122838] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215083] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6093), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6095), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1048), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [215111] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(994), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215139] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9824), 1, + sym_special_character, + STATE(4079), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [122868] = 6, - ACTIONS(3), 1, + [215171] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6486), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, + ACTIONS(1008), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1010), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215199] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9705), 1, + anon_sym_LT_LT_LT, + ACTIONS(9822), 1, + sym_file_descriptor, + ACTIONS(8951), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(9820), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4283), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(9818), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(8953), 4, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(9816), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [122904] = 3, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [215239] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1439), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1441), 13, + ACTIONS(1004), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1006), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122934] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215267] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1443), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1445), 13, + STATE(4076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9783), 2, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122964] = 3, + aux_sym_concatenation_token1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [215299] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1447), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1449), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [122994] = 3, - ACTIONS(3), 1, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(9586), 1, + anon_sym_LPAREN, + ACTIONS(9588), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9590), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9594), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9598), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9600), 1, + anon_sym_BQUOTE, + ACTIONS(9602), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9846), 1, + aux_sym_statements_token1, + ACTIONS(9850), 1, + anon_sym_RBRACE3, + STATE(4962), 1, + sym_expansion_max_length_expression, + ACTIONS(9848), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + STATE(4838), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + STATE(5975), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [215353] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5328), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(5330), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1032), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1034), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215381] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(996), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(998), 13, + sym_file_descriptor, + sym_concat, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215409] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1447), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1449), 13, + ACTIONS(1030), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6488), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [123090] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215437] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6099), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6101), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1028), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1030), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1453), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6359), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(6361), 13, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123180] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215465] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6103), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6105), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1012), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1014), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123210] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215493] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6107), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6109), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1016), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1018), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123240] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215521] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6113), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6115), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123270] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215549] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6117), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6119), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(966), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(968), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123300] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215577] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 4, + ACTIONS(9705), 1, + anon_sym_LT_LT_LT, + ACTIONS(9822), 1, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1396), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(8955), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + ACTIONS(9820), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4272), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(9818), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(8957), 4, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(9816), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [123330] = 14, - ACTIONS(57), 1, + [215617] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6492), 1, + ACTIONS(9796), 1, sym_special_character, - STATE(3231), 1, + STATE(4123), 1, aux_sym_for_statement_repeat1, - STATE(3563), 1, - sym_concatenation, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6490), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3443), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [123382] = 3, - ACTIONS(3), 1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [215649] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1455), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(9852), 6, + aux_sym_for_statement_token1, + anon_sym_DASH2, + anon_sym_PLUS2, anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1457), 13, - sym_concat, - anon_sym_RBRACE, + aux_sym_number_token1, + aux_sym_number_token2, + ACTIONS(9854), 14, + sym_variable_name, + anon_sym_LPAREN, + anon_sym_BANG, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + anon_sym_TILDE, anon_sym_DQUOTE, sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123412] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6496), 1, - anon_sym_DOLLAR, - ACTIONS(6498), 1, - sym_special_character, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6506), 1, anon_sym_BQUOTE, - ACTIONS(6510), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6512), 1, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - STATE(2012), 1, - aux_sym_for_statement_repeat1, - STATE(2352), 1, - sym_concatenation, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6494), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2006), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [123464] = 3, - ACTIONS(3), 1, + sym_semgrep_metavariable, + [215677] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1540), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1542), 13, + ACTIONS(1040), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1042), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123494] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215705] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1465), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1467), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123524] = 3, - ACTIONS(3), 1, + ACTIONS(4394), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4396), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [215733] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1469), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1471), 13, + ACTIONS(984), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(986), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123554] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215761] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1473), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1475), 13, + ACTIONS(1020), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1022), 13, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123584] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [215789] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6514), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(9856), 1, sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(6516), 13, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6128), 2, + STATE(4123), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1056), 11, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6130), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [215821] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1038), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123644] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215849] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6132), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6134), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + STATE(4076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(9783), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1741), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [215881] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1040), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1042), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123674] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [215909] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6136), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6138), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1008), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1010), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123704] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6520), 1, - sym_special_character, - STATE(1974), 1, - aux_sym_for_statement_repeat1, - STATE(2110), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6518), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2048), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [123756] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6520), 1, - sym_special_character, - STATE(1970), 1, - aux_sym_for_statement_repeat1, - STATE(2209), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6522), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2050), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [123808] = 14, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [215937] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(6440), 1, - anon_sym_DOLLAR, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, - anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6520), 1, + ACTIONS(9824), 1, sym_special_character, - STATE(1957), 1, + STATE(4079), 1, aux_sym_for_statement_repeat1, - STATE(2212), 1, - sym_concatenation, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6524), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2051), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [123860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6140), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6142), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3846), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3848), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123890] = 3, - ACTIONS(3), 1, + [215969] = 11, + ACTIONS(71), 1, sym_comment, - ACTIONS(6144), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6146), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3415), 1, anon_sym_PIPE, - anon_sym_RPAREN, + ACTIONS(3441), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + [216013] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3730), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3732), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym_semgrep_metavar_eq, + sym_semgrep_metavar_pluseq, + [216041] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(992), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(994), 13, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [123920] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [216069] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1477), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, + ACTIONS(9859), 1, sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1479), 13, + STATE(4172), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [216100] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(966), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(968), 12, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123950] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216127] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1481), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1483), 13, + ACTIONS(1012), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1014), 12, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [123980] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216154] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1485), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1487), 13, + ACTIONS(1016), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1018), 12, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [124010] = 3, - ACTIONS(3), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216181] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1489), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1491), 13, + ACTIONS(1040), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1042), 12, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [124040] = 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216208] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1495), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [124070] = 14, - ACTIONS(57), 1, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(9861), 1, + aux_sym_statements_token1, + STATE(5454), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [216247] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, + ACTIONS(9859), 1, sym_special_character, - STATE(3278), 1, + STATE(4172), 1, aux_sym_for_statement_repeat1, - STATE(3693), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6526), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3437), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124122] = 3, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [216278] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6150), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6152), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9863), 1, + aux_sym_statements_token1, + STATE(5430), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [216317] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1020), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1022), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216344] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(9865), 1, + aux_sym_statements_token1, + STATE(5455), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [216383] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1036), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1038), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124152] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [216410] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6154), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6156), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124182] = 3, - ACTIONS(3), 1, + [216437] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6158), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6160), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1000), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1002), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124212] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [216464] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6162), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6164), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(992), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(994), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124242] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [216491] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6166), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6168), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(988), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(990), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124272] = 3, + aux_sym_concatenation_token1, + [216518] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6172), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(9867), 1, + aux_sym_statements_token1, + STATE(5733), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -126765,128 +249385,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124302] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6496), 1, - anon_sym_DOLLAR, - ACTIONS(6498), 1, - sym_special_character, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6506), 1, - anon_sym_BQUOTE, - ACTIONS(6510), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6512), 1, - sym_semgrep_named_ellipsis, - STATE(2014), 1, - aux_sym_for_statement_repeat1, - STATE(2377), 1, - sym_concatenation, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6528), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2032), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1497), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1499), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [124384] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3328), 1, - aux_sym_for_statement_repeat1, - STATE(3804), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6530), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3325), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124436] = 3, + [216557] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6176), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6178), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(9869), 1, + aux_sym_statements_token1, + STATE(5391), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -126895,52 +249415,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124466] = 3, - ACTIONS(3), 1, + [216596] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6182), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6184), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1024), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1026), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124496] = 3, + aux_sym_concatenation_token1, + [216623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 2, + ACTIONS(4471), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6199), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -126949,25 +249468,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124526] = 3, + [216660] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6207), 2, + ACTIONS(4473), 1, + aux_sym_statements_token1, + ACTIONS(9006), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6209), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(3493), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3495), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(8798), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -126976,25 +249497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124556] = 3, + [216697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 2, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9873), 1, + sym_concat, + STATE(4204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(978), 2, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6217), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(976), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -127003,182 +249520,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124586] = 14, - ACTIONS(57), 1, + sym_special_character, + [216730] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, + ACTIONS(9859), 1, sym_special_character, - STATE(3346), 1, + STATE(4172), 1, aux_sym_for_statement_repeat1, - STATE(3617), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6532), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3306), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6219), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6221), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124668] = 3, - ACTIONS(3), 1, + [216761] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6226), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6228), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(984), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(986), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124698] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3298), 1, - aux_sym_for_statement_repeat1, - STATE(3702), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6534), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3293), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124750] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [216788] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6232), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(6234), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1044), 7, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1046), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124780] = 3, + aux_sym_concatenation_token1, + [216815] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6244), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(9875), 1, + aux_sym_statements_token1, + STATE(5892), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -127187,215 +249628,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [216854] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [124810] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3386), 1, - aux_sym_for_statement_repeat1, - STATE(3707), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6536), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3385), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124862] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6378), 1, - anon_sym_DOLLAR, - ACTIONS(6380), 1, - sym_special_character, - ACTIONS(6382), 1, - anon_sym_DQUOTE, - ACTIONS(6384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6388), 1, - anon_sym_BQUOTE, - ACTIONS(6392), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6394), 1, - sym_semgrep_named_ellipsis, - STATE(2231), 1, - aux_sym_for_statement_repeat1, - STATE(2568), 1, - sym_concatenation, - ACTIONS(6390), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6538), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2230), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124914] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3303), 1, - aux_sym_for_statement_repeat1, - STATE(3803), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6540), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3459), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [124966] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3466), 1, - aux_sym_for_statement_repeat1, - STATE(3794), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6542), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3465), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125018] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6378), 1, - anon_sym_DOLLAR, - ACTIONS(6380), 1, - sym_special_character, - ACTIONS(6382), 1, - anon_sym_DQUOTE, - ACTIONS(6384), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6386), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6388), 1, - anon_sym_BQUOTE, - ACTIONS(6392), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6394), 1, - sym_semgrep_named_ellipsis, - STATE(2243), 1, - aux_sym_for_statement_repeat1, - STATE(2535), 1, - sym_concatenation, - ACTIONS(6390), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6544), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2242), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125070] = 3, - ACTIONS(3), 1, + [216881] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6250), 2, + ACTIONS(1048), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 12, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6252), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216908] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 7, anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1050), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216935] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1028), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1030), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [216962] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(9877), 1, + aux_sym_statements_token1, + STATE(5344), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -127404,101 +249754,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [217001] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [125100] = 14, - ACTIONS(57), 1, + [217028] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3297), 1, - aux_sym_for_statement_repeat1, - STATE(3691), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6546), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3294), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125152] = 14, - ACTIONS(57), 1, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217055] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, + ACTIONS(1004), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1006), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [217082] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9859), 1, sym_special_character, - STATE(3262), 1, + STATE(4172), 1, aux_sym_for_statement_repeat1, - STATE(3777), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6548), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3351), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125204] = 3, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217113] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6256), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(9879), 1, + aux_sym_statements_token1, + STATE(5389), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -127507,25 +249882,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [125234] = 3, + [217152] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 2, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, sym_file_descriptor, - anon_sym_LF, - ACTIONS(6260), 20, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + ACTIONS(9881), 1, + aux_sym_statements_token1, + STATE(5432), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -127534,996 +249912,772 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [217191] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1008), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1010), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [125264] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3442), 1, - aux_sym_for_statement_repeat1, - STATE(3684), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6550), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3428), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125316] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3368), 1, - aux_sym_for_statement_repeat1, - STATE(3642), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6552), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3347), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125368] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3433), 1, - aux_sym_for_statement_repeat1, - STATE(3674), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6554), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3430), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125420] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3277), 1, - aux_sym_for_statement_repeat1, - STATE(3811), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6556), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3274), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125472] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3305), 1, - aux_sym_for_statement_repeat1, - STATE(3813), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6558), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3304), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125524] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3339), 1, - aux_sym_for_statement_repeat1, - STATE(3681), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6560), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3338), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125576] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6496), 1, - anon_sym_DOLLAR, - ACTIONS(6498), 1, - sym_special_character, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6504), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6506), 1, - anon_sym_BQUOTE, - ACTIONS(6510), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6512), 1, - sym_semgrep_named_ellipsis, - STATE(1999), 1, - aux_sym_for_statement_repeat1, - STATE(2362), 1, - sym_concatenation, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6562), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2022), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125628] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3372), 1, - aux_sym_for_statement_repeat1, - STATE(3689), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6564), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3371), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125680] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3396), 1, - aux_sym_for_statement_repeat1, - STATE(3749), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6566), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3480), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125732] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3427), 1, - aux_sym_for_statement_repeat1, - STATE(3656), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6568), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3426), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125784] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3453), 1, - aux_sym_for_statement_repeat1, - STATE(3751), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6570), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3452), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125836] = 14, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [217218] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3435), 1, - aux_sym_for_statement_repeat1, - STATE(3619), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6572), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3408), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125888] = 3, - ACTIONS(3), 1, + ACTIONS(996), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(998), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [217245] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1501), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1503), 13, + ACTIONS(980), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(982), 12, + sym_file_descriptor, + sym_concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [217272] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1032), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1034), 12, + sym_file_descriptor, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [125918] = 14, - ACTIONS(57), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [217299] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, + ACTIONS(9883), 1, sym_special_character, - STATE(3272), 1, + STATE(4172), 1, aux_sym_for_statement_repeat1, - STATE(3668), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6574), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3269), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [125970] = 14, - ACTIONS(57), 1, + ACTIONS(1054), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1056), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217330] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3384), 1, - aux_sym_for_statement_repeat1, - STATE(3651), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6576), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3381), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126022] = 14, - ACTIONS(57), 1, + ACTIONS(2886), 1, + anon_sym_LT_LT_LT, + ACTIONS(2916), 1, + sym_file_descriptor, + ACTIONS(9886), 1, + aux_sym_statements_token1, + STATE(5346), 1, + sym_heredoc_expression, + ACTIONS(2878), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(2884), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(2882), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [217369] = 9, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3454), 1, - aux_sym_for_statement_repeat1, - STATE(3745), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6578), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3445), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126074] = 14, - ACTIONS(57), 1, + ACTIONS(3465), 1, + anon_sym_LT_LT, + ACTIONS(9069), 1, + sym_file_descriptor, + ACTIONS(9894), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9888), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9892), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9890), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3445), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8826), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [217407] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3271), 1, - aux_sym_for_statement_repeat1, - STATE(3793), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6580), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3270), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126126] = 14, - ACTIONS(57), 1, + ACTIONS(9387), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9385), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217433] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3291), 1, - aux_sym_for_statement_repeat1, - STATE(3826), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6582), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3290), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126178] = 14, - ACTIONS(57), 1, + ACTIONS(9896), 1, + anon_sym_PIPE, + ACTIONS(9899), 1, + anon_sym_PIPE_AMP, + STATE(4176), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9296), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9298), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217465] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3312), 1, - aux_sym_for_statement_repeat1, - STATE(3712), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6584), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3311), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126230] = 14, - ACTIONS(57), 1, + ACTIONS(9504), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9502), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217491] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3333), 1, - aux_sym_for_statement_repeat1, - STATE(3631), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6586), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3332), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126282] = 3, + ACTIONS(9163), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9165), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217517] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217543] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1739), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217569] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9212), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9210), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217595] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9469), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9471), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217621] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9473), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9475), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1507), 13, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9873), 1, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [126312] = 3, + STATE(4204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [217679] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9425), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9427), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217705] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1511), 13, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9873), 1, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [126342] = 3, - ACTIONS(3), 1, + STATE(4204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [217737] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9170), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9172), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217763] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9465), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9467), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [217789] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9174), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9176), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217815] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3417), 1, + anon_sym_LT_LT, + ACTIONS(8868), 1, + sym_file_descriptor, + ACTIONS(9908), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9902), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(9906), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9904), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3304), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8734), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [217853] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1513), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1515), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [126372] = 6, + ACTIONS(9365), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9363), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6588), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, + ACTIONS(9910), 1, + aux_sym_concatenation_token1, + ACTIONS(9913), 1, + sym_concat, + STATE(4192), 1, + aux_sym_concatenation_repeat1, + ACTIONS(968), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(966), 13, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [217911] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9834), 1, + anon_sym_LT_LT, + ACTIONS(9836), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9838), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + ACTIONS(9820), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9818), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4084), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9816), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [126408] = 6, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [217949] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6590), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [217975] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4805), 1, + anon_sym_LT_LT, + ACTIONS(4807), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9724), 1, + sym_file_descriptor, + ACTIONS(4803), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + ACTIONS(9670), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9668), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4008), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(9666), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [126444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1517), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1519), 13, - sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [126474] = 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [218013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(8838), 1, + aux_sym_statements_token1, + ACTIONS(9922), 1, + anon_sym_LT_LT_LT, + ACTIONS(9925), 1, + sym_file_descriptor, + ACTIONS(8836), 2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(9919), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4196), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(9916), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [218049] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3495), 1, + anon_sym_LT_LT, + ACTIONS(9006), 1, + sym_file_descriptor, + ACTIONS(9934), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9928), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + ACTIONS(9932), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9930), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3471), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8796), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [126502] = 3, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [218087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 9, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - sym_word, - ACTIONS(1394), 13, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9873), 1, sym_concat, - anon_sym_RBRACE, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [126532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1394), 4, + STATE(4204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3848), 2, sym_file_descriptor, - sym_concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1392), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(3846), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -128532,280 +250686,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [126562] = 6, - ACTIONS(3), 1, + [218119] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6592), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, + ACTIONS(9936), 1, + anon_sym_PIPE, + ACTIONS(9938), 1, + anon_sym_PIPE_AMP, + STATE(4176), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9371), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9373), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218151] = 9, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3495), 1, + anon_sym_LT_LT, + ACTIONS(9335), 1, + sym_file_descriptor, + ACTIONS(9934), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9940), 2, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + ACTIONS(9944), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(9942), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(3604), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(8896), 5, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [126598] = 6, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [218189] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, + ACTIONS(9355), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9357), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [218215] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9401), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [126634] = 14, - ACTIONS(57), 1, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9399), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218241] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6398), 1, - anon_sym_DOLLAR, - ACTIONS(6400), 1, - sym_special_character, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6404), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6408), 1, - anon_sym_BQUOTE, - ACTIONS(6412), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6414), 1, - sym_semgrep_named_ellipsis, - STATE(3121), 1, - aux_sym_for_statement_repeat1, - STATE(3206), 1, - sym_concatenation, - ACTIONS(6410), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6596), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3120), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126686] = 6, + ACTIONS(9409), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9407), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_QMARK, - ACTIONS(6424), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6428), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6598), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(6422), 13, - anon_sym_AMP_AMP, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9946), 1, + sym_concat, + STATE(4192), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(960), 13, anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [126722] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6398), 1, - anon_sym_DOLLAR, - ACTIONS(6400), 1, - sym_special_character, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6404), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6406), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6408), 1, - anon_sym_BQUOTE, - ACTIONS(6412), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6414), 1, - sym_semgrep_named_ellipsis, - STATE(3123), 1, - aux_sym_for_statement_repeat1, - STATE(3212), 1, - sym_concatenation, - ACTIONS(6410), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6600), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3122), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126774] = 14, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1961), 1, - anon_sym_DOLLAR, - ACTIONS(1967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, - anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6436), 1, - sym_special_character, - STATE(3440), 1, - aux_sym_for_statement_repeat1, - STATE(3703), 1, - sym_concatenation, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6602), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3439), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [126826] = 3, - ACTIONS(57), 1, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [218299] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1451), 6, + ACTIONS(9431), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 15, - sym_concat, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9429), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218325] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1743), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [126855] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [218351] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6144), 3, + ACTIONS(3846), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 11, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6146), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218377] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9367), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9369), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [126884] = 3, + [218403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6103), 3, + ACTIONS(9871), 1, + aux_sym_concatenation_token1, + ACTIONS(9873), 1, + sym_concat, + STATE(4204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1745), 2, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6105), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(1743), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -128814,366 +250954,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [126913] = 3, - ACTIONS(3), 1, + [218435] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6107), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6109), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9461), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9463), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [126942] = 3, - ACTIONS(3), 1, + [218461] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6150), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6152), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1745), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [126971] = 3, - ACTIONS(3), 1, + [218487] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6154), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6156), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1741), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127000] = 3, - ACTIONS(3), 1, + [218513] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6158), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6160), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9130), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9132), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [127029] = 3, - ACTIONS(3), 1, + [218539] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6162), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6164), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9248), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9250), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [127058] = 5, - ACTIONS(57), 1, + [218565] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6604), 1, - sym_special_character, - STATE(2524), 1, - aux_sym_for_statement_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, + ACTIONS(9186), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9184), 11, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127091] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [218591] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6055), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6057), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(3834), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(3836), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127120] = 3, - ACTIONS(3), 1, + [218617] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6113), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6115), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9180), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9182), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [127149] = 3, - ACTIONS(3), 1, + [218643] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6166), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6168), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9300), 1, anon_sym_PIPE, + ACTIONS(9948), 1, anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(4199), 1, + aux_sym_pipeline_repeat1, + ACTIONS(9296), 6, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9298), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127178] = 3, - ACTIONS(3), 1, + [218675] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6170), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6172), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9435), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9433), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127207] = 3, - ACTIONS(3), 1, + [218701] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6176), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6178), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9359), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9361), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [127236] = 3, - ACTIONS(3), 1, + [218727] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6182), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6184), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9439), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9437), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127265] = 5, - ACTIONS(57), 1, + [218753] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - STATE(2534), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, + ACTIONS(9387), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9385), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127298] = 3, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [218778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6197), 3, + ACTIONS(968), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6199), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(966), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129182,24 +251276,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127327] = 3, + aux_sym_concatenation_token1, + [218803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6207), 3, + ACTIONS(982), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6209), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(980), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129208,24 +251298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127356] = 3, + aux_sym_concatenation_token1, + [218828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6215), 3, + ACTIONS(1034), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6217), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1032), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129234,24 +251320,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127385] = 3, + aux_sym_concatenation_token1, + [218853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6219), 3, + ACTIONS(1030), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6221), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1028), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129260,24 +251342,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127414] = 3, + aux_sym_concatenation_token1, + [218878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6226), 3, + ACTIONS(9951), 1, + sym_special_character, + STATE(4247), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3836), 2, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6228), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(3834), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129286,76 +251367,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127443] = 3, - ACTIONS(57), 1, + [218907] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1392), 6, + ACTIONS(9508), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1394), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6232), 3, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9506), 10, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6234), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP_AMP, anon_sym_GT_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_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127501] = 3, + [218932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6242), 3, + ACTIONS(9951), 1, + sym_special_character, + STATE(4247), 1, + aux_sym_for_statement_repeat1, + ACTIONS(3848), 2, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6244), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(3846), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129364,24 +251413,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127530] = 3, + [218961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 3, + ACTIONS(998), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6252), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(996), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129390,24 +251434,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127559] = 3, + aux_sym_concatenation_token1, + [218986] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6254), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6256), 18, + ACTIONS(943), 1, + aux_sym_statements_token1, + ACTIONS(9953), 1, + aux_sym_for_statement_token1, + ACTIONS(9957), 1, + anon_sym_DQUOTE, + STATE(4738), 1, + sym_orig_simple_variable_name, + STATE(4759), 1, + sym_string, + ACTIONS(941), 4, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + anon_sym_in, + ACTIONS(9955), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [219021] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9951), 1, + sym_special_character, + STATE(4247), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129416,76 +251486,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127588] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1416), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1418), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127617] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1420), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1422), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127646] = 3, + [219050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 3, + ACTIONS(1002), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6001), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129494,50 +251507,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127675] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219075] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1426), 15, + ACTIONS(994), 3, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(992), 14, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127704] = 3, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6258), 3, + ACTIONS(990), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6260), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129546,24 +251551,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219125] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3834), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3836), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [127733] = 3, + [219150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6059), 3, + ACTIONS(986), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6061), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(984), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129572,52 +251595,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127762] = 5, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219175] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(9951), 1, sym_special_character, - STATE(2351), 1, + STATE(4247), 1, aux_sym_for_statement_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, + ACTIONS(1745), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1743), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127795] = 3, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [219204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6117), 3, + ACTIONS(1014), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6119), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1012), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129626,78 +251641,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127824] = 5, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219229] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(1042), 3, + sym_file_descriptor, sym_concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 5, - anon_sym_EQ, + aux_sym_statements_token1, + ACTIONS(1040), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1379), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127857] = 3, - ACTIONS(57), 1, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219254] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1428), 6, + ACTIONS(3846), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1430), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(3848), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127886] = 3, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6063), 3, + ACTIONS(1022), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6065), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129706,24 +251707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127915] = 3, + aux_sym_concatenation_token1, + [219304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 3, + ACTIONS(1038), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6077), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1036), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129732,78 +251729,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [127944] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6610), 1, - sym_special_character, - STATE(2513), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1434), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [127977] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219329] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1439), 6, + ACTIONS(9411), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1441), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9413), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128006] = 3, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5808), 3, + ACTIONS(1006), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5810), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1004), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129812,134 +251773,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [128035] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219379] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1445), 15, + ACTIONS(1026), 3, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(1024), 14, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128064] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6613), 1, - sym_concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 14, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128097] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6374), 1, - sym_concat, - STATE(2509), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128130] = 5, - ACTIONS(57), 1, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219404] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 1, + ACTIONS(9959), 1, sym_special_character, - STATE(2513), 1, + STATE(4247), 1, aux_sym_for_statement_repeat1, - ACTIONS(5929), 5, - anon_sym_EQ, + ACTIONS(1056), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1054), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128163] = 3, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [219433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6003), 3, + ACTIONS(1050), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6005), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -129948,86 +251841,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [128192] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [219458] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1414), 15, + ACTIONS(1046), 3, + sym_file_descriptor, sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(1044), 14, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128221] = 13, - ACTIONS(57), 1, - sym_comment, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, - sym_semgrep_named_ellipsis, - ACTIONS(6620), 1, - anon_sym_RBRACK, - ACTIONS(6622), 1, - sym_special_character, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6618), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 7, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [128270] = 3, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6140), 3, + ACTIONS(1050), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6142), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 14, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -130036,1130 +251885,1517 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [219508] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9461), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9463), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219533] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9465), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9467), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128299] = 5, - ACTIONS(57), 1, + [219558] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6624), 1, - sym_special_character, - STATE(2524), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 5, - anon_sym_EQ, + ACTIONS(9401), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1434), 14, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9399), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219583] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9431), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9429), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128332] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219608] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 6, + ACTIONS(9435), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9433), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128361] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219633] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6081), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6083), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9439), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9437), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128390] = 3, - ACTIONS(57), 1, + [219658] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 6, + ACTIONS(9504), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9502), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128419] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219683] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6085), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6087), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9403), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9405), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128448] = 3, - ACTIONS(57), 1, + [219708] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6469), 5, - anon_sym_EQ, + ACTIONS(9473), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6627), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9475), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128477] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219733] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, + ACTIONS(9409), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9407), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128506] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219758] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, + ACTIONS(9163), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9165), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128535] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219783] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6089), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6091), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(4568), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4570), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128564] = 3, - ACTIONS(3), 1, + [219808] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6093), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6095), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(4568), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4570), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128593] = 5, - ACTIONS(57), 1, + [219833] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6631), 1, - sym_concat, - STATE(2360), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 5, - anon_sym_EQ, + ACTIONS(9186), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1379), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9184), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128626] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219858] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5334), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5336), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9455), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9457), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [128655] = 3, - ACTIONS(57), 1, + [219883] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1396), 6, + ACTIONS(1739), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1398), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1741), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128684] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219908] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1455), 6, + ACTIONS(9170), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1457), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9172), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128713] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219933] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1459), 6, + ACTIONS(9365), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1461), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9363), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128742] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219958] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1540), 6, + ACTIONS(9174), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1542), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9176), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128771] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [219983] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1465), 6, + ACTIONS(9130), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1467), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9132), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128800] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220008] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1469), 6, + ACTIONS(9512), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1471), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9510), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128829] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220033] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1473), 6, + ACTIONS(9497), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9495), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128858] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220058] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1477), 6, + ACTIONS(9397), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128887] = 3, - ACTIONS(57), 1, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9395), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220083] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1481), 6, + ACTIONS(9516), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1483), 15, - sym_concat, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9514), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1010), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1008), 14, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128916] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [220133] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1485), 6, + ACTIONS(9441), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1487), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9443), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128945] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220158] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1489), 6, + ACTIONS(9425), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1491), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9427), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [128974] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220183] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1493), 6, + ACTIONS(1743), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 15, - sym_concat, - anon_sym_RPAREN, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1745), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220208] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 3, + sym_file_descriptor, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1016), 14, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129003] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [220233] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1497), 6, + ACTIONS(9180), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1499), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9182), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129032] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220258] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1501), 6, + ACTIONS(9417), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1503), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9415), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129061] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220283] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1505), 6, + ACTIONS(9423), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1507), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9421), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129090] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220308] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1509), 6, + ACTIONS(9491), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1511), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9489), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129119] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220333] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1513), 6, + ACTIONS(9453), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1515), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9451), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129148] = 3, - ACTIONS(57), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220358] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1517), 6, + ACTIONS(9479), 7, anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1519), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(9477), 10, + sym_file_descriptor, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129177] = 3, - ACTIONS(3), 1, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [220383] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6045), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6047), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9469), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(9471), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_LT, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129206] = 3, - ACTIONS(57), 1, + [220408] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9962), 1, + aux_sym_for_statement_token1, + ACTIONS(9968), 1, + sym_semgrep_metavariable, + ACTIONS(9970), 1, + sym_variable_name, + STATE(2725), 1, + sym_subscript, + STATE(4935), 1, + sym_command_substitution, + ACTIONS(9966), 2, + anon_sym_DOLLAR, + anon_sym__, + ACTIONS(9964), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_POUND, + [220448] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9155), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9157), 1, + anon_sym_BQUOTE, + ACTIONS(9159), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9976), 1, + sym_variable_name, + STATE(4935), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(9972), 3, + aux_sym_for_statement_token1, + anon_sym_DOLLAR, + anon_sym__, + ACTIONS(9974), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AT, + anon_sym_POUND, + sym_semgrep_metavariable, + [220482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9980), 1, + aux_sym_statements_token1, + ACTIONS(9978), 15, + anon_sym_SEMI, + anon_sym_AMP, + aux_sym_c_expression_not_assignment_token1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [220506] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9986), 1, + anon_sym_DOLLAR, + ACTIONS(9988), 1, + anon_sym_DQUOTE, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220549] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10002), 1, + anon_sym_DOLLAR, + ACTIONS(10004), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220592] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10006), 1, + anon_sym_DOLLAR, + ACTIONS(10008), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220635] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10010), 1, + anon_sym_DOLLAR, + ACTIONS(10012), 1, + anon_sym_DQUOTE, + STATE(4294), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220678] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10014), 1, + anon_sym_DOLLAR, + ACTIONS(10016), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220721] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10018), 1, + anon_sym_DOLLAR, + ACTIONS(10020), 1, + anon_sym_DQUOTE, + STATE(4296), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220764] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10022), 1, + anon_sym_DOLLAR, + ACTIONS(10024), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220807] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10026), 1, + anon_sym_DOLLAR, + ACTIONS(10028), 1, + anon_sym_DQUOTE, + STATE(4298), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220850] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10030), 1, + anon_sym_DOLLAR, + ACTIONS(10032), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220893] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129235] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10034), 1, + anon_sym_DOLLAR, + ACTIONS(10036), 1, + anon_sym_DQUOTE, + STATE(4300), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220936] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6633), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129264] = 3, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10038), 1, + anon_sym_DOLLAR, + ACTIONS(10040), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [220979] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6099), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6101), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129293] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10042), 1, + anon_sym_DOLLAR, + ACTIONS(10044), 1, + anon_sym_DQUOTE, + STATE(4303), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221022] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129322] = 3, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10046), 1, + anon_sym_DOLLAR, + ACTIONS(10048), 1, + anon_sym_DQUOTE, + STATE(4314), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221065] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6051), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6053), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129351] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10050), 1, + anon_sym_DOLLAR, + ACTIONS(10052), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221108] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1400), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1402), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129380] = 3, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10054), 1, + anon_sym_DOLLAR, + ACTIONS(10056), 1, + anon_sym_DQUOTE, + STATE(4305), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221151] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6130), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129409] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10058), 1, + anon_sym_DOLLAR, + ACTIONS(10060), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221194] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1406), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129438] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10062), 1, + anon_sym_DOLLAR, + ACTIONS(10064), 1, + anon_sym_DQUOTE, + STATE(4307), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221237] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 15, - sym_concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129467] = 13, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10066), 1, + anon_sym_DOLLAR, + ACTIONS(10068), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221280] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10070), 1, anon_sym_DOLLAR, - ACTIONS(3997), 1, + ACTIONS(10072), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + STATE(4310), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221323] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6622), 1, - sym_special_character, - ACTIONS(6635), 1, - anon_sym_RBRACK, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6618), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 7, - sym_string, + ACTIONS(10074), 1, + anon_sym_DOLLAR, + ACTIONS(10076), 1, + anon_sym_DQUOTE, + STATE(4320), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [129516] = 3, + [221366] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6132), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6134), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129545] = 3, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10078), 1, + anon_sym_DOLLAR, + ACTIONS(10080), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6136), 3, + ACTIONS(1745), 2, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6138), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, + aux_sym_statements_token1, + ACTIONS(1743), 13, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -131168,21650 +253404,24955 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [129574] = 3, - ACTIONS(57), 1, + [221432] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6637), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129603] = 3, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10082), 1, + anon_sym_DOLLAR, + ACTIONS(10084), 1, + anon_sym_DQUOTE, + STATE(4313), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221475] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(5330), 18, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [129632] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10086), 1, + anon_sym_DOLLAR, + ACTIONS(10088), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221518] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1515), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129660] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10090), 1, + anon_sym_DOLLAR, + ACTIONS(10092), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221561] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1385), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129688] = 11, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10094), 1, + anon_sym_DOLLAR, + ACTIONS(10096), 1, + anon_sym_DQUOTE, + STATE(4316), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221604] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10098), 1, + anon_sym_DOLLAR, + ACTIONS(10100), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221647] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6639), 1, + ACTIONS(10102), 1, anon_sym_DOLLAR, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6618), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 7, - sym_string, + ACTIONS(10104), 1, + anon_sym_DQUOTE, + STATE(4318), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [129732] = 11, - ACTIONS(57), 1, + [221690] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - ACTIONS(5794), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5796), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5798), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5802), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5804), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6643), 1, + ACTIONS(10106), 1, anon_sym_DOLLAR, - ACTIONS(5800), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6641), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(773), 7, - sym_string, + ACTIONS(10108), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [129776] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1400), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1402), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129804] = 3, - ACTIONS(57), 1, + [221733] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1439), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1441), 15, - sym_concat, - anon_sym_AMP_AMP, + ACTIONS(3836), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3834), 13, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129832] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1443), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1445), 15, - sym_concat, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129860] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1447), 5, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129888] = 11, - ACTIONS(57), 1, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [221756] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6504), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6506), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6510), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6512), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6647), 1, + ACTIONS(10110), 1, anon_sym_DOLLAR, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6645), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2160), 7, - sym_string, + ACTIONS(10112), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [129932] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1404), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1406), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129960] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1408), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1410), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [129988] = 11, - ACTIONS(57), 1, + [221799] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(485), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10114), 1, anon_sym_DOLLAR, - ACTIONS(5568), 1, + ACTIONS(10116), 1, anon_sym_DQUOTE, - ACTIONS(5570), 1, + STATE(4326), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221842] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5572), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5574), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5578), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5580), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6649), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(361), 7, - sym_string, + ACTIONS(10118), 1, + anon_sym_DOLLAR, + ACTIONS(10120), 1, + anon_sym_DQUOTE, + STATE(4325), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130032] = 11, - ACTIONS(57), 1, + [221885] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10122), 1, anon_sym_DOLLAR, - ACTIONS(6382), 1, + ACTIONS(10124), 1, anon_sym_DQUOTE, - ACTIONS(6384), 1, + STATE(4330), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [221928] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6386), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6388), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6392), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6394), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6390), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6651), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2293), 7, - sym_string, + ACTIONS(10126), 1, + anon_sym_DOLLAR, + ACTIONS(10128), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130076] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1412), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1414), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130104] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1451), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1453), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130132] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1455), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1457), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130160] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1459), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1461), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130188] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1540), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1542), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130216] = 3, - ACTIONS(57), 1, + [221971] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1467), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130244] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10130), 1, + anon_sym_DOLLAR, + ACTIONS(10132), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222014] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1469), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1471), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130272] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10134), 1, + anon_sym_DOLLAR, + ACTIONS(10136), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222057] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1473), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1475), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130300] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10138), 1, + anon_sym_DOLLAR, + ACTIONS(10140), 1, + anon_sym_DQUOTE, + STATE(4328), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222100] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1477), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1479), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130328] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10142), 1, + anon_sym_DOLLAR, + ACTIONS(10144), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222143] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1483), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130356] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10146), 1, + anon_sym_DOLLAR, + ACTIONS(10148), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222186] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1487), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130384] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10150), 1, + anon_sym_DOLLAR, + ACTIONS(10152), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222229] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1491), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130412] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10154), 1, + anon_sym_DOLLAR, + ACTIONS(10156), 1, + anon_sym_DQUOTE, + STATE(4342), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222272] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1495), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130440] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10158), 1, + anon_sym_DOLLAR, + ACTIONS(10160), 1, + anon_sym_DQUOTE, + STATE(4334), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222315] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1499), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130468] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10162), 1, + anon_sym_DOLLAR, + ACTIONS(10164), 1, + anon_sym_DQUOTE, + STATE(4336), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222358] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1503), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130496] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10166), 1, + anon_sym_DOLLAR, + ACTIONS(10168), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222401] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1507), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130524] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10170), 1, + anon_sym_DOLLAR, + ACTIONS(10172), 1, + anon_sym_DQUOTE, + STATE(4339), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222444] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1511), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130552] = 11, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10174), 1, + anon_sym_DOLLAR, + ACTIONS(10176), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222487] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10178), 1, anon_sym_DOLLAR, - ACTIONS(5648), 1, + ACTIONS(10180), 1, anon_sym_DQUOTE, - ACTIONS(5650), 1, + STATE(4341), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222530] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5652), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5654), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5658), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5660), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6653), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(467), 7, - sym_string, + ACTIONS(10182), 1, + anon_sym_DOLLAR, + ACTIONS(10184), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130596] = 3, - ACTIONS(57), 1, + [222573] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1519), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [130624] = 11, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10186), 1, + anon_sym_DOLLAR, + ACTIONS(10188), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222616] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5568), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10190), 1, + anon_sym_DOLLAR, + ACTIONS(10192), 1, anon_sym_DQUOTE, - ACTIONS(5570), 1, + STATE(4343), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222659] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5572), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5574), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5578), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5580), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6655), 1, + ACTIONS(10194), 1, anon_sym_DOLLAR, - ACTIONS(5576), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6649), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(361), 7, - sym_string, + ACTIONS(10196), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130668] = 11, - ACTIONS(57), 1, + [222702] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10198), 1, anon_sym_DOLLAR, - ACTIONS(5688), 1, + ACTIONS(10200), 1, anon_sym_DQUOTE, - ACTIONS(5690), 1, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222745] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5692), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5694), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5698), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5700), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6657), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(473), 7, - sym_string, + ACTIONS(10202), 1, + anon_sym_DOLLAR, + ACTIONS(10204), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130712] = 11, - ACTIONS(57), 1, + [222788] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(405), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10206), 1, anon_sym_DOLLAR, - ACTIONS(5824), 1, + ACTIONS(10208), 1, anon_sym_DQUOTE, - ACTIONS(5826), 1, + STATE(4346), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222831] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5828), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5834), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5836), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5832), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6659), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(271), 7, - sym_string, + ACTIONS(10210), 1, + anon_sym_DOLLAR, + ACTIONS(10212), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130756] = 11, - ACTIONS(57), 1, + [222874] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(968), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10214), 1, anon_sym_DOLLAR, - ACTIONS(6663), 1, + ACTIONS(10216), 1, anon_sym_DQUOTE, - ACTIONS(6665), 1, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [222917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3848), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(3846), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [222940] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6667), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6669), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6673), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6675), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6671), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6661), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(743), 7, - sym_string, + ACTIONS(10218), 1, + anon_sym_DOLLAR, + ACTIONS(10220), 1, + anon_sym_DQUOTE, + STATE(4353), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130800] = 11, - ACTIONS(57), 1, + [222983] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10222), 1, + anon_sym_DOLLAR, + ACTIONS(10224), 1, + anon_sym_DQUOTE, + STATE(4350), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223026] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10226), 1, + anon_sym_DOLLAR, + ACTIONS(10228), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223069] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10230), 1, + anon_sym_DOLLAR, + ACTIONS(10232), 1, anon_sym_DQUOTE, - ACTIONS(1961), 1, + STATE(4354), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223112] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10234), 1, anon_sym_DOLLAR, - ACTIONS(1967), 1, + ACTIONS(10236), 1, + anon_sym_DQUOTE, + STATE(4357), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223155] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6677), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2246), 7, - sym_string, + ACTIONS(10238), 1, + anon_sym_DOLLAR, + ACTIONS(10240), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130844] = 11, - ACTIONS(57), 1, + [223198] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5688), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10242), 1, + anon_sym_DOLLAR, + ACTIONS(10244), 1, anon_sym_DQUOTE, - ACTIONS(5690), 1, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [223241] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5692), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5694), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5698), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5700), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6679), 1, + ACTIONS(10246), 1, anon_sym_DOLLAR, - ACTIONS(5696), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6657), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(473), 7, - sym_string, + ACTIONS(10248), 1, + anon_sym_DQUOTE, + STATE(4365), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130888] = 11, - ACTIONS(57), 1, + [223284] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, - anon_sym_DOLLAR, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6687), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6689), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6691), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6695), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6697), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6693), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6681), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(548), 7, - sym_string, + ACTIONS(10250), 1, + anon_sym_DOLLAR, + ACTIONS(10252), 1, + anon_sym_DQUOTE, + STATE(4388), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130932] = 11, - ACTIONS(57), 1, + [223327] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5890), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6701), 1, + ACTIONS(10254), 1, anon_sym_DOLLAR, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6699), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2787), 7, - sym_string, + ACTIONS(10256), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [130976] = 11, - ACTIONS(57), 1, + [223370] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6398), 1, - anon_sym_DOLLAR, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6404), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6406), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6408), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6412), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6414), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6410), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6703), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3142), 7, - sym_string, + ACTIONS(10258), 1, + anon_sym_DOLLAR, + ACTIONS(10260), 1, + anon_sym_DQUOTE, + STATE(4345), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131020] = 11, - ACTIONS(57), 1, + [223413] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_DOLLAR, - ACTIONS(5744), 1, - anon_sym_DQUOTE, - ACTIONS(5746), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5748), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5750), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5754), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5756), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6705), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(614), 7, - sym_string, + ACTIONS(10262), 1, + anon_sym_DOLLAR, + ACTIONS(10264), 1, + anon_sym_DQUOTE, + STATE(4362), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131064] = 11, - ACTIONS(57), 1, + [223456] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4023), 1, - anon_sym_DOLLAR, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6707), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2558), 7, - sym_string, + ACTIONS(10266), 1, + anon_sym_DOLLAR, + ACTIONS(10268), 1, + anon_sym_DQUOTE, + STATE(4361), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131108] = 11, - ACTIONS(57), 1, + [223499] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6711), 1, + ACTIONS(10270), 1, anon_sym_DOLLAR, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6709), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2005), 7, - sym_string, + ACTIONS(10272), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131152] = 11, - ACTIONS(57), 1, + [223542] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(839), 1, - anon_sym_DOLLAR, - ACTIONS(6685), 1, - anon_sym_DQUOTE, - ACTIONS(6687), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6689), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6691), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6695), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6697), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6693), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6681), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(548), 7, - sym_string, + ACTIONS(10274), 1, + anon_sym_DOLLAR, + ACTIONS(10276), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131196] = 11, - ACTIONS(57), 1, + [223585] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6663), 1, - anon_sym_DQUOTE, - ACTIONS(6665), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6667), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6669), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6673), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6675), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6713), 1, + ACTIONS(10278), 1, anon_sym_DOLLAR, - ACTIONS(6671), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6661), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(743), 7, - sym_string, + ACTIONS(10280), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131240] = 11, - ACTIONS(57), 1, + [223628] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6404), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6406), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6408), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6412), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6414), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6715), 1, + ACTIONS(10282), 1, anon_sym_DOLLAR, - ACTIONS(6410), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6703), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3142), 7, - sym_string, + ACTIONS(10284), 1, + anon_sym_DQUOTE, + STATE(4367), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131284] = 11, - ACTIONS(57), 1, + [223671] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - anon_sym_DQUOTE, - ACTIONS(5650), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5652), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5654), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5658), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5660), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6717), 1, + ACTIONS(10286), 1, anon_sym_DOLLAR, - ACTIONS(5656), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6653), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(467), 7, - sym_string, + ACTIONS(10288), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131328] = 11, - ACTIONS(57), 1, + [223714] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(105), 1, - anon_sym_DOLLAR, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(119), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6719), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(924), 7, - sym_string, + ACTIONS(10290), 1, + anon_sym_DOLLAR, + ACTIONS(10292), 1, + anon_sym_DQUOTE, + STATE(4369), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131372] = 11, - ACTIONS(57), 1, + [223757] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6723), 1, + ACTIONS(10294), 1, anon_sym_DOLLAR, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6721), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2298), 7, - sym_string, + ACTIONS(10296), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131416] = 11, - ACTIONS(57), 1, + [223800] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1162), 1, - anon_sym_DOLLAR, - ACTIONS(6727), 1, - anon_sym_DQUOTE, - ACTIONS(6729), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6731), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6733), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6737), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6739), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6735), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6725), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(983), 7, - sym_string, + ACTIONS(10298), 1, + anon_sym_DOLLAR, + ACTIONS(10300), 1, + anon_sym_DQUOTE, + STATE(4370), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131460] = 11, - ACTIONS(57), 1, + [223843] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6741), 1, + ACTIONS(10302), 1, anon_sym_DOLLAR, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6677), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2246), 7, - sym_string, + ACTIONS(10304), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131504] = 11, - ACTIONS(57), 1, + [223886] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1905), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1969), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1971), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(1977), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1979), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6743), 1, + ACTIONS(10306), 1, anon_sym_DOLLAR, - ACTIONS(1973), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6677), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2246), 7, - sym_string, + ACTIONS(10308), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131548] = 11, - ACTIONS(57), 1, + [223929] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5361), 1, - anon_sym_DOLLAR, - ACTIONS(6333), 1, - anon_sym_DQUOTE, - ACTIONS(6335), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6341), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6745), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2743), 7, - sym_string, + ACTIONS(10310), 1, + anon_sym_DOLLAR, + ACTIONS(10312), 1, + anon_sym_DQUOTE, + STATE(4417), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131592] = 11, - ACTIONS(57), 1, + [223972] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6727), 1, - anon_sym_DQUOTE, - ACTIONS(6729), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6731), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6733), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6737), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6739), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6747), 1, + ACTIONS(10314), 1, anon_sym_DOLLAR, - ACTIONS(6735), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6725), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(983), 7, - sym_string, + ACTIONS(10316), 1, + anon_sym_DQUOTE, + STATE(4391), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131636] = 11, - ACTIONS(57), 1, + [224015] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 1, - anon_sym_DQUOTE, - ACTIONS(5746), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5748), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5750), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5754), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5756), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6749), 1, + ACTIONS(10318), 1, anon_sym_DOLLAR, - ACTIONS(5752), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6705), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(614), 7, - sym_string, + ACTIONS(10320), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131680] = 11, - ACTIONS(57), 1, + [224058] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_DQUOTE, - ACTIONS(5886), 1, + ACTIONS(10322), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10325), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10328), 1, anon_sym_DOLLAR, - ACTIONS(5890), 1, + ACTIONS(10331), 1, + anon_sym_DQUOTE, + ACTIONS(10333), 1, + sym_string_content, + ACTIONS(10336), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5892), 1, + ACTIONS(10339), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5894), 1, + ACTIONS(10342), 1, anon_sym_BQUOTE, - ACTIONS(5898), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5900), 1, + ACTIONS(10345), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10348), 1, sym_semgrep_named_ellipsis, - ACTIONS(5896), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6699), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2787), 7, - sym_string, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131724] = 11, - ACTIONS(57), 1, + [224101] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, - anon_sym_DQUOTE, - ACTIONS(6446), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6751), 1, + ACTIONS(10351), 1, anon_sym_DOLLAR, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6709), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2005), 7, - sym_string, + ACTIONS(10353), 1, + anon_sym_DQUOTE, + STATE(4402), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131768] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6753), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [131804] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1416), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1418), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [131832] = 11, - ACTIONS(57), 1, + [224144] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1915), 1, - anon_sym_DOLLAR, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(1925), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1929), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1931), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(1935), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(1937), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(1933), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6721), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2298), 7, - sym_string, + ACTIONS(10355), 1, + anon_sym_DOLLAR, + ACTIONS(10357), 1, + anon_sym_DQUOTE, + STATE(4378), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131876] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1420), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1422), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [131904] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1424), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1426), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [131932] = 11, - ACTIONS(57), 1, + [224187] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6440), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10359), 1, anon_sym_DOLLAR, - ACTIONS(6444), 1, + ACTIONS(10361), 1, anon_sym_DQUOTE, - ACTIONS(6446), 1, + STATE(4384), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224230] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6448), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6450), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6454), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6456), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6452), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6709), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2005), 7, - sym_string, + ACTIONS(10363), 1, + anon_sym_DOLLAR, + ACTIONS(10365), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [131976] = 11, - ACTIONS(57), 1, + [224273] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6765), 1, + ACTIONS(10367), 1, anon_sym_DOLLAR, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6618), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 7, - sym_string, + ACTIONS(10369), 1, + anon_sym_DQUOTE, + STATE(4381), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132020] = 3, - ACTIONS(57), 1, + [224316] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 5, - anon_sym_EQ, + ACTIONS(1741), 2, + sym_file_descriptor, + aux_sym_statements_token1, + ACTIONS(1739), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1394), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [132048] = 11, - ACTIONS(57), 1, + anon_sym_GT_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [224339] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5708), 1, - anon_sym_DOLLAR, - ACTIONS(5712), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6767), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1857), 7, - sym_string, + ACTIONS(10371), 1, + anon_sym_DOLLAR, + ACTIONS(10373), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132092] = 11, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, + [224382] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(51), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(53), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(57), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(61), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6771), 1, + ACTIONS(10375), 1, anon_sym_DOLLAR, - ACTIONS(55), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6769), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(845), 7, - sym_string, + ACTIONS(10377), 1, + anon_sym_DQUOTE, + STATE(4338), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132136] = 11, - ACTIONS(41), 1, - anon_sym_DOLLAR, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(49), 1, + [224425] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(51), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(53), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(57), 1, - sym_comment, - ACTIONS(59), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(61), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(55), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6769), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(845), 7, - sym_string, + ACTIONS(10379), 1, + anon_sym_DOLLAR, + ACTIONS(10381), 1, + anon_sym_DQUOTE, + STATE(4386), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132180] = 11, - ACTIONS(57), 1, + [224468] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3993), 1, - anon_sym_DOLLAR, - ACTIONS(3997), 1, - anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4011), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4013), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6618), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2570), 7, - sym_string, + ACTIONS(10383), 1, + anon_sym_DOLLAR, + ACTIONS(10385), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132224] = 11, - ACTIONS(57), 1, + [224511] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1186), 1, - anon_sym_DOLLAR, - ACTIONS(6775), 1, - anon_sym_DQUOTE, - ACTIONS(6777), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6779), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6781), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6785), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6787), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6773), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(927), 7, - sym_string, + ACTIONS(10387), 1, + anon_sym_DOLLAR, + ACTIONS(10389), 1, + anon_sym_DQUOTE, + STATE(4396), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132268] = 11, - ACTIONS(57), 1, + [224554] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1804), 1, - anon_sym_DQUOTE, - ACTIONS(5712), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5714), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5716), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5722), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6789), 1, + ACTIONS(10391), 1, anon_sym_DOLLAR, - ACTIONS(5718), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6767), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1857), 7, - sym_string, + ACTIONS(10393), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132312] = 11, - ACTIONS(57), 1, + [224597] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(185), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(193), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6793), 1, + ACTIONS(10395), 1, anon_sym_DOLLAR, - ACTIONS(189), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6791), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(536), 7, - sym_string, + ACTIONS(10397), 1, + anon_sym_DQUOTE, + STATE(4389), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132356] = 11, - ACTIONS(57), 1, + [224640] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6382), 1, - anon_sym_DQUOTE, - ACTIONS(6384), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6386), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6388), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6392), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6394), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6795), 1, + ACTIONS(10399), 1, anon_sym_DOLLAR, - ACTIONS(6390), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6651), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2293), 7, - sym_string, + ACTIONS(10401), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132400] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1396), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1398), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [132428] = 11, - ACTIONS(57), 1, + [224683] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6496), 1, - anon_sym_DOLLAR, - ACTIONS(6500), 1, - anon_sym_DQUOTE, - ACTIONS(6502), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6504), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6506), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6510), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6512), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6645), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2160), 7, - sym_string, + ACTIONS(10403), 1, + anon_sym_DOLLAR, + ACTIONS(10405), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132472] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1428), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1430), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [132500] = 11, - ACTIONS(57), 1, + [224726] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5614), 1, - anon_sym_DOLLAR, - ACTIONS(5618), 1, - anon_sym_DQUOTE, - ACTIONS(5620), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5628), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5630), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6797), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(684), 7, - sym_string, + ACTIONS(10407), 1, + anon_sym_DOLLAR, + ACTIONS(10409), 1, + anon_sym_DQUOTE, + STATE(4392), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132544] = 11, - ACTIONS(57), 1, + [224769] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6775), 1, - anon_sym_DQUOTE, - ACTIONS(6777), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6779), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6781), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6785), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6787), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6799), 1, + ACTIONS(10411), 1, anon_sym_DOLLAR, - ACTIONS(6783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6773), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(927), 7, - sym_string, + ACTIONS(10413), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132588] = 11, - ACTIONS(57), 1, + [224812] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 1, - anon_sym_DOLLAR, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6801), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3493), 7, - sym_string, + ACTIONS(10415), 1, + anon_sym_DOLLAR, + ACTIONS(10417), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132632] = 11, - ACTIONS(57), 1, + [224855] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5618), 1, - anon_sym_DQUOTE, - ACTIONS(5620), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5622), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5624), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5628), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5630), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6803), 1, + ACTIONS(10419), 1, anon_sym_DOLLAR, - ACTIONS(5626), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6797), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(684), 7, - sym_string, + ACTIONS(10421), 1, + anon_sym_DQUOTE, + STATE(4394), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132676] = 11, - ACTIONS(57), 1, + [224898] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6805), 1, + ACTIONS(10423), 1, anon_sym_DOLLAR, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6707), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2558), 7, - sym_string, + ACTIONS(10425), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132720] = 11, - ACTIONS(57), 1, + [224941] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10427), 1, anon_sym_DOLLAR, - ACTIONS(3927), 1, + ACTIONS(10429), 1, anon_sym_DQUOTE, - ACTIONS(3931), 1, + STATE(4397), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [224984] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(3941), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6807), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2096), 7, - sym_string, + ACTIONS(10431), 1, + anon_sym_DOLLAR, + ACTIONS(10433), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132764] = 11, - ACTIONS(57), 1, + [225027] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6333), 1, - anon_sym_DQUOTE, - ACTIONS(6335), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6337), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6339), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6343), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6345), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6809), 1, + ACTIONS(10435), 1, anon_sym_DOLLAR, - ACTIONS(6341), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6745), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2743), 7, - sym_string, + ACTIONS(10437), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132808] = 11, - ACTIONS(57), 1, + [225070] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10439), 1, anon_sym_DOLLAR, - ACTIONS(325), 1, + ACTIONS(10441), 1, anon_sym_DQUOTE, - ACTIONS(329), 1, + STATE(4403), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225113] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(331), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(333), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(337), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(339), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(335), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6811), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(729), 7, - sym_string, + ACTIONS(10443), 1, + anon_sym_DOLLAR, + ACTIONS(10445), 1, + anon_sym_DQUOTE, + STATE(4401), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132852] = 11, - ACTIONS(57), 1, + [225156] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5592), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5594), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5596), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5600), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5602), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6815), 1, + ACTIONS(10447), 1, anon_sym_DOLLAR, - ACTIONS(5598), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6813), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(443), 7, - sym_string, + ACTIONS(10449), 1, + anon_sym_DQUOTE, + STATE(4425), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132896] = 11, - ACTIONS(57), 1, + [225199] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, - anon_sym_DQUOTE, - ACTIONS(4031), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4033), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4035), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(4041), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(4043), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6817), 1, + ACTIONS(10451), 1, anon_sym_DOLLAR, - ACTIONS(4037), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6707), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2558), 7, - sym_string, + ACTIONS(10453), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132940] = 11, - ACTIONS(57), 1, + [225242] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(3927), 1, - anon_sym_DQUOTE, - ACTIONS(3931), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3933), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3935), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(3941), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(3943), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6819), 1, + ACTIONS(10455), 1, anon_sym_DOLLAR, - ACTIONS(3937), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6807), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2096), 7, - sym_string, + ACTIONS(10457), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [132984] = 11, - ACTIONS(57), 1, + [225285] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(6015), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6017), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6019), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(6023), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(6025), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6821), 1, + ACTIONS(10459), 1, anon_sym_DOLLAR, - ACTIONS(6021), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6801), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(3493), 7, - sym_string, + ACTIONS(10461), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133028] = 11, - ACTIONS(57), 1, + [225328] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - anon_sym_DQUOTE, - ACTIONS(5826), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5828), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5834), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5836), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6823), 1, + ACTIONS(10463), 1, anon_sym_DOLLAR, - ACTIONS(5832), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6659), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(271), 7, - sym_string, + ACTIONS(10465), 1, + anon_sym_DQUOTE, + STATE(4406), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133072] = 11, - ACTIONS(57), 1, + [225371] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(115), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(117), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(121), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(123), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6825), 1, + ACTIONS(10467), 1, anon_sym_DOLLAR, - ACTIONS(119), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6719), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(924), 7, - sym_string, + ACTIONS(10469), 1, + anon_sym_DQUOTE, + STATE(4407), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133116] = 11, - ACTIONS(57), 1, + [225414] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(175), 1, - anon_sym_DOLLAR, - ACTIONS(179), 1, - anon_sym_DQUOTE, - ACTIONS(183), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(185), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(191), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(193), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(189), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6791), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(536), 7, - sym_string, + ACTIONS(10471), 1, + anon_sym_DOLLAR, + ACTIONS(10473), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133160] = 11, - ACTIONS(57), 1, + [225457] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(597), 1, - anon_sym_DOLLAR, - ACTIONS(5590), 1, - anon_sym_DQUOTE, - ACTIONS(5592), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5594), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5596), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5600), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5602), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5598), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6813), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(443), 7, - sym_string, + ACTIONS(10475), 1, + anon_sym_DOLLAR, + ACTIONS(10477), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133204] = 11, - ACTIONS(57), 1, + [225500] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, - anon_sym_DQUOTE, - ACTIONS(329), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(331), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(333), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(337), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(339), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(6827), 1, + ACTIONS(10479), 1, anon_sym_DOLLAR, - ACTIONS(335), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6811), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(729), 7, - sym_string, + ACTIONS(10481), 1, + anon_sym_DQUOTE, + STATE(4410), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133248] = 11, - ACTIONS(57), 1, + [225543] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(5788), 1, - anon_sym_DOLLAR, - ACTIONS(5792), 1, - anon_sym_DQUOTE, - ACTIONS(5794), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5796), 1, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5798), 1, + ACTIONS(9996), 1, anon_sym_BQUOTE, - ACTIONS(5802), 1, - anon_sym_LT_DOT_DOT_DOT, - ACTIONS(5804), 1, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - ACTIONS(5800), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(6641), 4, - sym_special_character, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(773), 7, - sym_string, + ACTIONS(10483), 1, + anon_sym_DOLLAR, + ACTIONS(10485), 1, + anon_sym_DQUOTE, + STATE(4292), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, sym_simple_expansion, - sym_string_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - sym_semgrep_deep_expression, - [133292] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1447), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1449), 15, - sym_concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [133320] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6829), 1, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133355] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_RPAREN, - ACTIONS(6837), 1, - anon_sym_QMARK, - ACTIONS(6833), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6839), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6835), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6831), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133390] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6837), 1, - anon_sym_QMARK, - ACTIONS(6841), 1, - anon_sym_RPAREN, - ACTIONS(6833), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6839), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6835), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6831), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133425] = 5, + [225586] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_LF, - ACTIONS(6847), 1, - sym_concat, - STATE(2714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6843), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - [133456] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1361), 1, - anon_sym_LF, - ACTIONS(6847), 1, - sym_concat, - STATE(2714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1359), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(10487), 1, anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10489), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225629] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - [133487] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6484), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6633), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [133514] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6855), 1, - anon_sym_QMARK, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6851), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6853), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133549] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6857), 1, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133584] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6859), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133619] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6861), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133654] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6863), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133689] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6865), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133724] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6869), 1, - anon_sym_RBRACK, - ACTIONS(6875), 1, - anon_sym_QMARK, - ACTIONS(6871), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6877), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6873), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6867), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133759] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6462), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6637), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [133786] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6879), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133821] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6881), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133856] = 7, - ACTIONS(57), 1, + ACTIONS(10491), 1, + anon_sym_DOLLAR, + ACTIONS(10493), 1, + anon_sym_DQUOTE, + STATE(4324), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225672] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6883), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133891] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10495), 1, + anon_sym_DOLLAR, + ACTIONS(10497), 1, + anon_sym_DQUOTE, + STATE(4290), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225715] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6885), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133926] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10499), 1, + anon_sym_DOLLAR, + ACTIONS(10501), 1, + anon_sym_DQUOTE, + STATE(4416), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225758] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6887), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [133961] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10503), 1, + anon_sym_DOLLAR, + ACTIONS(10505), 1, + anon_sym_DQUOTE, + STATE(4363), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225801] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6637), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [133988] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10507), 1, + anon_sym_DOLLAR, + ACTIONS(10509), 1, + anon_sym_DQUOTE, + STATE(4432), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225844] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 1, - anon_sym_QMARK, - ACTIONS(6889), 1, - anon_sym_RPAREN, - ACTIONS(6833), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6839), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6835), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6831), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134023] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10511), 1, + anon_sym_DOLLAR, + ACTIONS(10513), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225887] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_RBRACK, - ACTIONS(6875), 1, - anon_sym_QMARK, - ACTIONS(6871), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6877), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6873), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6867), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134058] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10515), 1, + anon_sym_DOLLAR, + ACTIONS(10517), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225930] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6633), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134085] = 3, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10519), 1, + anon_sym_DOLLAR, + ACTIONS(10521), 1, + anon_sym_DQUOTE, + STATE(4419), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [225973] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134112] = 9, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10523), 1, + anon_sym_DOLLAR, + ACTIONS(10525), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226016] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 1, - anon_sym_LF, - ACTIONS(6891), 1, - aux_sym_for_statement_token1, - ACTIONS(6895), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10527), 1, + anon_sym_DOLLAR, + ACTIONS(10529), 1, anon_sym_DQUOTE, - ACTIONS(6897), 1, - sym_raw_string, - STATE(3125), 1, - sym_orig_simple_variable_name, - STATE(3158), 1, + STATE(4423), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226059] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(10531), 1, + aux_sym_for_statement_token1, + ACTIONS(10535), 1, + anon_sym__, + STATE(4882), 1, sym_string, - ACTIONS(621), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - ACTIONS(6893), 9, - anon_sym_BANG, + STATE(4923), 1, + sym_orig_simple_variable_name, + ACTIONS(943), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT_GT, + ACTIONS(10533), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [134151] = 7, - ACTIONS(57), 1, + [226092] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134186] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10537), 1, + anon_sym_DOLLAR, + ACTIONS(10539), 1, + anon_sym_DQUOTE, + STATE(4429), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226135] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, - anon_sym_RBRACK, - ACTIONS(6871), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6877), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6873), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6867), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134221] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10541), 1, + anon_sym_DOLLAR, + ACTIONS(10543), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226178] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6855), 1, - anon_sym_QMARK, - ACTIONS(6899), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6851), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6853), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134256] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10545), 1, + anon_sym_DOLLAR, + ACTIONS(10547), 1, + anon_sym_DQUOTE, + STATE(4426), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226221] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6901), 1, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134291] = 7, - ACTIONS(57), 1, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10549), 1, + anon_sym_DOLLAR, + ACTIONS(10551), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226264] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6903), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134326] = 5, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10553), 1, + anon_sym_DOLLAR, + ACTIONS(10555), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226307] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10557), 1, + anon_sym_DOLLAR, + ACTIONS(10559), 1, + anon_sym_DQUOTE, + STATE(4428), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226350] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10561), 1, + anon_sym_DOLLAR, + ACTIONS(10563), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226393] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10565), 1, + anon_sym_DOLLAR, + ACTIONS(10567), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226436] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10569), 1, + anon_sym_DOLLAR, + ACTIONS(10571), 1, + anon_sym_DQUOTE, + STATE(4291), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226479] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10573), 1, + anon_sym_DOLLAR, + ACTIONS(10575), 1, + anon_sym_DQUOTE, + STATE(4433), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226522] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10577), 1, + anon_sym_DOLLAR, + ACTIONS(10579), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226565] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10581), 1, + anon_sym_DOLLAR, + ACTIONS(10583), 1, + anon_sym_DQUOTE, + STATE(4374), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226608] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1385), 1, - anon_sym_LF, - ACTIONS(6905), 1, - sym_concat, - STATE(2695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1383), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, + anon_sym_BQUOTE, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10585), 1, anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10587), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + STATE(4329), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226651] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9984), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9990), 1, + sym_string_content, + ACTIONS(9992), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9994), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(9996), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(9998), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10000), 1, sym_semgrep_named_ellipsis, - [134357] = 3, - ACTIONS(57), 1, + ACTIONS(10589), 1, + anon_sym_DOLLAR, + ACTIONS(10591), 1, + anon_sym_DQUOTE, + STATE(4373), 1, + aux_sym_string_repeat1, + STATE(4654), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [226694] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6469), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6627), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, + ACTIONS(9978), 2, + anon_sym_DOLLAR, + aux_sym_number_token2, + ACTIONS(9980), 12, + anon_sym_RPAREN_RPAREN, + aux_sym_c_expression_not_assignment_token1, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [134384] = 3, - ACTIONS(57), 1, + anon_sym_LPAREN, + anon_sym_DQUOTE, + aux_sym_number_token1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [226716] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, + ACTIONS(10595), 1, + anon_sym_LT_LT, + ACTIONS(10601), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10603), 1, + anon_sym_LT_LT_LT, + ACTIONS(10599), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10597), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10593), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134411] = 3, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [226745] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6629), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134438] = 7, - ACTIONS(57), 1, + ACTIONS(982), 1, + aux_sym_statements_token1, + ACTIONS(980), 12, + aux_sym_for_statement_token1, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_metavariable, + [226766] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6908), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, + ACTIONS(10607), 1, + anon_sym_LT_LT, + ACTIONS(10613), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10615), 1, + anon_sym_LT_LT_LT, + ACTIONS(10611), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10609), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10605), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134473] = 7, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [226795] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(6837), 1, - anon_sym_QMARK, - ACTIONS(6910), 1, - anon_sym_RPAREN, - ACTIONS(6833), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6839), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6835), 5, - anon_sym_EQ, + ACTIONS(10619), 1, + anon_sym_LT_LT, + ACTIONS(10625), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10627), 1, + anon_sym_LT_LT_LT, + ACTIONS(10623), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10621), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10617), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6831), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134508] = 7, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [226824] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6875), 1, - anon_sym_QMARK, - ACTIONS(6908), 1, - anon_sym_RBRACK, - ACTIONS(6871), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6877), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6873), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6867), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134543] = 3, - ACTIONS(57), 1, + ACTIONS(1034), 1, + aux_sym_statements_token1, + ACTIONS(1032), 12, + aux_sym_for_statement_token1, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_metavariable, + [226845] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134570] = 7, - ACTIONS(57), 1, + ACTIONS(1030), 1, + aux_sym_statements_token1, + ACTIONS(1028), 12, + aux_sym_for_statement_token1, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_metavariable, + [226866] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(6837), 1, - anon_sym_QMARK, - ACTIONS(6912), 1, - anon_sym_RPAREN, - ACTIONS(6833), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6839), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6835), 5, - anon_sym_EQ, + ACTIONS(10631), 1, + anon_sym_LT_LT, + ACTIONS(10637), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10639), 1, + anon_sym_LT_LT_LT, + ACTIONS(10635), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10633), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10629), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6831), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134605] = 7, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [226895] = 7, + ACTIONS(71), 1, sym_comment, - ACTIONS(6855), 1, - anon_sym_QMARK, - ACTIONS(6908), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6851), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6853), 5, - anon_sym_EQ, + ACTIONS(10619), 1, + anon_sym_LT_LT, + ACTIONS(10625), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10627), 1, + anon_sym_LT_LT_LT, + ACTIONS(10645), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10643), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10641), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6849), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134640] = 7, - ACTIONS(57), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [226924] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6914), 1, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10651), 1, + anon_sym_DQUOTE, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134675] = 3, - ACTIONS(57), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [226950] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(10168), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(5991), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134702] = 7, - ACTIONS(57), 1, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [226976] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6855), 1, - anon_sym_QMARK, - ACTIONS(6869), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6851), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6853), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(10401), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(6849), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134737] = 3, - ACTIONS(57), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227002] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6469), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10655), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(6627), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134764] = 7, - ACTIONS(57), 1, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227028] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6916), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(2329), 1, + aux_sym_for_statement_token1, + ACTIONS(2331), 1, + anon_sym__, + ACTIONS(6587), 1, + anon_sym_DQUOTE, + STATE(670), 1, + sym_orig_simple_variable_name, + STATE(730), 1, + sym_string, + ACTIONS(10657), 7, anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134799] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6918), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134834] = 7, - ACTIONS(57), 1, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227056] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_QMARK, - ACTIONS(6920), 1, - anon_sym_COLON, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + ACTIONS(2500), 1, + anon_sym_DQUOTE, + ACTIONS(3790), 1, + aux_sym_for_statement_token1, + ACTIONS(3792), 1, + anon_sym__, + STATE(1611), 1, + sym_orig_simple_variable_name, + STATE(1652), 1, + sym_string, + ACTIONS(3794), 7, anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134869] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(6761), 1, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - ACTIONS(6869), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6757), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(6763), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6759), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227084] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10433), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(6755), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [134904] = 3, - ACTIONS(57), 1, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227110] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(6471), 5, - anon_sym_EQ, + ACTIONS(10661), 1, + anon_sym_LT_LT, + ACTIONS(10667), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10665), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10663), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10659), 5, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [227136] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10669), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - ACTIONS(6629), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [134931] = 5, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227162] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_LF, - ACTIONS(6922), 1, - sym_concat, - STATE(2695), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(5546), 1, + aux_sym_for_statement_token1, + ACTIONS(5548), 1, + anon_sym__, + ACTIONS(6731), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [134962] = 5, + STATE(3258), 1, + sym_string, + STATE(3275), 1, + sym_orig_simple_variable_name, + ACTIONS(10671), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227190] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1434), 1, - anon_sym_LF, - ACTIONS(6924), 1, - sym_special_character, - STATE(2715), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1432), 15, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, + ACTIONS(10188), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [134992] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1422), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10176), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135018] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10673), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135044] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1445), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10675), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135070] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227294] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(3606), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135096] = 3, + ACTIONS(4691), 1, + aux_sym_for_statement_token1, + ACTIONS(4693), 1, + anon_sym__, + STATE(1812), 1, + sym_orig_simple_variable_name, + STATE(1849), 1, + sym_string, + ACTIONS(4695), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1426), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10677), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135122] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1453), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(2323), 1, + aux_sym_for_statement_token1, + ACTIONS(2325), 1, + anon_sym__, + ACTIONS(6543), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135148] = 3, + STATE(774), 1, + sym_string, + STATE(803), 1, + sym_orig_simple_variable_name, + ACTIONS(10679), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227376] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1457), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10200), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135174] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10453), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135200] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227428] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10619), 1, + anon_sym_LT_LT, + ACTIONS(10625), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10645), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10643), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10641), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [227454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1542), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10204), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135226] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1467), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10681), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135252] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227506] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1471), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10683), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135278] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227532] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1475), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(5990), 1, + aux_sym_for_statement_token1, + ACTIONS(5992), 1, + anon_sym__, + ACTIONS(7995), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135304] = 3, + STATE(3322), 1, + sym_orig_simple_variable_name, + STATE(3331), 1, + sym_string, + ACTIONS(10685), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1479), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10687), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135330] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227586] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1483), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(3433), 1, + aux_sym_for_statement_token1, + ACTIONS(3435), 1, + anon_sym__, + ACTIONS(7431), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135356] = 3, + STATE(1288), 1, + sym_orig_simple_variable_name, + STATE(1426), 1, + sym_string, + ACTIONS(10689), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1487), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10136), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135382] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227640] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1491), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(665), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135408] = 3, + ACTIONS(4753), 1, + aux_sym_for_statement_token1, + ACTIONS(4755), 1, + anon_sym__, + STATE(1959), 1, + sym_orig_simple_variable_name, + STATE(2010), 1, + sym_string, + ACTIONS(4757), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227668] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10607), 1, + anon_sym_LT_LT, + ACTIONS(10613), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10611), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10609), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10605), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [227694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1495), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10477), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135434] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227720] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1499), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10184), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135460] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227746] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1503), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1501), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(3931), 1, + aux_sym_for_statement_token1, + ACTIONS(3933), 1, + anon_sym__, + ACTIONS(3935), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135486] = 3, + STATE(1682), 1, + sym_orig_simple_variable_name, + STATE(1722), 1, + sym_string, + ACTIONS(3937), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1507), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10551), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135512] = 5, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227800] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6845), 1, - anon_sym_LF, - ACTIONS(6927), 1, - sym_special_character, - STATE(2715), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6843), 15, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10691), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135542] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1511), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(6527), 1, + aux_sym_for_statement_token1, + ACTIONS(6529), 1, + anon_sym__, + ACTIONS(7727), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135568] = 3, + STATE(3479), 1, + sym_orig_simple_variable_name, + STATE(3507), 1, + sym_string, + ACTIONS(10693), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1515), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1513), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10196), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135594] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1416), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(7829), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135620] = 3, + ACTIONS(9953), 1, + aux_sym_for_statement_token1, + ACTIONS(9955), 1, + anon_sym__, + STATE(4738), 1, + sym_orig_simple_variable_name, + STATE(4759), 1, + sym_string, + ACTIONS(10695), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [227908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1519), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1517), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10513), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135646] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1394), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10517), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135672] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10697), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135698] = 3, - ACTIONS(3), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [227986] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(10699), 1, anon_sym_DOLLAR, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(10702), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10705), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(10708), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(10711), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10714), 1, sym_semgrep_named_ellipsis, - [135724] = 3, + ACTIONS(10717), 1, + sym_heredoc_content, + ACTIONS(10720), 1, + sym_heredoc_end, + STATE(4485), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body__repeat1, + [228020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1430), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10722), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135750] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228046] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1402), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10256), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135776] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1406), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10212), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135802] = 3, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(596), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135828] = 3, + ACTIONS(2261), 1, + aux_sym_for_statement_token1, + ACTIONS(2263), 1, + anon_sym__, + STATE(804), 1, + sym_string, + STATE(927), 1, + sym_orig_simple_variable_name, + ACTIONS(10724), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [228126] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10726), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135854] = 3, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1449), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 16, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_DOLLAR, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10728), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135880] = 9, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, + ACTIONS(2542), 1, anon_sym_DQUOTE, - ACTIONS(5264), 1, + ACTIONS(3958), 1, aux_sym_for_statement_token1, - ACTIONS(5270), 1, - sym_raw_string, - STATE(2496), 1, - sym_string, - STATE(2504), 1, - sym_orig_simple_variable_name, - ACTIONS(623), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(5266), 2, - anon_sym_0, + ACTIONS(3960), 1, anon_sym__, - ACTIONS(5268), 7, - anon_sym_BANG, + STATE(1697), 1, + sym_orig_simple_variable_name, + STATE(1727), 1, + sym_string, + ACTIONS(3962), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [135916] = 5, - ACTIONS(57), 1, + [228206] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, - anon_sym_DOLLAR, - ACTIONS(6929), 1, - sym_concat, - STATE(2754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6845), 13, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10567), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [135944] = 9, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(5248), 1, + ACTIONS(2337), 1, aux_sym_for_statement_token1, - ACTIONS(5254), 1, - sym_raw_string, - STATE(2631), 1, + ACTIONS(2339), 1, + anon_sym__, + STATE(781), 1, sym_orig_simple_variable_name, - STATE(2634), 1, + STATE(782), 1, sym_string, - ACTIONS(623), 2, - sym_concat, - anon_sym_RBRACK, - ACTIONS(5250), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5252), 7, - anon_sym_BANG, + ACTIONS(10730), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [135980] = 5, - ACTIONS(57), 1, + [228260] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1359), 1, - anon_sym_DOLLAR, - ACTIONS(6929), 1, - sym_concat, - STATE(2754), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 13, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10732), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136008] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1377), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6931), 1, - sym_concat, - STATE(2755), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 13, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136036] = 5, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228286] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1383), 1, - anon_sym_DOLLAR, - ACTIONS(6933), 1, - sym_concat, - STATE(2755), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1385), 13, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10272), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136064] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1473), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1475), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136087] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228312] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_DOLLAR, - ACTIONS(1430), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10734), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136110] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1439), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1441), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136133] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228338] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DOLLAR, - ACTIONS(1445), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10276), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136156] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1447), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1449), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136179] = 5, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228364] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6843), 1, - anon_sym_DOLLAR, - ACTIONS(6936), 1, - sym_special_character, - STATE(2784), 1, - aux_sym_for_statement_repeat1, - ACTIONS(6845), 12, - anon_sym_RPAREN, + ACTIONS(3447), 1, + aux_sym_for_statement_token1, + ACTIONS(3449), 1, + anon_sym__, + ACTIONS(7351), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136206] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1447), 1, + STATE(1305), 1, + sym_string, + STATE(1400), 1, + sym_orig_simple_variable_name, + ACTIONS(10736), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1449), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136229] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + [228392] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_DOLLAR, - ACTIONS(1453), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10738), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136252] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1455), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1457), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136275] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228418] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10008), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136298] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1540), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1542), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136321] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228444] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DOLLAR, - ACTIONS(1467), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(825), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136344] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1469), 1, + ACTIONS(3509), 1, + aux_sym_for_statement_token1, + ACTIONS(3511), 1, + anon_sym__, + STATE(1651), 1, + sym_orig_simple_variable_name, + STATE(1673), 1, + sym_string, + ACTIONS(3513), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1471), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136367] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + [228472] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1396), 1, - anon_sym_DOLLAR, - ACTIONS(1398), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10004), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136390] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1477), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1479), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228498] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10148), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136413] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228524] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1481), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10740), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1483), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228550] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10296), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136436] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228576] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1424), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10742), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1426), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10744), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136459] = 3, - ACTIONS(57), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228628] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1489), 1, + ACTIONS(6934), 1, + anon_sym_DQUOTE, + ACTIONS(8627), 1, + aux_sym_for_statement_token1, + ACTIONS(8629), 1, + anon_sym__, + STATE(3804), 1, + sym_orig_simple_variable_name, + STATE(3872), 1, + sym_string, + ACTIONS(8631), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1491), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + [228656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10216), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136482] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228682] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1493), 1, + ACTIONS(10016), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1495), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228708] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10308), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136505] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228734] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1497), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10746), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1499), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228760] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10748), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136528] = 3, - ACTIONS(57), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228786] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1501), 1, + ACTIONS(3497), 1, + aux_sym_for_statement_token1, + ACTIONS(3499), 1, + anon_sym__, + ACTIONS(7577), 1, + anon_sym_DQUOTE, + STATE(1512), 1, + sym_string, + STATE(1566), 1, + sym_orig_simple_variable_name, + ACTIONS(10750), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1503), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + [228814] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10752), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136551] = 3, - ACTIONS(57), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228840] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1505), 1, + ACTIONS(2659), 1, + aux_sym_for_statement_token1, + ACTIONS(2661), 1, + anon_sym__, + ACTIONS(6419), 1, + anon_sym_DQUOTE, + STATE(883), 1, + sym_string, + STATE(894), 1, + sym_orig_simple_variable_name, + ACTIONS(10754), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1507), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + [228868] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10128), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136574] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228894] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1509), 1, + ACTIONS(10320), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1511), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228920] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10756), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136597] = 3, - ACTIONS(57), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228946] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1513), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10758), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1515), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228972] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10024), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136620] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [228998] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1517), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10760), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1519), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10762), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136643] = 3, - ACTIONS(57), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229050] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10764), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1406), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229076] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6571), 1, + aux_sym_for_statement_token1, + ACTIONS(6573), 1, + anon_sym__, + ACTIONS(7969), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136666] = 3, - ACTIONS(57), 1, + STATE(3416), 1, + sym_string, + STATE(3478), 1, + sym_orig_simple_variable_name, + ACTIONS(10766), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [229104] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1408), 1, + ACTIONS(3348), 1, + aux_sym_for_statement_token1, + ACTIONS(3350), 1, + anon_sym__, + ACTIONS(8091), 1, + anon_sym_DQUOTE, + STATE(1056), 1, + sym_string, + STATE(1141), 1, + sym_orig_simple_variable_name, + ACTIONS(10768), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1410), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + [229132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10032), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136689] = 3, - ACTIONS(57), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229158] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1392), 1, + ACTIONS(10365), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1394), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229184] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2707), 1, + aux_sym_for_statement_token1, + ACTIONS(2709), 1, + anon_sym__, + ACTIONS(6659), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136712] = 5, - ACTIONS(57), 1, + STATE(962), 1, + sym_orig_simple_variable_name, + STATE(1019), 1, + sym_string, + ACTIONS(10770), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [229212] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10772), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6938), 1, - sym_special_character, - STATE(2784), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 12, - anon_sym_RPAREN, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229238] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5479), 1, + aux_sym_for_statement_token1, + ACTIONS(5481), 1, + anon_sym__, + ACTIONS(6809), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136739] = 3, - ACTIONS(57), 1, + STATE(3186), 1, + sym_orig_simple_variable_name, + STATE(3195), 1, + sym_string, + ACTIONS(10774), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [229266] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1412), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10776), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1414), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229292] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10112), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136762] = 9, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229318] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 1, - anon_sym_DOT_DOT_DOT_GT, - ACTIONS(1899), 1, - aux_sym_for_statement_token1, - ACTIONS(1905), 1, + ACTIONS(10373), 1, anon_sym_DQUOTE, - ACTIONS(1907), 1, - sym_raw_string, - STATE(2233), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(2234), 1, - sym_string, - ACTIONS(1901), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1903), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [136797] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1383), 1, - anon_sym_DOLLAR, - ACTIONS(1385), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136820] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1416), 1, - anon_sym_DOLLAR, - ACTIONS(1418), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136843] = 9, + anon_sym__, + [229344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(623), 1, - anon_sym_RBRACE, - ACTIONS(6013), 1, + ACTIONS(10040), 1, anon_sym_DQUOTE, - ACTIONS(6941), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6945), 1, - sym_raw_string, - STATE(3484), 1, - sym_string, - STATE(3606), 1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(6947), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6943), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [136878] = 3, - ACTIONS(57), 1, + anon_sym__, + [229370] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1420), 1, - anon_sym_DOLLAR, - ACTIONS(1422), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10778), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136901] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(1400), 1, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(1402), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136924] = 3, - ACTIONS(57), 1, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229396] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_DOLLAR, - ACTIONS(1487), 14, - sym_concat, - anon_sym_RPAREN, - sym_special_character, + ACTIONS(10228), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [136947] = 8, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229422] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(625), 1, + ACTIONS(3437), 1, aux_sym_for_statement_token1, - ACTIONS(5824), 1, + ACTIONS(3439), 1, + anon_sym__, + ACTIONS(7269), 1, anon_sym_DQUOTE, - ACTIONS(6951), 1, - sym_raw_string, - STATE(269), 1, + STATE(1401), 1, sym_string, - STATE(278), 1, + STATE(1423), 1, sym_orig_simple_variable_name, - ACTIONS(627), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6949), 7, - anon_sym_BANG, + ACTIONS(10780), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [136979] = 8, + [229450] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1871), 1, + ACTIONS(5124), 1, aux_sym_for_statement_token1, - ACTIONS(6382), 1, + ACTIONS(5126), 1, + anon_sym__, + ACTIONS(5128), 1, anon_sym_DQUOTE, - ACTIONS(6955), 1, - sym_raw_string, - STATE(2304), 1, + STATE(2203), 1, sym_orig_simple_variable_name, - STATE(2468), 1, + STATE(2285), 1, sym_string, - ACTIONS(1873), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6953), 7, - anon_sym_BANG, + ACTIONS(5130), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137011] = 8, + [229478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6957), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6959), 1, - anon_sym_RBRACE, - ACTIONS(6967), 1, - sym_variable_name, - STATE(1050), 1, - sym_subscript, - ACTIONS(6961), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10782), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(6965), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(6963), 5, + [229504] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10457), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137043] = 8, + anon_sym_POUND, + anon_sym__, + [229530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 1, + ACTIONS(10393), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6971), 1, - anon_sym_RBRACE, - ACTIONS(6979), 1, - sym_variable_name, - STATE(1186), 1, - sym_subscript, - ACTIONS(6973), 2, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(6977), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(6975), 5, + [229556] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10619), 1, + anon_sym_LT_LT, + ACTIONS(10625), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10623), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10621), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10617), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [229582] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10784), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137075] = 8, + anon_sym_POUND, + anon_sym__, + [229608] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6981), 1, + ACTIONS(6159), 1, aux_sym_for_statement_token1, - ACTIONS(6983), 1, - anon_sym_RBRACE, - ACTIONS(6991), 1, - sym_variable_name, - STATE(1042), 1, - sym_subscript, - ACTIONS(6985), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(6989), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(6161), 1, anon_sym__, - ACTIONS(6987), 5, + ACTIONS(8229), 1, + anon_sym_DQUOTE, + STATE(3278), 1, + sym_string, + STATE(3316), 1, + sym_orig_simple_variable_name, + ACTIONS(10786), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137107] = 8, + anon_sym_POUND, + [229636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(779), 1, - aux_sym_for_statement_token1, - ACTIONS(5618), 1, + ACTIONS(10052), 1, anon_sym_DQUOTE, - ACTIONS(6995), 1, - sym_raw_string, - STATE(682), 1, - sym_string, - STATE(691), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(781), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6993), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137139] = 8, + anon_sym__, + [229662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6999), 1, - anon_sym_RBRACE, - ACTIONS(7007), 1, - sym_variable_name, - STATE(1082), 1, - sym_subscript, - ACTIONS(7001), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10788), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7005), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7003), 5, + [229688] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10595), 1, + anon_sym_LT_LT, + ACTIONS(10601), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10599), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10597), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10593), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [229714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10405), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137171] = 8, + anon_sym_POUND, + anon_sym__, + [229740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7011), 1, - anon_sym_RBRACE, - ACTIONS(7019), 1, - sym_variable_name, - STATE(1146), 1, - sym_subscript, - ACTIONS(7013), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10790), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7017), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7015), 5, + [229766] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10792), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137203] = 8, + anon_sym_POUND, + anon_sym__, + [229792] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, + ACTIONS(7227), 1, aux_sym_for_statement_token1, - ACTIONS(5672), 1, + ACTIONS(7229), 1, + anon_sym__, + ACTIONS(7455), 1, anon_sym_DQUOTE, - ACTIONS(5674), 1, - sym_raw_string, - STATE(2772), 1, + STATE(3403), 1, sym_orig_simple_variable_name, - STATE(2783), 1, + STATE(3459), 1, sym_string, - ACTIONS(5670), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5676), 7, - anon_sym_BANG, + ACTIONS(10794), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137235] = 8, + [229820] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(739), 1, + ACTIONS(2663), 1, aux_sym_for_statement_token1, - ACTIONS(5688), 1, + ACTIONS(2665), 1, + anon_sym__, + ACTIONS(6699), 1, anon_sym_DQUOTE, - ACTIONS(7023), 1, - sym_raw_string, - STATE(453), 1, - sym_orig_simple_variable_name, - STATE(456), 1, + STATE(815), 1, sym_string, - ACTIONS(741), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7021), 7, - anon_sym_BANG, + STATE(855), 1, + sym_orig_simple_variable_name, + ACTIONS(10796), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137267] = 8, + [229848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(10413), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7027), 1, - anon_sym_RBRACE, - ACTIONS(7035), 1, - sym_variable_name, - STATE(1138), 1, - sym_subscript, - ACTIONS(7029), 2, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7033), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7031), 5, + [229874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10060), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137299] = 8, + anon_sym_POUND, + anon_sym__, + [229900] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7037), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7039), 1, - anon_sym_RBRACE, - ACTIONS(7047), 1, - sym_variable_name, - STATE(1058), 1, - sym_subscript, - ACTIONS(7041), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10798), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7045), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [229926] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5431), 1, + anon_sym_DQUOTE, + ACTIONS(10531), 1, + aux_sym_for_statement_token1, + ACTIONS(10535), 1, anon_sym__, - ACTIONS(7043), 5, + STATE(4882), 1, + sym_string, + STATE(4923), 1, + sym_orig_simple_variable_name, + ACTIONS(10533), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137331] = 8, + anon_sym_POUND, + [229954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1893), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(3927), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10800), 1, anon_sym_DQUOTE, - ACTIONS(7051), 1, - sym_raw_string, - STATE(2069), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(2286), 1, - sym_string, - ACTIONS(1895), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7049), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137363] = 8, + anon_sym__, + [229980] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5338), 1, - aux_sym_for_statement_token1, - ACTIONS(6333), 1, + ACTIONS(3760), 1, anon_sym_DQUOTE, - ACTIONS(7055), 1, - sym_raw_string, - STATE(2720), 1, - sym_orig_simple_variable_name, - STATE(2741), 1, - sym_string, - ACTIONS(5340), 2, - anon_sym_0, + ACTIONS(4664), 1, + aux_sym_for_statement_token1, + ACTIONS(4666), 1, anon_sym__, - ACTIONS(7053), 7, - anon_sym_BANG, + STATE(1915), 1, + sym_string, + STATE(1931), 1, + sym_orig_simple_variable_name, + ACTIONS(4668), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137395] = 8, + [230008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7057), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7059), 1, - anon_sym_RBRACE, - ACTIONS(7067), 1, - sym_variable_name, - STATE(1154), 1, - sym_subscript, - ACTIONS(7061), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10802), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7065), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7063), 5, + [230034] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10425), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137427] = 4, - ACTIONS(57), 1, + anon_sym_POUND, + anon_sym__, + [230060] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - anon_sym_esac, - ACTIONS(7069), 2, - anon_sym_DOLLAR, - sym_word, - ACTIONS(7073), 11, - sym_special_character, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10804), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [137451] = 8, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7077), 1, - anon_sym_RBRACE, - ACTIONS(7085), 1, - sym_variable_name, - STATE(1130), 1, - sym_subscript, - ACTIONS(7079), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10806), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7083), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230112] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10631), 1, + anon_sym_LT_LT, + ACTIONS(10637), 1, + anon_sym_LT_LT_DASH, + ACTIONS(10635), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10633), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10629), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [230138] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4143), 1, + anon_sym_DQUOTE, + ACTIONS(8709), 1, + aux_sym_for_statement_token1, + ACTIONS(8713), 1, anon_sym__, - ACTIONS(7081), 5, + STATE(4109), 1, + sym_string, + STATE(4110), 1, + sym_orig_simple_variable_name, + ACTIONS(8711), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137483] = 8, + anon_sym_POUND, + [230166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 1, - aux_sym_for_statement_token1, - ACTIONS(5590), 1, + ACTIONS(10068), 1, anon_sym_DQUOTE, - ACTIONS(7089), 1, - sym_raw_string, - STATE(437), 1, - sym_string, - STATE(465), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230192] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10244), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(747), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7087), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137515] = 8, + anon_sym__, + [230218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7093), 1, - anon_sym_RBRACE, - ACTIONS(7101), 1, - sym_variable_name, - STATE(1106), 1, - sym_subscript, - ACTIONS(7095), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7099), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7097), 5, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10808), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137547] = 8, + anon_sym_POUND, + anon_sym__, + [230244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6013), 1, + ACTIONS(10437), 1, anon_sym_DQUOTE, - ACTIONS(6941), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6945), 1, - sym_raw_string, - STATE(3484), 1, - sym_string, - STATE(3606), 1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(6947), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6943), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137579] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7071), 1, - anon_sym_esac, - ACTIONS(7069), 2, - anon_sym_DOLLAR, - sym_word, - ACTIONS(7073), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [137603] = 8, + anon_sym__, + [230270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(823), 1, + ACTIONS(6519), 1, aux_sym_for_statement_token1, - ACTIONS(6685), 1, + ACTIONS(6521), 1, + anon_sym__, + ACTIONS(7903), 1, anon_sym_DQUOTE, - ACTIONS(7105), 1, - sym_raw_string, - STATE(544), 1, - sym_string, - STATE(579), 1, + STATE(3432), 1, sym_orig_simple_variable_name, - ACTIONS(825), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7103), 7, - anon_sym_BANG, + STATE(3502), 1, + sym_string, + ACTIONS(10810), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137635] = 8, + [230298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7109), 1, - anon_sym_RBRACE, - ACTIONS(7117), 1, - sym_variable_name, - STATE(1286), 1, - sym_subscript, - ACTIONS(7111), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7115), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7113), 5, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10812), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137667] = 8, + anon_sym_POUND, + anon_sym__, + [230324] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(725), 1, - aux_sym_for_statement_token1, - ACTIONS(5568), 1, + ACTIONS(10240), 1, anon_sym_DQUOTE, - ACTIONS(7121), 1, - sym_raw_string, - STATE(322), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(352), 1, - sym_string, - ACTIONS(727), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7119), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137699] = 8, + anon_sym__, + [230350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(109), 1, + ACTIONS(6479), 1, anon_sym_DQUOTE, - ACTIONS(956), 1, + ACTIONS(8467), 1, aux_sym_for_statement_token1, - ACTIONS(7125), 1, - sym_raw_string, - STATE(969), 1, - sym_orig_simple_variable_name, - STATE(992), 1, - sym_string, - ACTIONS(958), 2, - anon_sym_0, + ACTIONS(8471), 1, anon_sym__, - ACTIONS(7123), 7, - anon_sym_BANG, + STATE(3983), 1, + sym_string, + STATE(4004), 1, + sym_orig_simple_variable_name, + ACTIONS(8469), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137731] = 8, + [230378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7127), 1, + ACTIONS(10080), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7129), 1, - anon_sym_RBRACE, - ACTIONS(7137), 1, - sym_variable_name, - STATE(1226), 1, - sym_subscript, - ACTIONS(7131), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7135), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7133), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137763] = 8, + anon_sym_POUND, + anon_sym__, + [230404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(759), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(5744), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10814), 1, anon_sym_DQUOTE, - ACTIONS(7141), 1, - sym_raw_string, - STATE(611), 1, - sym_string, - STATE(626), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(761), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7139), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137795] = 8, + anon_sym__, + [230430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7143), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7145), 1, - anon_sym_RBRACE, - ACTIONS(7153), 1, - sym_variable_name, - STATE(1242), 1, - sym_subscript, - ACTIONS(7147), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7151), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7149), 5, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10816), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137827] = 8, + anon_sym_POUND, + anon_sym__, + [230456] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6402), 1, - anon_sym_DQUOTE, - ACTIONS(6891), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7157), 1, - sym_raw_string, - STATE(3125), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10818), 1, + anon_sym_DQUOTE, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(3158), 1, - sym_string, - ACTIONS(6893), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7155), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137859] = 8, + anon_sym__, + [230482] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(2701), 1, aux_sym_for_statement_token1, - ACTIONS(6500), 1, + ACTIONS(2703), 1, + anon_sym__, + ACTIONS(7521), 1, anon_sym_DQUOTE, - ACTIONS(7161), 1, - sym_raw_string, - STATE(2156), 1, + STATE(1002), 1, sym_string, - STATE(2172), 1, + STATE(1027), 1, sym_orig_simple_variable_name, - ACTIONS(1837), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7159), 7, - anon_sym_BANG, + ACTIONS(10820), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [137891] = 8, + [230510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7163), 1, + ACTIONS(10461), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7165), 1, - anon_sym_RBRACE, - ACTIONS(7173), 1, - sym_variable_name, - STATE(1022), 1, - sym_subscript, - ACTIONS(7167), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7171), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7169), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137923] = 8, + anon_sym_POUND, + anon_sym__, + [230536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7175), 1, + ACTIONS(10092), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7177), 1, - anon_sym_RBRACE, - ACTIONS(7185), 1, - sym_variable_name, - STATE(1090), 1, - sym_subscript, - ACTIONS(7179), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7183), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7181), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137955] = 8, + anon_sym_POUND, + anon_sym__, + [230562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 1, + ACTIONS(10088), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7189), 1, - anon_sym_RBRACE, - ACTIONS(7197), 1, - sym_variable_name, - STATE(1210), 1, - sym_subscript, - ACTIONS(7191), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7195), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7193), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [137987] = 8, + anon_sym_POUND, + anon_sym__, + [230588] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7201), 1, - anon_sym_RBRACE, - ACTIONS(7209), 1, - sym_variable_name, - STATE(1194), 1, - sym_subscript, - ACTIONS(7203), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10822), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7207), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7205), 5, + [230614] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10824), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [138019] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7213), 1, - anon_sym_esac, - ACTIONS(7211), 2, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_word, - ACTIONS(7215), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [138043] = 8, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230640] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7217), 1, + ACTIONS(3699), 1, + anon_sym_DQUOTE, + ACTIONS(4440), 1, aux_sym_for_statement_token1, - ACTIONS(7219), 1, - anon_sym_RBRACE, - ACTIONS(7227), 1, - sym_variable_name, - STATE(1266), 1, - sym_subscript, - ACTIONS(7221), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7225), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(4442), 1, anon_sym__, - ACTIONS(7223), 5, + STATE(1803), 1, + sym_orig_simple_variable_name, + STATE(1847), 1, + sym_string, + ACTIONS(4444), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138075] = 8, + anon_sym_POUND, + [230668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1822), 1, + ACTIONS(3455), 1, aux_sym_for_statement_token1, - ACTIONS(6444), 1, + ACTIONS(3457), 1, + anon_sym__, + ACTIONS(7687), 1, anon_sym_DQUOTE, - ACTIONS(7231), 1, - sym_raw_string, - STATE(1992), 1, + STATE(1192), 1, sym_string, - STATE(1993), 1, + STATE(1218), 1, sym_orig_simple_variable_name, - ACTIONS(1824), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7229), 7, - anon_sym_BANG, + ACTIONS(10826), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138107] = 8, + [230696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 1, + ACTIONS(4280), 1, + anon_sym_DQUOTE, + ACTIONS(8697), 1, aux_sym_for_statement_token1, - ACTIONS(7235), 1, - anon_sym_RBRACE, - ACTIONS(7243), 1, - sym_variable_name, - STATE(1178), 1, - sym_subscript, - ACTIONS(7237), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7241), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(8701), 1, anon_sym__, - ACTIONS(7239), 5, + STATE(4060), 1, + sym_string, + STATE(4111), 1, + sym_orig_simple_variable_name, + ACTIONS(8699), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [138139] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7247), 1, - anon_sym_esac, - ACTIONS(7245), 2, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_word, - ACTIONS(7249), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [138163] = 8, + anon_sym_AT, + anon_sym_POUND, + [230724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7251), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7253), 1, - anon_sym_RBRACE, - ACTIONS(7261), 1, - sym_variable_name, - STATE(1250), 1, - sym_subscript, - ACTIONS(7255), 2, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10828), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7259), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7257), 5, + [230750] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10132), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138195] = 8, + anon_sym_POUND, + anon_sym__, + [230776] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(10473), 1, anon_sym_DQUOTE, - ACTIONS(857), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7265), 1, - sym_raw_string, - STATE(727), 1, - sym_string, - STATE(738), 1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(859), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7263), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138227] = 8, + anon_sym__, + [230802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4027), 1, + ACTIONS(10100), 1, anon_sym_DQUOTE, - ACTIONS(5264), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(5270), 1, - sym_raw_string, - STATE(2496), 1, - sym_string, - STATE(2504), 1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(5266), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5268), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138259] = 8, + anon_sym__, + [230828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1093), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6775), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10830), 1, anon_sym_DQUOTE, - ACTIONS(7269), 1, - sym_raw_string, - STATE(854), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(984), 1, - sym_string, - ACTIONS(1095), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7267), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138291] = 8, + anon_sym__, + [230854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7271), 1, + ACTIONS(10288), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7273), 1, - anon_sym_RBRACE, - ACTIONS(7281), 1, - sym_variable_name, - STATE(1114), 1, - sym_subscript, - ACTIONS(7275), 2, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7279), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230880] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3806), 1, + anon_sym_DQUOTE, + ACTIONS(8621), 1, + aux_sym_for_statement_token1, + ACTIONS(8625), 1, anon_sym__, - ACTIONS(7277), 5, + STATE(4005), 1, + sym_string, + STATE(4036), 1, + sym_orig_simple_variable_name, + ACTIONS(8623), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138323] = 8, + anon_sym_POUND, + [230908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1899), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(1905), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10832), 1, anon_sym_DQUOTE, - ACTIONS(1907), 1, - sym_raw_string, - STATE(2233), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(2234), 1, - sym_string, - ACTIONS(1901), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1903), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138355] = 8, + anon_sym__, + [230934] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, + ACTIONS(185), 1, + anon_sym_DQUOTE, + ACTIONS(951), 1, aux_sym_for_statement_token1, - ACTIONS(7285), 1, - anon_sym_RBRACE, - ACTIONS(7293), 1, - sym_variable_name, - STATE(1024), 1, - sym_subscript, - ACTIONS(7287), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7291), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(953), 1, anon_sym__, - ACTIONS(7289), 5, + STATE(447), 1, + sym_orig_simple_variable_name, + STATE(451), 1, + sym_string, + ACTIONS(955), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138387] = 8, + anon_sym_POUND, + [230962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7297), 1, - anon_sym_RBRACE, - ACTIONS(7305), 1, - sym_variable_name, - STATE(1098), 1, - sym_subscript, - ACTIONS(7299), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7303), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7301), 5, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10834), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [138419] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7071), 1, - anon_sym_esac, - ACTIONS(7069), 2, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_word, - ACTIONS(7073), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [138443] = 8, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [230988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 1, + ACTIONS(10489), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7309), 1, - anon_sym_RBRACE, - ACTIONS(7317), 1, - sym_variable_name, - STATE(1218), 1, - sym_subscript, - ACTIONS(7311), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7315), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7313), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138475] = 8, + anon_sym_POUND, + anon_sym__, + [231014] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1919), 1, - anon_sym_DQUOTE, - ACTIONS(5296), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(5300), 1, - sym_raw_string, - STATE(2366), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10836), 1, + anon_sym_DQUOTE, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(2467), 1, - sym_string, - ACTIONS(5298), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5302), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138507] = 8, + anon_sym__, + [231040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3997), 1, + ACTIONS(10108), 1, anon_sym_DQUOTE, - ACTIONS(5248), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(5254), 1, - sym_raw_string, - STATE(2631), 1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(2634), 1, - sym_string, - ACTIONS(5250), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5252), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138539] = 8, + anon_sym__, + [231066] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_DQUOTE, - ACTIONS(1081), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7321), 1, - sym_raw_string, - STATE(899), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10838), 1, + anon_sym_DQUOTE, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(902), 1, - sym_string, - ACTIONS(1083), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7319), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138571] = 8, + anon_sym__, + [231092] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 1, + ACTIONS(10840), 1, aux_sym_for_statement_token1, - ACTIONS(7325), 1, - anon_sym_RBRACE, - ACTIONS(7333), 1, - sym_variable_name, - STATE(1034), 1, - sym_subscript, - ACTIONS(7327), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7331), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(10844), 1, + anon_sym_DQUOTE, + ACTIONS(10846), 1, anon_sym__, - ACTIONS(7329), 5, + STATE(5056), 1, + sym_orig_simple_variable_name, + STATE(5300), 1, + sym_string, + ACTIONS(10842), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138603] = 8, + anon_sym_POUND, + [231120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1800), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(1804), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10848), 1, anon_sym_DQUOTE, - ACTIONS(1806), 1, - sym_raw_string, - STATE(1856), 1, - sym_string, - STATE(1877), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(1802), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1808), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138635] = 8, + anon_sym__, + [231146] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1040), 1, + ACTIONS(3451), 1, aux_sym_for_statement_token1, - ACTIONS(6663), 1, + ACTIONS(3453), 1, + anon_sym__, + ACTIONS(7771), 1, anon_sym_DQUOTE, - ACTIONS(7337), 1, - sym_raw_string, - STATE(739), 1, - sym_string, - STATE(779), 1, + STATE(1156), 1, sym_orig_simple_variable_name, - ACTIONS(1042), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7335), 7, - anon_sym_BANG, + STATE(1247), 1, + sym_string, + ACTIONS(10850), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138667] = 8, + [231174] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 1, + ACTIONS(9988), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7341), 1, - anon_sym_RBRACE, - ACTIONS(7349), 1, - sym_variable_name, - STATE(1074), 1, - sym_subscript, - ACTIONS(7343), 2, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7347), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7345), 5, + [231200] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10852), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138699] = 8, + anon_sym_POUND, + anon_sym__, + [231226] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7351), 1, + ACTIONS(2713), 1, aux_sym_for_statement_token1, - ACTIONS(7353), 1, - anon_sym_RBRACE, - ACTIONS(7361), 1, - sym_variable_name, - STATE(1258), 1, - sym_subscript, - ACTIONS(7355), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7359), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(2715), 1, anon_sym__, - ACTIONS(7357), 5, + ACTIONS(7599), 1, + anon_sym_DQUOTE, + STATE(938), 1, + sym_string, + STATE(967), 1, + sym_orig_simple_variable_name, + ACTIONS(10854), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [138731] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7247), 1, - anon_sym_esac, - ACTIONS(7245), 2, - anon_sym_DOLLAR, - sym_word, - ACTIONS(7249), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [138755] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7247), 1, - anon_sym_esac, - ACTIONS(7245), 2, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - sym_word, - ACTIONS(7249), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [138779] = 8, + anon_sym_AT, + anon_sym_POUND, + [231254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(731), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(5648), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10856), 1, anon_sym_DQUOTE, - ACTIONS(7365), 1, - sym_raw_string, - STATE(390), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - STATE(452), 1, - sym_string, - ACTIONS(733), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7363), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138811] = 8, + anon_sym__, + [231280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7369), 1, - anon_sym_RBRACE, - ACTIONS(7377), 1, - sym_variable_name, - STATE(1202), 1, - sym_subscript, - ACTIONS(7371), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7375), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7373), 5, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10858), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138843] = 8, + anon_sym_POUND, + anon_sym__, + [231306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7379), 1, + ACTIONS(10304), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7381), 1, - anon_sym_RBRACE, - ACTIONS(7389), 1, - sym_variable_name, - STATE(1234), 1, - sym_subscript, - ACTIONS(7383), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7387), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7385), 5, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138875] = 8, + anon_sym_POUND, + anon_sym__, + [231332] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(791), 1, + ACTIONS(3734), 1, aux_sym_for_statement_token1, - ACTIONS(5792), 1, + ACTIONS(3736), 1, + anon_sym__, + ACTIONS(3738), 1, anon_sym_DQUOTE, - ACTIONS(7393), 1, - sym_raw_string, - STATE(770), 1, + STATE(1605), 1, sym_string, - STATE(810), 1, + STATE(1653), 1, sym_orig_simple_variable_name, - ACTIONS(793), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7391), 7, - anon_sym_BANG, + ACTIONS(3740), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138907] = 8, + [231360] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(5113), 1, aux_sym_for_statement_token1, - ACTIONS(7397), 1, - anon_sym_RBRACE, - ACTIONS(7405), 1, - sym_variable_name, - STATE(1122), 1, - sym_subscript, - ACTIONS(7399), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7403), 3, - anon_sym_DOLLAR, - anon_sym_0, + ACTIONS(5115), 1, anon_sym__, - ACTIONS(7401), 5, + ACTIONS(7293), 1, + anon_sym_DQUOTE, + STATE(2360), 1, + sym_orig_simple_variable_name, + STATE(2376), 1, + sym_string, + ACTIONS(10860), 7, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [138939] = 4, - ACTIONS(57), 1, + anon_sym_POUND, + [231388] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(7409), 1, - anon_sym_esac, - ACTIONS(7407), 2, + ACTIONS(10862), 1, anon_sym_DOLLAR, - sym_word, - ACTIONS(7411), 11, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(10864), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(10866), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(10868), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - anon_sym_LT_DOT_DOT_DOT, + ACTIONS(10870), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10872), 1, sym_semgrep_named_ellipsis, - [138963] = 8, + ACTIONS(10874), 1, + sym_heredoc_content, + ACTIONS(10876), 1, + sym_heredoc_end, + STATE(4642), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body__repeat1, + [231422] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1150), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(6727), 1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10878), 1, anon_sym_DQUOTE, - ACTIONS(7415), 1, - sym_raw_string, - STATE(842), 1, - sym_string, - STATE(973), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(1152), 2, - anon_sym_0, - anon_sym__, - ACTIONS(7413), 7, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [138995] = 8, + anon_sym__, + [231448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 1, + ACTIONS(10525), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7419), 1, - anon_sym_RBRACE, - ACTIONS(7427), 1, - sym_variable_name, - STATE(1066), 1, - sym_subscript, - ACTIONS(7421), 2, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(7425), 3, + anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_0, + anon_sym_AT, + anon_sym_POUND, anon_sym__, - ACTIONS(7423), 5, + [231474] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10880), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [231500] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + ACTIONS(10882), 1, + anon_sym_DQUOTE, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - sym_semgrep_metavariable, - [139027] = 8, + anon_sym_POUND, + anon_sym__, + [231526] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(179), 1, + ACTIONS(8165), 1, anon_sym_DQUOTE, - ACTIONS(751), 1, + ACTIONS(8971), 1, aux_sym_for_statement_token1, - ACTIONS(7431), 1, - sym_raw_string, - STATE(534), 1, - sym_string, - STATE(543), 1, - sym_orig_simple_variable_name, - ACTIONS(753), 2, - anon_sym_0, + ACTIONS(8973), 1, anon_sym__, - ACTIONS(7429), 7, - anon_sym_BANG, + STATE(4226), 1, + sym_orig_simple_variable_name, + STATE(4230), 1, + sym_string, + ACTIONS(10884), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, anon_sym_POUND, - [139059] = 6, + [231554] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(5485), 1, aux_sym_for_statement_token1, - ACTIONS(7437), 1, + ACTIONS(5487), 1, + anon_sym__, + ACTIONS(6619), 1, anon_sym_DQUOTE, - ACTIONS(7439), 1, - sym_string_content, - STATE(3071), 1, + STATE(3172), 1, + sym_string, + STATE(3215), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10886), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139086] = 6, + [231582] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(3501), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7441), 1, + ACTIONS(3503), 1, + anon_sym__, + ACTIONS(7249), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(1471), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + STATE(1549), 1, + sym_string, + ACTIONS(10888), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139113] = 6, + [231610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7443), 1, + ACTIONS(10890), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139140] = 6, + anon_sym__, + [231636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10543), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7445), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139167] = 6, + anon_sym__, + [231662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10144), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7447), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139194] = 6, + anon_sym__, + [231688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7449), 1, + ACTIONS(10892), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, + anon_sym_POUND, + anon_sym__, + [231714] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(472), 1, + anon_sym_DQUOTE, + ACTIONS(2042), 1, + aux_sym_for_statement_token1, + ACTIONS(2044), 1, anon_sym__, + STATE(713), 1, + sym_string, + STATE(744), 1, + sym_orig_simple_variable_name, + ACTIONS(10894), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, anon_sym_POUND, - [139221] = 6, + [231742] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(2333), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7451), 1, + ACTIONS(2335), 1, + anon_sym__, + ACTIONS(7551), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(787), 1, + sym_string, + STATE(823), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10896), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139248] = 6, + [231770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10385), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7453), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139275] = 6, + anon_sym__, + [231796] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10555), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7455), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139302] = 3, - ACTIONS(57), 1, + anon_sym__, + [231822] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, + ACTIONS(869), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139323] = 6, + ACTIONS(4491), 1, + aux_sym_for_statement_token1, + ACTIONS(4493), 1, + anon_sym__, + STATE(1832), 1, + sym_string, + STATE(1838), 1, + sym_orig_simple_variable_name, + ACTIONS(4495), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + [231850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7461), 1, + ACTIONS(10898), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139350] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7459), 1, - anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139371] = 3, - ACTIONS(57), 1, + anon_sym__, + [231876] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, + ACTIONS(4195), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139392] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7459), 1, + ACTIONS(4822), 1, + aux_sym_for_statement_token1, + ACTIONS(4824), 1, + anon_sym__, + STATE(1939), 1, + sym_string, + STATE(1973), 1, + sym_orig_simple_variable_name, + ACTIONS(4826), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139413] = 6, + anon_sym_AT, + anon_sym_POUND, + [231904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10152), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7463), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139440] = 3, - ACTIONS(57), 1, + anon_sym__, + [231930] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 1, - anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, + ACTIONS(10563), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139461] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7459), 1, + ACTIONS(10647), 1, + aux_sym_for_statement_token1, + ACTIONS(10653), 1, + sym_string_content, + STATE(4663), 1, + sym_orig_simple_variable_name, + ACTIONS(10649), 8, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(7457), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139482] = 6, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [231956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7465), 1, + ACTIONS(10900), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139509] = 6, + anon_sym__, + [231982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7467), 1, + ACTIONS(10902), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139536] = 6, + anon_sym__, + [232008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7469), 1, + ACTIONS(10904), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_POUND, + anon_sym__, + [232034] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 1, + anon_sym_DQUOTE, + ACTIONS(8765), 1, + aux_sym_for_statement_token1, + ACTIONS(8769), 1, + anon_sym__, + STATE(4160), 1, + sym_orig_simple_variable_name, + STATE(4169), 1, + sym_string, + ACTIONS(8767), 7, + anon_sym_DASH, anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_AT, - anon_sym_0, + anon_sym_POUND, + [232062] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(105), 1, + anon_sym_DQUOTE, + ACTIONS(945), 1, + aux_sym_for_statement_token1, + ACTIONS(947), 1, anon_sym__, + STATE(423), 1, + sym_string, + STATE(431), 1, + sym_orig_simple_variable_name, + ACTIONS(10906), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, anon_sym_POUND, - [139563] = 6, + [232090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10579), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7471), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139590] = 6, + anon_sym__, + [232116] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(6864), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7473), 1, + ACTIONS(6866), 1, + anon_sym__, + ACTIONS(7651), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(3633), 1, + sym_string, + STATE(3658), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10908), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139617] = 6, + [232144] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10583), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7475), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139644] = 6, + anon_sym__, + [232170] = 10, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10862), 1, + anon_sym_DOLLAR, + ACTIONS(10864), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10866), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10868), 1, + anon_sym_BQUOTE, + ACTIONS(10870), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10872), 1, + sym_semgrep_named_ellipsis, + ACTIONS(10910), 1, + sym_heredoc_content, + ACTIONS(10912), 1, + sym_heredoc_end, + STATE(4485), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body__repeat1, + [232204] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(2568), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7477), 1, + ACTIONS(2570), 1, + anon_sym__, + ACTIONS(6381), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(932), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + STATE(988), 1, + sym_string, + ACTIONS(10914), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139671] = 6, + [232232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(3158), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7479), 1, + ACTIONS(3160), 1, + anon_sym__, + ACTIONS(7405), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(1180), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + STATE(1226), 1, + sym_string, + ACTIONS(10916), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139698] = 6, + [232260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7481), 1, + ACTIONS(10918), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, + anon_sym_POUND, anon_sym__, + [232286] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3978), 1, + anon_sym_DQUOTE, + ACTIONS(4674), 1, + aux_sym_for_statement_token1, + ACTIONS(4676), 1, + anon_sym__, + STATE(1863), 1, + sym_string, + STATE(1882), 1, + sym_orig_simple_variable_name, + ACTIONS(4678), 7, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_AT, anon_sym_POUND, - [139725] = 6, + [232314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7483), 1, + ACTIONS(10920), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139752] = 6, + anon_sym__, + [232340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7485), 1, + ACTIONS(10922), 1, anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139779] = 6, + anon_sym__, + [232366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10280), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7487), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139806] = 6, + anon_sym__, + [232392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10417), 1, + anon_sym_DQUOTE, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7489), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139833] = 3, - ACTIONS(57), 1, + anon_sym__, + [232418] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7493), 1, + ACTIONS(982), 1, + sym_concat, + ACTIONS(980), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + sym_string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232437] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10930), 1, + anon_sym_LT_LT_LT, + ACTIONS(10928), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10926), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10924), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232460] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10938), 1, + anon_sym_LT_LT_LT, + ACTIONS(10936), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10934), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10932), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10942), 1, + sym_concat, + ACTIONS(10940), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [139854] = 6, + [232502] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10639), 1, + anon_sym_LT_LT_LT, + ACTIONS(10635), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10633), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10629), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10647), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, + ACTIONS(10653), 1, sym_string_content, - ACTIONS(7495), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + STATE(4663), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10649), 8, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139881] = 3, - ACTIONS(57), 1, + anon_sym__, + [232548] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7493), 1, + ACTIONS(10950), 1, + anon_sym_LT_LT_LT, + ACTIONS(10948), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10946), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10944), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232571] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10627), 1, + anon_sym_LT_LT_LT, + ACTIONS(10623), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10621), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10617), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10952), 1, + sym_concat, + ACTIONS(10331), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + sym_string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [139902] = 3, - ACTIONS(57), 1, + [232613] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10960), 1, + anon_sym_LT_LT_LT, + ACTIONS(10958), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10956), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10954), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232636] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10962), 1, + anon_sym_RBRACE3, + ACTIONS(10964), 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, + [232655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 1, + sym_concat, + ACTIONS(1032), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232674] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 1, + sym_concat, + ACTIONS(1028), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232693] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10972), 1, + anon_sym_LT_LT_LT, + ACTIONS(10970), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10968), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10966), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 1, + sym_concat, + ACTIONS(1040), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232735] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10960), 1, + anon_sym_LT_LT_LT, + ACTIONS(10978), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10976), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10974), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232758] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10986), 1, + anon_sym_LT_LT_LT, + ACTIONS(10984), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10982), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10980), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232781] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10994), 1, + anon_sym_LT_LT_LT, + ACTIONS(10992), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10990), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10988), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 1, + sym_concat, + ACTIONS(984), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232823] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11002), 1, + anon_sym_LT_LT_LT, + ACTIONS(11000), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10998), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10996), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232846] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10627), 1, + anon_sym_LT_LT_LT, + ACTIONS(10645), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10643), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10641), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232869] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11010), 1, + anon_sym_LT_LT_LT, + ACTIONS(11008), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11006), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11004), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232892] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10615), 1, + anon_sym_LT_LT_LT, + ACTIONS(10611), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10609), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10605), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [232915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1038), 1, + sym_concat, + ACTIONS(1036), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 1, + sym_concat, + ACTIONS(1048), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 1, + sym_concat, + ACTIONS(1044), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232972] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1050), 1, + sym_concat, + ACTIONS(1048), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [232991] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11018), 1, + anon_sym_LT_LT_LT, + ACTIONS(11016), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11014), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11012), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [233014] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11026), 1, + anon_sym_LT_LT_LT, + ACTIONS(11024), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11022), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11020), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [233037] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, + ACTIONS(1006), 1, + sym_concat, + ACTIONS(1004), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(7073), 12, - sym_special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + sym_string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [139923] = 3, - ACTIONS(57), 1, + [233056] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOLLAR, - ACTIONS(7249), 12, - sym_special_character, + ACTIONS(11028), 1, + anon_sym_LT_LT_LT, + ACTIONS(10665), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(10663), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(10659), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [233079] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11036), 1, + anon_sym_LT_LT_LT, + ACTIONS(11034), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11032), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11030), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [233102] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11038), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(11040), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(11042), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11044), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [139944] = 6, + ACTIONS(11046), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4735), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(5208), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [233130] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11048), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11050), 1, + anon_sym_LPAREN, + ACTIONS(11052), 1, + anon_sym_if, + ACTIONS(11054), 1, + anon_sym_LBRACE, + ACTIONS(11056), 1, + anon_sym_LBRACK, + ACTIONS(11058), 1, + anon_sym_LBRACK_LBRACK, + STATE(3433), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233158] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11062), 1, + anon_sym_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + STATE(3522), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233186] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11072), 1, + anon_sym_LPAREN, + STATE(3528), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233214] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(10964), 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, + [233230] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11072), 1, + anon_sym_LPAREN, + STATE(3527), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(10840), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7497), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(10846), 1, + anon_sym__, + STATE(5056), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(10842), 7, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [139971] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7499), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [139998] = 6, + [233280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11074), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7501), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11078), 1, + anon_sym__, + STATE(4442), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11076), 7, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140025] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7503), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140052] = 6, + [233302] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11072), 1, + anon_sym_LPAREN, + STATE(3495), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233330] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11080), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11082), 1, + anon_sym_LPAREN, + ACTIONS(11084), 1, + anon_sym_if, + ACTIONS(11086), 1, + anon_sym_LBRACE, + ACTIONS(11088), 1, + anon_sym_LBRACK, + ACTIONS(11090), 1, + anon_sym_LBRACK_LBRACK, + STATE(3358), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233358] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11092), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11094), 1, + anon_sym_LPAREN, + ACTIONS(11096), 1, + anon_sym_if, + ACTIONS(11098), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_LBRACK, + ACTIONS(11102), 1, + anon_sym_LBRACK_LBRACK, + STATE(4066), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11104), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7505), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11108), 1, + anon_sym__, + STATE(2580), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11106), 7, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7507), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140106] = 6, + [233408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11110), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7509), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11114), 1, + anon_sym__, + STATE(4724), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11112), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140133] = 6, + [233430] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11048), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11050), 1, + anon_sym_LPAREN, + ACTIONS(11052), 1, + anon_sym_if, + ACTIONS(11054), 1, + anon_sym_LBRACE, + ACTIONS(11056), 1, + anon_sym_LBRACK, + ACTIONS(11058), 1, + anon_sym_LBRACK_LBRACK, + STATE(3414), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233458] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7511), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(11116), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140160] = 6, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [233474] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11080), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11084), 1, + anon_sym_if, + ACTIONS(11086), 1, + anon_sym_LBRACE, + ACTIONS(11088), 1, + anon_sym_LBRACK, + ACTIONS(11090), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11118), 1, + anon_sym_LPAREN, + STATE(3298), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233502] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11092), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11096), 1, + anon_sym_if, + ACTIONS(11098), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_LBRACK, + ACTIONS(11102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11120), 1, + anon_sym_LPAREN, + STATE(4104), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233530] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11080), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11082), 1, + anon_sym_LPAREN, + ACTIONS(11084), 1, + anon_sym_if, + ACTIONS(11086), 1, + anon_sym_LBRACE, + ACTIONS(11088), 1, + anon_sym_LBRACK, + ACTIONS(11090), 1, + anon_sym_LBRACK_LBRACK, + STATE(3357), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233558] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11122), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7513), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11126), 1, + anon_sym__, + STATE(2363), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11124), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140187] = 6, + [233580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11128), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7515), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11132), 1, + anon_sym__, + STATE(2511), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11130), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140214] = 6, + [233602] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11134), 1, + anon_sym_LPAREN, + STATE(3405), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233630] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11092), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11096), 1, + anon_sym_if, + ACTIONS(11098), 1, + anon_sym_LBRACE, + ACTIONS(11100), 1, + anon_sym_LBRACK, + ACTIONS(11102), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11120), 1, + anon_sym_LPAREN, + STATE(4116), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11136), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7517), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11140), 1, + anon_sym__, + STATE(2052), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11138), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140241] = 6, + [233680] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11142), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7519), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11146), 1, + anon_sym__, + STATE(2503), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11144), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140268] = 6, + [233702] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11060), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11064), 1, + anon_sym_if, + ACTIONS(11066), 1, + anon_sym_LBRACE, + ACTIONS(11068), 1, + anon_sym_LBRACK, + ACTIONS(11070), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11072), 1, + anon_sym_LPAREN, + STATE(3449), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(11148), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7521), 1, - anon_sym_DQUOTE, - STATE(3071), 1, + ACTIONS(11152), 1, + anon_sym__, + STATE(2483), 1, sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11150), 7, anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, anon_sym_POUND, - [140295] = 3, - ACTIONS(57), 1, + [233752] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7069), 1, + ACTIONS(10331), 10, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(7073), 12, - sym_special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + sym_string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140316] = 3, - ACTIONS(57), 1, + [233768] = 8, + ACTIONS(71), 1, sym_comment, - ACTIONS(7493), 1, - anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [140337] = 3, - ACTIONS(57), 1, + ACTIONS(11048), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11052), 1, + anon_sym_if, + ACTIONS(11054), 1, + anon_sym_LBRACE, + ACTIONS(11056), 1, + anon_sym_LBRACK, + ACTIONS(11058), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11154), 1, + anon_sym_LPAREN, + STATE(3382), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [233796] = 10, + ACTIONS(71), 1, sym_comment, - ACTIONS(7493), 1, - anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, + ACTIONS(11156), 1, + anon_sym_SLASH, + ACTIONS(11158), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(11160), 1, + anon_sym_RBRACE3, + ACTIONS(11162), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(11164), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [140358] = 6, + ACTIONS(11166), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11168), 1, + sym_regex_no_slash, + STATE(5161), 1, + sym_string, + STATE(5297), 1, + sym_command_substitution, + [233827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, + ACTIONS(978), 1, + aux_sym_statements_token1, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11172), 1, + sym_concat, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(976), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + sym_special_character, + [233850] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(11174), 1, aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7523), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140385] = 6, + ACTIONS(11176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11178), 1, + sym_semgrep_metavariable, + STATE(4732), 1, + sym_expansion_max_length_expression, + STATE(4750), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + [233877] = 8, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5780), 1, + aux_sym_number_token1, + ACTIONS(5782), 1, + aux_sym_number_token2, + ACTIONS(11174), 1, + aux_sym_for_statement_token1, + ACTIONS(11176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11178), 1, + sym_semgrep_metavariable, + STATE(4754), 1, + sym_expansion_max_length_expression, + STATE(4750), 3, + sym_number, + sym_expansion, + sym_expansion_max_length_binary_expression, + [233904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7525), 1, + ACTIONS(11182), 1, anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(11184), 1, + anon_sym_RBRACE3, + ACTIONS(11180), 2, + anon_sym_RPAREN, + sym_raw_string, + ACTIONS(11186), 2, + sym_regex, + aux_sym_expansion_regex_token1, + STATE(4725), 2, + sym_string, + aux_sym_expansion_regex_repeat1, + [233926] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1048), 1, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140412] = 6, + ACTIONS(1050), 7, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [233942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7527), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140439] = 3, - ACTIONS(57), 1, + ACTIONS(962), 1, + aux_sym_statements_token1, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11188), 1, + sym_concat, + STATE(4727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(960), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + [233964] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7245), 1, + ACTIONS(1040), 1, anon_sym_DOLLAR, - ACTIONS(7249), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(1042), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140460] = 6, - ACTIONS(3), 1, + [233980] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7529), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1036), 1, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140487] = 6, + ACTIONS(1038), 7, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + sym_semgrep_named_ellipsis, + [233996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7531), 1, + ACTIONS(11193), 1, anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140514] = 6, + ACTIONS(11196), 1, + anon_sym_RBRACE3, + ACTIONS(11190), 2, + anon_sym_RPAREN, + sym_raw_string, + ACTIONS(11198), 2, + sym_regex, + aux_sym_expansion_regex_token1, + STATE(4720), 2, + sym_string, + aux_sym_expansion_regex_repeat1, + [234018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7533), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140541] = 3, - ACTIONS(57), 1, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11172), 1, + sym_concat, + ACTIONS(11203), 1, + aux_sym_statements_token1, + ACTIONS(11205), 1, + anon_sym_in, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11201), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234042] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7493), 1, + ACTIONS(980), 1, anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(982), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140562] = 3, - ACTIONS(57), 1, + [234058] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7493), 1, + ACTIONS(1032), 1, anon_sym_DOLLAR, - ACTIONS(7491), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(1034), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140583] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7535), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140610] = 3, - ACTIONS(57), 1, + [234074] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7407), 1, + ACTIONS(1028), 1, anon_sym_DOLLAR, - ACTIONS(7411), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(1030), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140631] = 6, + [234090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7537), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140658] = 3, - ACTIONS(57), 1, - sym_comment, - ACTIONS(7069), 1, - anon_sym_DOLLAR, - ACTIONS(7073), 12, - sym_special_character, + ACTIONS(11182), 1, anon_sym_DQUOTE, + ACTIONS(11209), 1, + anon_sym_RBRACE3, + ACTIONS(11207), 2, + anon_sym_RPAREN, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [140679] = 6, + ACTIONS(11211), 2, + sym_regex, + aux_sym_expansion_regex_token1, + STATE(4720), 2, + sym_string, + aux_sym_expansion_regex_repeat1, + [234112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7539), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140706] = 3, - ACTIONS(57), 1, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11172), 1, + sym_concat, + ACTIONS(11215), 1, + aux_sym_statements_token1, + ACTIONS(11217), 1, + anon_sym_in, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11213), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234136] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(7543), 1, + ACTIONS(968), 1, + aux_sym_statements_token1, + ACTIONS(11219), 1, + aux_sym_concatenation_token1, + ACTIONS(11222), 1, + sym_concat, + STATE(4727), 1, + aux_sym_concatenation_repeat1, + ACTIONS(966), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + [234158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11172), 1, + sym_concat, + ACTIONS(11227), 1, + aux_sym_statements_token1, + ACTIONS(11229), 1, + anon_sym_in, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11225), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234182] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1044), 1, anon_sym_DOLLAR, - ACTIONS(7541), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(1046), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140727] = 3, - ACTIONS(57), 1, + [234198] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7211), 1, + ACTIONS(1048), 1, anon_sym_DOLLAR, - ACTIONS(7215), 12, - sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(1050), 7, + sym_heredoc_content, + sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, + anon_sym_DOLLAR_BQUOTE, sym_semgrep_named_ellipsis, - [140748] = 6, + [234214] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7545), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11170), 1, + aux_sym_concatenation_token1, + ACTIONS(11172), 1, + sym_concat, + ACTIONS(11233), 1, + aux_sym_statements_token1, + ACTIONS(11235), 1, + anon_sym_in, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11231), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234238] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11237), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140775] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7547), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(1038), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1036), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(994), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(992), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234281] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140802] = 3, - ACTIONS(57), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234294] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOLLAR, - ACTIONS(7249), 12, + ACTIONS(1050), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234309] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1010), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1030), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1028), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234337] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(978), 4, + anon_sym_PIPE, + anon_sym_RPAREN, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [140823] = 6, + anon_sym_DOT_DOT_DOT_GT, + [234354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7549), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(1026), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1024), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234369] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(968), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(966), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234384] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1042), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140850] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7551), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(1050), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1048), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + aux_sym_statements_token1, + ACTIONS(11217), 1, + anon_sym_in, + ACTIONS(11241), 1, + sym_special_character, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + ACTIONS(11213), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1046), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1044), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234448] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1018), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140877] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7553), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(1002), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1000), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234476] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140904] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7555), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(11227), 1, + aux_sym_statements_token1, + ACTIONS(11229), 1, + anon_sym_in, + ACTIONS(11241), 1, + sym_special_character, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + ACTIONS(11225), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234510] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11243), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140931] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234523] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1046), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7557), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(1056), 1, + aux_sym_statements_token1, + ACTIONS(11245), 1, + sym_special_character, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1054), 4, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + [234555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1040), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234570] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11237), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [234585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(984), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234600] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11250), 1, + anon_sym_COLON, + ACTIONS(11252), 1, + anon_sym_RBRACE3, + ACTIONS(11243), 5, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140958] = 6, + anon_sym_SLASH, + anon_sym_PERCENT, + [234617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7559), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, + ACTIONS(990), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(988), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1006), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1004), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(998), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(996), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234662] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1038), 7, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [140985] = 3, - ACTIONS(57), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [234675] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 1, - anon_sym_DOLLAR, - ACTIONS(7561), 12, + ACTIONS(1010), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1008), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1032), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(982), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(980), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1020), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11203), 1, + aux_sym_statements_token1, + ACTIONS(11205), 1, + anon_sym_in, + ACTIONS(11241), 1, sym_special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + ACTIONS(11201), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234756] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11233), 1, + aux_sym_statements_token1, + ACTIONS(11235), 1, + anon_sym_in, + ACTIONS(11241), 1, + sym_special_character, + STATE(4752), 1, + aux_sym_for_statement_repeat1, + ACTIONS(11231), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [234777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1014), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1012), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1018), 2, + sym_concat, + aux_sym_statements_token1, + ACTIONS(1016), 5, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + anon_sym_in, + aux_sym_concatenation_token1, + [234807] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11254), 1, + anon_sym_fi, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + STATE(5571), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [234827] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7691), 1, + anon_sym_BQUOTE, + ACTIONS(7693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11260), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1183), 2, + sym_expansion, + sym_command_substitution, + [234847] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4288), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4292), 1, + anon_sym_BQUOTE, + ACTIONS(4294), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11262), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4075), 2, + sym_expansion, + sym_command_substitution, + [234867] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3614), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3618), 1, + anon_sym_BQUOTE, + ACTIONS(3620), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11264), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1797), 2, + sym_expansion, + sym_command_substitution, + [234887] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7297), 1, + anon_sym_BQUOTE, + ACTIONS(7299), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11266), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2269), 2, + sym_expansion, + sym_command_substitution, + [234907] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7555), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7557), 1, + anon_sym_BQUOTE, + ACTIONS(7559), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11268), 1, anon_sym_DOLLAR_LPAREN, + STATE(805), 2, + sym_expansion, + sym_command_substitution, + [234927] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6942), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6946), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_LT_DOT_DOT_DOT, - sym_semgrep_named_ellipsis, - [141006] = 6, + ACTIONS(6948), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11270), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3912), 2, + sym_expansion, + sym_command_substitution, + [234947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7565), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [141033] = 6, - ACTIONS(3), 1, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3477), 1, + sym_c_terminator, + STATE(4892), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [234967] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7567), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [141060] = 6, - ACTIONS(3), 1, + ACTIONS(6389), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6393), 1, + anon_sym_BQUOTE, + ACTIONS(6395), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11274), 1, + anon_sym_DOLLAR_LPAREN, + STATE(934), 2, + sym_expansion, + sym_command_substitution, + [234987] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - ACTIONS(7569), 1, - anon_sym_DQUOTE, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [141087] = 7, - ACTIONS(57), 1, + ACTIONS(193), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(197), 1, + anon_sym_BQUOTE, + ACTIONS(199), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11276), 1, + anon_sym_DOLLAR_LPAREN, + STATE(449), 2, + sym_expansion, + sym_command_substitution, + [235007] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(3775), 1, - anon_sym_RBRACE, - ACTIONS(7571), 1, - aux_sym_for_statement_token1, - ACTIONS(7577), 1, - sym_variable_name, - STATE(1253), 1, - sym_subscript, - ACTIONS(7575), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7573), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141115] = 7, - ACTIONS(57), 1, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3196), 1, + sym_c_terminator, + STATE(4849), 1, + aux_sym_for_body_repeat1, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + [235027] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2239), 1, - anon_sym_RBRACE, ACTIONS(7579), 1, - aux_sym_for_statement_token1, - ACTIONS(7585), 1, - sym_variable_name, - STATE(1061), 1, - sym_subscript, - ACTIONS(7583), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7581), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141143] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7581), 1, + anon_sym_BQUOTE, + ACTIONS(7583), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11278), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1548), 2, + sym_expansion, + sym_command_substitution, + [235047] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7433), 1, - aux_sym_for_statement_token1, - ACTIONS(7439), 1, - sym_string_content, - STATE(3071), 1, - sym_orig_simple_variable_name, - ACTIONS(7435), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - anon_sym_POUND, - [141167] = 7, - ACTIONS(57), 1, + ACTIONS(7653), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7655), 1, + anon_sym_BQUOTE, + ACTIONS(7657), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11280), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3652), 2, + sym_expansion, + sym_command_substitution, + [235067] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(4049), 1, - anon_sym_RBRACE, - ACTIONS(7587), 1, - aux_sym_for_statement_token1, - ACTIONS(7593), 1, - sym_variable_name, - STATE(1173), 1, - sym_subscript, - ACTIONS(7591), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7589), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141195] = 7, - ACTIONS(57), 1, + ACTIONS(9200), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9202), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9204), 1, + anon_sym_BQUOTE, + ACTIONS(9206), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2331), 2, + sym_expansion, + sym_command_substitution, + [235087] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3455), 1, - anon_sym_RBRACE, - ACTIONS(7595), 1, - aux_sym_for_statement_token1, - ACTIONS(7601), 1, - sym_variable_name, - STATE(1213), 1, - sym_subscript, - ACTIONS(7599), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7597), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141223] = 7, - ACTIONS(57), 1, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11282), 1, + anon_sym_fi, + STATE(5938), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [235107] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11286), 1, + anon_sym_RPAREN, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + STATE(5237), 1, + aux_sym_case_item_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [235127] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7971), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7973), 1, + anon_sym_BQUOTE, + ACTIONS(7975), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11288), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3485), 2, + sym_expansion, + sym_command_substitution, + [235147] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5435), 1, + anon_sym_BQUOTE, + ACTIONS(5437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11290), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4926), 2, + sym_expansion, + sym_command_substitution, + [235167] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3583), 1, - anon_sym_RBRACE, ACTIONS(7603), 1, - aux_sym_for_statement_token1, - ACTIONS(7609), 1, - sym_variable_name, - STATE(1229), 1, - sym_subscript, - ACTIONS(7607), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7605), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141251] = 7, - ACTIONS(57), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7605), 1, + anon_sym_BQUOTE, + ACTIONS(7607), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11292), 1, + anon_sym_DOLLAR_LPAREN, + STATE(963), 2, + sym_expansion, + sym_command_substitution, + [235187] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(3647), 1, - anon_sym_RBRACE, - ACTIONS(7611), 1, - aux_sym_for_statement_token1, - ACTIONS(7617), 1, - sym_variable_name, - STATE(1237), 1, - sym_subscript, - ACTIONS(7615), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7613), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141279] = 7, - ACTIONS(57), 1, + ACTIONS(11239), 1, + aux_sym_concatenation_token1, + ACTIONS(11294), 1, + sym_concat, + STATE(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(962), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT_GT, + [235205] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2175), 1, - anon_sym_RBRACE, - ACTIONS(7619), 1, - aux_sym_for_statement_token1, - ACTIONS(7625), 1, - sym_variable_name, - STATE(1053), 1, - sym_subscript, - ACTIONS(7623), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7621), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141307] = 7, - ACTIONS(57), 1, + ACTIONS(7999), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8001), 1, + anon_sym_BQUOTE, + ACTIONS(8003), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11296), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3371), 2, + sym_expansion, + sym_command_substitution, + [235225] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2111), 1, - anon_sym_RBRACE, - ACTIONS(7627), 1, - aux_sym_for_statement_token1, - ACTIONS(7633), 1, - sym_variable_name, - STATE(1045), 1, - sym_subscript, - ACTIONS(7631), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7629), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141335] = 7, - ACTIONS(57), 1, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3444), 1, + sym_c_terminator, + STATE(4776), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [235245] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2815), 1, - anon_sym_RBRACE, - ACTIONS(7635), 1, - aux_sym_for_statement_token1, - ACTIONS(7641), 1, - sym_variable_name, - STATE(1133), 1, - sym_subscript, - ACTIONS(7639), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7637), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141363] = 7, - ACTIONS(57), 1, + ACTIONS(6817), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6821), 1, + anon_sym_BQUOTE, + ACTIONS(6823), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11298), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3180), 2, + sym_expansion, + sym_command_substitution, + [235265] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(2047), 1, - anon_sym_RBRACE, - ACTIONS(7643), 1, - aux_sym_for_statement_token1, - ACTIONS(7649), 1, - sym_variable_name, - STATE(1037), 1, - sym_subscript, - ACTIONS(7647), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7645), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141391] = 7, - ACTIONS(57), 1, + STATE(4792), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11300), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(968), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT_GT, + [235281] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1947), 1, - anon_sym_RBRACE, - ACTIONS(7651), 1, - aux_sym_for_statement_token1, - ACTIONS(7657), 1, - sym_variable_name, - STATE(1029), 1, - sym_subscript, - ACTIONS(7655), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7653), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141419] = 7, - ACTIONS(57), 1, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11303), 1, + anon_sym_fi, + STATE(5641), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [235301] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2431), 1, - anon_sym_RBRACE, - ACTIONS(7659), 1, - aux_sym_for_statement_token1, - ACTIONS(7665), 1, - sym_variable_name, - STATE(1085), 1, - sym_subscript, - ACTIONS(7663), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7661), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141447] = 7, - ACTIONS(57), 1, + ACTIONS(6777), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6781), 1, + anon_sym_BQUOTE, + ACTIONS(6783), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11305), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1724), 2, + sym_expansion, + sym_command_substitution, + [235321] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2495), 1, - anon_sym_RBRACE, - ACTIONS(7667), 1, - aux_sym_for_statement_token1, - ACTIONS(7673), 1, - sym_variable_name, - STATE(1093), 1, - sym_subscript, - ACTIONS(7671), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7669), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141475] = 7, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11307), 1, + anon_sym_RPAREN, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + STATE(5069), 1, + aux_sym_case_item_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [235341] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(3519), 1, - anon_sym_RBRACE, - ACTIONS(7675), 1, - aux_sym_for_statement_token1, - ACTIONS(7681), 1, - sym_variable_name, - STATE(1221), 1, - sym_subscript, - ACTIONS(7679), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7677), 5, + ACTIONS(11309), 1, + anon_sym_RBRACE3, + ACTIONS(11243), 5, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141503] = 7, - ACTIONS(57), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + [235355] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3327), 1, - anon_sym_RBRACE, - ACTIONS(7683), 1, - aux_sym_for_statement_token1, - ACTIONS(7689), 1, - sym_variable_name, - STATE(1197), 1, - sym_subscript, - ACTIONS(7687), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7685), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141531] = 7, - ACTIONS(57), 1, + ACTIONS(4203), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4207), 1, + anon_sym_BQUOTE, + ACTIONS(4209), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11311), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1985), 2, + sym_expansion, + sym_command_substitution, + [235375] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3839), 1, - anon_sym_RBRACE, - ACTIONS(7691), 1, - aux_sym_for_statement_token1, - ACTIONS(7697), 1, - sym_variable_name, - STATE(1261), 1, - sym_subscript, - ACTIONS(7695), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7693), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141559] = 7, - ACTIONS(57), 1, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11313), 1, + anon_sym_fi, + STATE(5792), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [235395] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(7699), 1, - aux_sym_for_statement_token1, - ACTIONS(7705), 1, - sym_variable_name, - STATE(1141), 1, - sym_subscript, - ACTIONS(7703), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7701), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141587] = 7, - ACTIONS(57), 1, + ACTIONS(7271), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7273), 1, + anon_sym_BQUOTE, + ACTIONS(7275), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11315), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1417), 2, + sym_expansion, + sym_command_substitution, + [235415] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3897), 1, - anon_sym_RBRACE, - ACTIONS(7707), 1, - aux_sym_for_statement_token1, - ACTIONS(7713), 1, - sym_variable_name, - STATE(1279), 1, - sym_subscript, - ACTIONS(7711), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7709), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141615] = 7, - ACTIONS(57), 1, + ACTIONS(8093), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8095), 1, + anon_sym_BQUOTE, + ACTIONS(8097), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11317), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1083), 2, + sym_expansion, + sym_command_substitution, + [235435] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3711), 1, - anon_sym_RBRACE, - ACTIONS(7715), 1, - aux_sym_for_statement_token1, - ACTIONS(7721), 1, - sym_variable_name, - STATE(1245), 1, - sym_subscript, - ACTIONS(7719), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7717), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141643] = 7, - ACTIONS(57), 1, + ACTIONS(7773), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7775), 1, + anon_sym_BQUOTE, + ACTIONS(7777), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11319), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1158), 2, + sym_expansion, + sym_command_substitution, + [235455] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6743), 1, + anon_sym_BQUOTE, + ACTIONS(6745), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11321), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3254), 2, + sym_expansion, + sym_command_substitution, + [235475] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(428), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(448), 1, + anon_sym_LBRACE, + ACTIONS(11323), 1, + anon_sym_SEMI, + ACTIONS(11325), 1, + anon_sym_do, + STATE(3757), 2, + sym_do_group, + sym_compound_statement, + [235495] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8231), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8233), 1, + anon_sym_BQUOTE, + ACTIONS(8235), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11327), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3307), 2, + sym_expansion, + sym_command_substitution, + [235515] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6551), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6555), 1, + anon_sym_BQUOTE, + ACTIONS(6557), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11329), 1, + anon_sym_DOLLAR_LPAREN, + STATE(796), 2, + sym_expansion, + sym_command_substitution, + [235535] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(1911), 1, - anon_sym_RBRACE, - ACTIONS(7723), 1, - aux_sym_for_statement_token1, - ACTIONS(7729), 1, - sym_variable_name, - STATE(1165), 1, - sym_subscript, - ACTIONS(7727), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7725), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141671] = 7, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11331), 1, + anon_sym_RPAREN, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + STATE(5191), 1, + aux_sym_case_item_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [235555] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3263), 1, - anon_sym_RBRACE, - ACTIONS(7731), 1, - aux_sym_for_statement_token1, - ACTIONS(7737), 1, - sym_variable_name, - STATE(1189), 1, - sym_subscript, - ACTIONS(7735), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7733), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141699] = 7, - ACTIONS(57), 1, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(875), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4707), 1, + anon_sym_BQUOTE, + ACTIONS(11333), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1846), 2, + sym_expansion, + sym_command_substitution, + [235575] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2303), 1, - anon_sym_RBRACE, - ACTIONS(7739), 1, - aux_sym_for_statement_token1, - ACTIONS(7745), 1, - sym_variable_name, - STATE(1069), 1, - sym_subscript, - ACTIONS(7743), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7741), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141727] = 7, - ACTIONS(57), 1, + ACTIONS(556), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACE, + ACTIONS(11335), 1, + anon_sym_SEMI, + ACTIONS(11337), 1, + anon_sym_do, + STATE(3860), 2, + sym_do_group, + sym_compound_statement, + [235595] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3391), 1, - anon_sym_RBRACE, - ACTIONS(7747), 1, - aux_sym_for_statement_token1, - ACTIONS(7753), 1, - sym_variable_name, - STATE(1205), 1, - sym_subscript, - ACTIONS(7751), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7749), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141755] = 7, - ACTIONS(57), 1, + ACTIONS(2508), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2512), 1, + anon_sym_BQUOTE, + ACTIONS(2514), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11339), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1627), 2, + sym_expansion, + sym_command_substitution, + [235615] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2943), 1, - anon_sym_RBRACE, - ACTIONS(7755), 1, - aux_sym_for_statement_token1, - ACTIONS(7761), 1, - sym_variable_name, - STATE(1149), 1, - sym_subscript, - ACTIONS(7759), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7757), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141783] = 7, - ACTIONS(57), 1, + ACTIONS(7387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7391), 1, + anon_sym_BQUOTE, + ACTIONS(7393), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2552), 2, + sym_expansion, + sym_command_substitution, + [235635] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2623), 1, - anon_sym_RBRACE, - ACTIONS(7763), 1, - aux_sym_for_statement_token1, - ACTIONS(7769), 1, - sym_variable_name, - STATE(1109), 1, - sym_subscript, - ACTIONS(7767), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7765), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141811] = 7, - ACTIONS(57), 1, + ACTIONS(7457), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7459), 1, + anon_sym_BQUOTE, + ACTIONS(7461), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11341), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3499), 2, + sym_expansion, + sym_command_substitution, + [235655] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(7771), 1, - aux_sym_for_statement_token1, - ACTIONS(7777), 1, - sym_variable_name, - STATE(1157), 1, - sym_subscript, - ACTIONS(7775), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7773), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141839] = 7, - ACTIONS(57), 1, + ACTIONS(11343), 1, + anon_sym_SLASH, + ACTIONS(11347), 1, + anon_sym_RBRACE3, + ACTIONS(11349), 1, + sym_expansion_word, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [235675] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(3199), 1, - anon_sym_RBRACE, - ACTIONS(7779), 1, - aux_sym_for_statement_token1, - ACTIONS(7785), 1, - sym_variable_name, - STATE(1181), 1, - sym_subscript, - ACTIONS(7783), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7781), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141867] = 7, - ACTIONS(57), 1, + ACTIONS(7433), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7435), 1, + anon_sym_BQUOTE, + ACTIONS(7437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11351), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1282), 2, + sym_expansion, + sym_command_substitution, + [235695] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2751), 1, - anon_sym_RBRACE, - ACTIONS(7787), 1, - aux_sym_for_statement_token1, - ACTIONS(7793), 1, - sym_variable_name, - STATE(1125), 1, - sym_subscript, - ACTIONS(7791), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7789), 5, + ACTIONS(11353), 1, + anon_sym_RBRACE3, + ACTIONS(11243), 5, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141895] = 7, - ACTIONS(57), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + [235709] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2687), 1, - anon_sym_RBRACE, - ACTIONS(7795), 1, - aux_sym_for_statement_token1, - ACTIONS(7801), 1, - sym_variable_name, - STATE(1117), 1, - sym_subscript, - ACTIONS(7799), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7797), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141923] = 7, - ACTIONS(57), 1, + ACTIONS(11355), 1, + anon_sym_SLASH, + ACTIONS(11357), 1, + anon_sym_RBRACE3, + ACTIONS(11359), 1, + sym_expansion_word, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [235729] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(2367), 1, - anon_sym_RBRACE, - ACTIONS(7803), 1, - aux_sym_for_statement_token1, - ACTIONS(7809), 1, - sym_variable_name, - STATE(1077), 1, - sym_subscript, - ACTIONS(7807), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7805), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141951] = 7, - ACTIONS(57), 1, + ACTIONS(9118), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9120), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9122), 1, + anon_sym_BQUOTE, + ACTIONS(9124), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2569), 2, + sym_expansion, + sym_command_substitution, + [235749] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(2559), 1, - anon_sym_RBRACE, - ACTIONS(7811), 1, - aux_sym_for_statement_token1, - ACTIONS(7817), 1, - sym_variable_name, - STATE(1101), 1, - sym_subscript, - ACTIONS(7815), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(7813), 5, + ACTIONS(11361), 1, + anon_sym_RBRACE3, + ACTIONS(11243), 5, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_QMARK, anon_sym_STAR, - anon_sym_AT, - sym_semgrep_metavariable, - [141979] = 10, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + [235763] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7539), 1, - anon_sym_DQUOTE, - ACTIONS(7819), 1, - anon_sym_DOLLAR, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11363), 1, + anon_sym_fi, + STATE(5516), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [235783] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11365), 1, + anon_sym_fi, + STATE(5736), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [235803] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7329), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(7331), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(7333), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(7335), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2502), 2, sym_expansion, sym_command_substitution, - [142012] = 10, - ACTIONS(3), 1, + [235823] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7483), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(3768), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(3772), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7831), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(3774), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11367), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1925), 2, sym_expansion, sym_command_substitution, - [142045] = 10, - ACTIONS(3), 1, + [235843] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(604), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(608), 1, + anon_sym_BQUOTE, + ACTIONS(610), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11369), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(836), 2, + sym_expansion, + sym_command_substitution, + [235863] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6349), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6353), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7833), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6355), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11371), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2183), 2, sym_expansion, sym_command_substitution, - [142078] = 10, - ACTIONS(3), 1, + [235883] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(7729), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(7731), 1, + anon_sym_BQUOTE, + ACTIONS(7733), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(3419), 2, + sym_expansion, + sym_command_substitution, + [235903] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11377), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(11375), 4, + anon_sym_LPAREN_LPAREN, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + [235917] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6425), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7835), 1, - anon_sym_DOLLAR, - ACTIONS(7837), 1, - anon_sym_DQUOTE, - STATE(2975), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6427), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11379), 1, + anon_sym_DOLLAR_LPAREN, + STATE(896), 2, sym_expansion, sym_command_substitution, - [142111] = 10, + [235937] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3431), 1, + sym_c_terminator, + STATE(4892), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [235957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, + ACTIONS(1014), 2, + sym_regex, + aux_sym_expansion_regex_token1, + ACTIONS(1012), 4, + anon_sym_RPAREN, anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + sym_raw_string, + anon_sym_RBRACE3, + [235971] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4151), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(4155), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7839), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(4157), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11381), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4113), 2, sym_expansion, sym_command_substitution, - [142144] = 10, - ACTIONS(3), 1, + [235991] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(7835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(7839), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, ACTIONS(7841), 1, - anon_sym_DOLLAR, - ACTIONS(7843), 1, - anon_sym_DQUOTE, - STATE(3021), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11383), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4768), 2, sym_expansion, sym_command_substitution, - [142177] = 10, - ACTIONS(3), 1, + [236011] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(7353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(7355), 1, + anon_sym_BQUOTE, + ACTIONS(7357), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(1394), 2, + sym_expansion, + sym_command_substitution, + [236031] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6491), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7845), 1, - anon_sym_DOLLAR, - ACTIONS(7847), 1, - anon_sym_DQUOTE, - STATE(2991), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6493), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11387), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3952), 2, sym_expansion, sym_command_substitution, - [142210] = 10, - ACTIONS(3), 1, + [236051] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11389), 1, + anon_sym_fi, + STATE(5556), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [236071] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6627), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(6631), 1, + anon_sym_BQUOTE, + ACTIONS(6633), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11391), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(3173), 2, + sym_expansion, + sym_command_substitution, + [236091] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3990), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7849), 1, - anon_sym_DOLLAR, - ACTIONS(7851), 1, - anon_sym_DQUOTE, - STATE(2992), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(3992), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11393), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1875), 2, sym_expansion, sym_command_substitution, - [142243] = 10, + [236111] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(137), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(153), 1, + anon_sym_LBRACE, + ACTIONS(11395), 1, + anon_sym_SEMI, + ACTIONS(11397), 1, + anon_sym_do, + STATE(4284), 2, + sym_do_group, + sym_compound_statement, + [236131] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3427), 1, + sym_c_terminator, + STATE(4892), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [236151] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11399), 1, + anon_sym_RBRACE3, + ACTIONS(11243), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [236165] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7525), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(7527), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7853), 1, - anon_sym_DOLLAR, - ACTIONS(7855), 1, - anon_sym_DQUOTE, - STATE(2990), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(7529), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11401), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1018), 2, sym_expansion, sym_command_substitution, - [142276] = 10, + [236185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3434), 1, + sym_c_terminator, + STATE(4827), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [236205] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(3707), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(3711), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7857), 1, - anon_sym_DOLLAR, - ACTIONS(7859), 1, - anon_sym_DQUOTE, - STATE(3011), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(3713), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11403), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1776), 2, sym_expansion, sym_command_substitution, - [142309] = 10, - ACTIONS(3), 1, + [236225] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7521), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(679), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4359), 1, + anon_sym_BQUOTE, + ACTIONS(11405), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(1952), 2, + sym_expansion, + sym_command_substitution, + [236245] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(2550), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2554), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7861), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(2556), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11407), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1684), 2, sym_expansion, sym_command_substitution, - [142342] = 10, - ACTIONS(3), 1, + [236265] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(6667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(6671), 1, + anon_sym_BQUOTE, + ACTIONS(6673), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11409), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(955), 2, + sym_expansion, + sym_command_substitution, + [236285] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6591), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6593), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7863), 1, - anon_sym_DOLLAR, - ACTIONS(7865), 1, - anon_sym_DQUOTE, - STATE(2988), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6595), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11411), 1, + anon_sym_DOLLAR_LPAREN, + STATE(751), 2, sym_expansion, sym_command_substitution, - [142375] = 10, - ACTIONS(3), 1, + [236305] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7495), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(3814), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(3818), 1, + anon_sym_BQUOTE, + ACTIONS(3820), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11413), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(4026), 2, + sym_expansion, + sym_command_substitution, + [236325] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(4420), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4424), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7867), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(4426), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11415), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4135), 2, + sym_expansion, + sym_command_substitution, + [236345] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7497), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7501), 1, + anon_sym_BQUOTE, + ACTIONS(7503), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11417), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1671), 2, sym_expansion, sym_command_substitution, - [142408] = 10, + [236365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(8671), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3166), 1, + sym_c_terminator, + STATE(4892), 1, + aux_sym_for_body_repeat1, + ACTIONS(8669), 2, + anon_sym_SEMI, + anon_sym_AMP, + [236385] = 6, + ACTIONS(61), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(65), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7869), 1, - anon_sym_DOLLAR, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(2995), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(67), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11419), 1, + anon_sym_DOLLAR_LPAREN, + STATE(786), 2, sym_expansion, sym_command_substitution, - [142441] = 10, - ACTIONS(3), 1, + [236405] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(7907), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(7909), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7873), 1, - anon_sym_DOLLAR, - ACTIONS(7875), 1, - anon_sym_DQUOTE, - STATE(2998), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(7911), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11421), 1, + anon_sym_DOLLAR_LPAREN, + STATE(3501), 2, sym_expansion, sym_command_substitution, - [142474] = 10, - ACTIONS(3), 1, + [236425] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7525), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(11162), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(11164), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7877), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(11166), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11176), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4746), 2, sym_expansion, sym_command_substitution, - [142507] = 10, - ACTIONS(3), 1, + [236445] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7451), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(7407), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(7409), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7879), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(7411), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11423), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1237), 2, sym_expansion, sym_command_substitution, - [142540] = 10, + [236465] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11425), 1, + anon_sym_SLASH, + ACTIONS(11427), 1, + anon_sym_RBRACE3, + ACTIONS(11429), 1, + sym_expansion_word, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [236485] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_elif, + ACTIONS(11258), 1, + anon_sym_else, + ACTIONS(11431), 1, + anon_sym_fi, + STATE(5747), 1, + sym_else_clause, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [236505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(8723), 1, + aux_sym_statements_token1, + ACTIONS(11272), 1, + anon_sym_COMMA, + STATE(3465), 1, + sym_c_terminator, + STATE(4837), 1, + aux_sym_for_body_repeat1, + ACTIONS(8721), 2, + anon_sym_SEMI, + anon_sym_AMP, + [236525] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(8171), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7881), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(8173), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11433), 1, + anon_sym_DOLLAR_LPAREN, + STATE(4279), 2, sym_expansion, sym_command_substitution, - [142573] = 10, - ACTIONS(3), 1, + [236545] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7471), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(6984), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(6986), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7883), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6988), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2060), 2, sym_expansion, sym_command_substitution, - [142606] = 10, + [236565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, + ACTIONS(1022), 2, + sym_regex, + aux_sym_expansion_regex_token1, + ACTIONS(1020), 4, + anon_sym_RPAREN, anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + sym_raw_string, + anon_sym_RBRACE3, + [236579] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11435), 1, + anon_sym_RPAREN, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + STATE(5207), 1, + aux_sym_case_item_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [236599] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(833), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(837), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7885), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(839), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11437), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1638), 2, sym_expansion, sym_command_substitution, - [142639] = 10, - ACTIONS(3), 1, + [236619] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(9032), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(9034), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7887), 1, - anon_sym_DOLLAR, - ACTIONS(7889), 1, - anon_sym_DQUOTE, - STATE(3006), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(9036), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2394), 2, sym_expansion, sym_command_substitution, - [142672] = 10, - ACTIONS(3), 1, + [236639] = 6, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, sym_comment, - ACTIONS(7453), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(11439), 1, + anon_sym_SEMI, + ACTIONS(11441), 1, + anon_sym_do, + STATE(3715), 2, + sym_do_group, + sym_compound_statement, + [236659] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(113), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, + ACTIONS(117), 1, + anon_sym_BQUOTE, + ACTIONS(119), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11443), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + STATE(428), 2, + sym_expansion, + sym_command_substitution, + [236679] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7251), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7253), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7891), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(7255), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11445), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1587), 2, sym_expansion, sym_command_substitution, - [142705] = 10, + [236699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7531), 1, + ACTIONS(1026), 2, + sym_regex, + aux_sym_expansion_regex_token1, + ACTIONS(1024), 4, + anon_sym_RPAREN, anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + sym_raw_string, + anon_sym_RBRACE3, + [236713] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(480), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(484), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7893), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(486), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11447), 1, + anon_sym_DOLLAR_LPAREN, + STATE(731), 2, sym_expansion, sym_command_substitution, - [142738] = 10, - ACTIONS(3), 1, + [236733] = 6, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, + ACTIONS(6703), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, + ACTIONS(6705), 1, anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7895), 1, - anon_sym_DOLLAR, - ACTIONS(7897), 1, - anon_sym_DQUOTE, - STATE(3035), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, + ACTIONS(6707), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11449), 1, + anon_sym_DOLLAR_LPAREN, + STATE(846), 2, sym_expansion, sym_command_substitution, - [142771] = 10, + [236753] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11307), 1, + anon_sym_RPAREN, + ACTIONS(11451), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + STATE(5082), 1, + aux_sym_case_item_repeat1, + [236772] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3904), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [236789] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11457), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [236804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11233), 1, + aux_sym_statements_token1, + ACTIONS(11235), 1, + anon_sym_in, + ACTIONS(11231), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [236819] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11459), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT_GT, + [236834] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11464), 1, + aux_sym_statements_token1, + ACTIONS(11466), 1, + anon_sym_in, + ACTIONS(11462), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [236849] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4259), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [236866] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(556), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(572), 1, + anon_sym_LBRACE, + ACTIONS(11337), 1, + anon_sym_do, + STATE(3865), 2, + sym_do_group, + sym_compound_statement, + [236883] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1034), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [236894] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3907), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [236911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11227), 1, + aux_sym_statements_token1, + ACTIONS(11229), 1, + anon_sym_in, + ACTIONS(11225), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [236926] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3727), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [236943] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(4905), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(11472), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [236958] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(998), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [236969] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4260), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [236986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11215), 1, + aux_sym_statements_token1, + ACTIONS(11217), 1, + anon_sym_in, + ACTIONS(11213), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [237001] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4182), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237018] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11478), 1, + anon_sym_elif, + ACTIONS(11476), 2, + anon_sym_fi, + anon_sym_else, + STATE(4886), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [237033] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1002), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237044] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3780), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237061] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(994), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237072] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1042), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237083] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11483), 1, + sym_concat, + ACTIONS(5449), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [237096] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11487), 1, + aux_sym_statements_token1, + ACTIONS(11489), 1, + anon_sym_COMMA, + STATE(4892), 1, + aux_sym_for_body_repeat1, + ACTIONS(11485), 2, + anon_sym_SEMI, + anon_sym_AMP, + [237113] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237124] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3908), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237141] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(990), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237152] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3733), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237169] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1014), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237180] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4177), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237197] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4251), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237214] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3905), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237231] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3730), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237248] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237263] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(428), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(448), 1, + anon_sym_LBRACE, + ACTIONS(11325), 1, + anon_sym_do, + STATE(3783), 2, + sym_do_group, + sym_compound_statement, + [237280] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3903), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237297] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(4905), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11494), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(11496), 2, + sym_concat, + aux_sym_concatenation_token1, + [237312] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3899), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237329] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4188), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237346] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1026), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237357] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11435), 1, + anon_sym_RPAREN, + ACTIONS(11451), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + STATE(5219), 1, + aux_sym_case_item_repeat1, + [237376] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3786), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237393] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3703), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237410] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3705), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237427] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3900), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237444] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3739), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237461] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3766), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237478] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7539), 1, + anon_sym_RBRACE3, + STATE(4959), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237493] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3738), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237510] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(986), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237521] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11425), 1, + anon_sym_SLASH, + ACTIONS(11427), 1, + anon_sym_RBRACE3, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [237538] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4221), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237555] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(137), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(153), 1, + anon_sym_LBRACE, + ACTIONS(11397), 1, + anon_sym_do, + STATE(4271), 2, + sym_do_group, + sym_compound_statement, + [237572] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11499), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237587] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1030), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237598] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11286), 1, + anon_sym_RPAREN, + ACTIONS(11451), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + STATE(5068), 1, + aux_sym_case_item_repeat1, + [237617] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4286), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237634] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1018), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237645] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3679), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11503), 1, + aux_sym_statements_token1, + ACTIONS(11505), 1, + anon_sym_in, + ACTIONS(11501), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [237677] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11453), 1, + sym_simple_heredoc_body_, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + STATE(5458), 1, + sym_heredoc_body_, + STATE(3906), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237694] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1022), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237705] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3734), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237722] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4252), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237739] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11499), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237754] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(982), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237765] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7063), 1, + anon_sym_RBRACE3, + STATE(4937), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237780] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4255), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237797] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11499), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [237812] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4203), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237829] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1038), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237840] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4183), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237857] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3774), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237874] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4256), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237891] = 6, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11331), 1, + anon_sym_RPAREN, + ACTIONS(11451), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + STATE(5199), 1, + aux_sym_case_item_repeat1, + [237910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7899), 1, - anon_sym_DOLLAR, - ACTIONS(7901), 1, - anon_sym_DQUOTE, - STATE(3033), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [142804] = 10, - ACTIONS(3), 1, + ACTIONS(11509), 1, + aux_sym_statements_token1, + ACTIONS(11511), 1, + anon_sym_in, + ACTIONS(11507), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [237925] = 5, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(71), 1, sym_comment, - ACTIONS(7443), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7903), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [142837] = 9, - ACTIONS(57), 1, + ACTIONS(11441), 1, + anon_sym_do, + STATE(3769), 2, + sym_do_group, + sym_compound_statement, + [237942] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7905), 1, - anon_sym_DOLLAR, - ACTIONS(7908), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7911), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7914), 1, - anon_sym_BQUOTE, - ACTIONS(7917), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7920), 1, - sym_heredoc_body_middle, - ACTIONS(7923), 1, - sym_heredoc_body_end, - STATE(2999), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [142868] = 10, - ACTIONS(3), 1, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3788), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [237959] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7925), 1, - anon_sym_DOLLAR, - ACTIONS(7927), 1, - anon_sym_DQUOTE, - STATE(2977), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [142901] = 10, - ACTIONS(3), 1, + ACTIONS(1050), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237970] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7929), 1, - anon_sym_DOLLAR, - ACTIONS(7931), 1, - anon_sym_DQUOTE, - STATE(2989), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [142934] = 10, - ACTIONS(3), 1, + ACTIONS(968), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237981] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7499), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7933), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [142967] = 10, + ACTIONS(1006), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [237992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7935), 1, - anon_sym_DOLLAR, - ACTIONS(7937), 1, - anon_sym_DQUOTE, - STATE(3039), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143000] = 9, - ACTIONS(57), 1, + ACTIONS(11203), 1, + aux_sym_statements_token1, + ACTIONS(11205), 1, + anon_sym_in, + ACTIONS(11201), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [238007] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7949), 1, - sym_heredoc_body_middle, - ACTIONS(7951), 1, - sym_heredoc_body_end, - STATE(3028), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143031] = 10, - ACTIONS(3), 1, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4219), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [238024] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7437), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7953), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143064] = 10, - ACTIONS(3), 1, + ACTIONS(1050), 5, + sym_concat, + sym_expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238035] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7537), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7955), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143097] = 10, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11470), 1, + sym_simple_heredoc_body_, + STATE(5619), 1, + sym_heredoc_body_, + STATE(3737), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [238052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7957), 1, - anon_sym_DOLLAR, - ACTIONS(7959), 1, - anon_sym_DQUOTE, - STATE(2973), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143130] = 10, - ACTIONS(3), 1, + ACTIONS(11515), 1, + aux_sym_statements_token1, + ACTIONS(11517), 1, + anon_sym_in, + ACTIONS(11513), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [238067] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7961), 1, - anon_sym_DOLLAR, - ACTIONS(7963), 1, - anon_sym_DQUOTE, - STATE(2983), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143163] = 10, - ACTIONS(3), 1, + ACTIONS(11355), 1, + anon_sym_SLASH, + ACTIONS(11357), 1, + anon_sym_RBRACE3, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [238084] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11519), 1, + sym_concat, + ACTIONS(5496), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [238097] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11343), 1, + anon_sym_SLASH, + ACTIONS(11347), 1, + anon_sym_RBRACE3, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [238114] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7965), 1, - anon_sym_DOLLAR, - ACTIONS(7967), 1, - anon_sym_DQUOTE, - STATE(3015), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143196] = 9, - ACTIONS(57), 1, + ACTIONS(1046), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [238125] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11492), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(7075), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [238140] = 4, + ACTIONS(71), 1, + sym_comment, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + ACTIONS(11521), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [238155] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7969), 1, - sym_heredoc_body_middle, - ACTIONS(7971), 1, - sym_heredoc_body_end, - STATE(2999), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143227] = 10, - ACTIONS(3), 1, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11474), 1, + sym_simple_heredoc_body_, + STATE(5740), 1, + sym_heredoc_body_, + STATE(4210), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [238172] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(7475), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7973), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143260] = 9, - ACTIONS(57), 1, + ACTIONS(11523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(11248), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [238185] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7975), 1, - sym_heredoc_body_middle, - ACTIONS(7977), 1, - sym_heredoc_body_end, - STATE(3010), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143291] = 10, - ACTIONS(3), 1, + ACTIONS(1046), 5, + sym_concat, + sym_expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238196] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7979), 1, - anon_sym_DOLLAR, - ACTIONS(7981), 1, - anon_sym_DQUOTE, - STATE(3017), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143324] = 10, - ACTIONS(3), 1, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11468), 1, + sym_simple_heredoc_body_, + STATE(5706), 1, + sym_heredoc_body_, + STATE(4257), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [238213] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7983), 1, - anon_sym_DOLLAR, - ACTIONS(7985), 1, - anon_sym_DQUOTE, - STATE(3024), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143357] = 10, - ACTIONS(3), 1, + ACTIONS(1050), 5, + sym_concat, + sym_expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238224] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7545), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7987), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143390] = 10, - ACTIONS(3), 1, + ACTIONS(11455), 1, + sym_heredoc_body_beginning, + ACTIONS(11481), 1, + sym_simple_heredoc_body_, + STATE(5877), 1, + sym_heredoc_body_, + STATE(3765), 2, + sym_heredoc_body, + sym_simple_heredoc_body, + [238241] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7989), 1, - anon_sym_DOLLAR, - ACTIONS(7991), 1, - anon_sym_DQUOTE, - STATE(2974), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143423] = 10, - ACTIONS(3), 1, + ACTIONS(11525), 1, + anon_sym_RBRACE3, + STATE(4967), 1, + aux_sym_expansion_body_repeat1, + ACTIONS(11527), 3, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + [238256] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7505), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7993), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143456] = 10, - ACTIONS(3), 1, + ACTIONS(1010), 5, + sym_concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + anon_sym_DOT_DOT_DOT_GT, + [238267] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7995), 1, - anon_sym_DOLLAR, - ACTIONS(7998), 1, - anon_sym_DQUOTE, - ACTIONS(8000), 1, - sym_string_content, - ACTIONS(8003), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8009), 1, - anon_sym_BQUOTE, - ACTIONS(8012), 1, - sym_semgrep_named_ellipsis, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143489] = 10, - ACTIONS(3), 1, + ACTIONS(11530), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238281] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8015), 1, - anon_sym_DOLLAR, - ACTIONS(8017), 1, - anon_sym_DQUOTE, - STATE(3023), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143522] = 9, - ACTIONS(57), 1, + ACTIONS(11532), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238295] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8019), 1, - sym_heredoc_body_middle, - ACTIONS(8021), 1, - sym_heredoc_body_end, - STATE(3031), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143553] = 10, - ACTIONS(3), 1, + ACTIONS(11534), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238309] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7569), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8023), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143586] = 10, - ACTIONS(3), 1, + ACTIONS(11536), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238323] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11538), 1, + sym_special_character, + STATE(4973), 1, + aux_sym_for_statement_repeat1, + ACTIONS(1056), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [238337] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11541), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238351] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [238361] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11543), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238375] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1046), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [238385] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [238395] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11545), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238409] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11547), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238423] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7441), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8025), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143619] = 10, - ACTIONS(3), 1, + ACTIONS(11549), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238437] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7553), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8027), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143652] = 10, - ACTIONS(3), 1, + ACTIONS(11551), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238451] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7507), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8029), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143685] = 5, - ACTIONS(3), 1, + ACTIONS(11553), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238465] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8031), 1, - aux_sym_for_statement_token1, - STATE(3094), 1, - sym_orig_simple_variable_name, - ACTIONS(8035), 2, - anon_sym_0, - anon_sym__, - ACTIONS(8033), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - anon_sym_POUND, - [143708] = 10, - ACTIONS(3), 1, + ACTIONS(5579), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [238475] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8037), 1, - anon_sym_DOLLAR, - ACTIONS(8039), 1, - anon_sym_DQUOTE, - STATE(3034), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143741] = 10, - ACTIONS(3), 1, + ACTIONS(11555), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238489] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8041), 1, - anon_sym_DOLLAR, - ACTIONS(8043), 1, - anon_sym_DQUOTE, - STATE(3029), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143774] = 9, - ACTIONS(57), 1, + ACTIONS(11557), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238503] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7969), 1, - sym_heredoc_body_middle, - ACTIONS(8045), 1, - sym_heredoc_body_end, - STATE(2999), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143805] = 10, - ACTIONS(3), 1, + ACTIONS(11559), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238517] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7559), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8047), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143838] = 10, - ACTIONS(3), 1, + ACTIONS(1014), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238527] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8049), 1, - anon_sym_DOLLAR, - ACTIONS(8051), 1, - anon_sym_DQUOTE, - STATE(2994), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143871] = 9, - ACTIONS(57), 1, + ACTIONS(11494), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238537] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7939), 1, - anon_sym_DOLLAR, - ACTIONS(7941), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7943), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7945), 1, - anon_sym_BQUOTE, - ACTIONS(7947), 1, - sym_semgrep_named_ellipsis, - ACTIONS(7969), 1, - sym_heredoc_body_middle, - ACTIONS(8053), 1, - sym_heredoc_body_end, - STATE(2999), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [143902] = 10, - ACTIONS(3), 1, + ACTIONS(11561), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238551] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8055), 1, - anon_sym_DOLLAR, - ACTIONS(8057), 1, - anon_sym_DQUOTE, - STATE(3002), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143935] = 10, - ACTIONS(3), 1, + ACTIONS(11563), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238565] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7455), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8059), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [143968] = 10, - ACTIONS(3), 1, + ACTIONS(1042), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238575] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8061), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144001] = 10, - ACTIONS(3), 1, + ACTIONS(11565), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11567), 1, + anon_sym_esac, + ACTIONS(11569), 1, + anon_sym_SEMI_AMP, + ACTIONS(11571), 1, + anon_sym_SEMI_SEMI_AMP, + [238591] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7485), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8063), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144034] = 10, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + ACTIONS(11521), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [238605] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8065), 1, - anon_sym_DOLLAR, - ACTIONS(8067), 1, - anon_sym_DQUOTE, - STATE(2985), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144067] = 10, - ACTIONS(3), 1, + ACTIONS(11573), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238619] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8069), 1, - anon_sym_DOLLAR, - ACTIONS(8071), 1, - anon_sym_DQUOTE, - STATE(3005), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144100] = 10, - ACTIONS(3), 1, + ACTIONS(11575), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238633] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8073), 1, - anon_sym_DOLLAR, - ACTIONS(8075), 1, - anon_sym_DQUOTE, - STATE(3022), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144133] = 10, - ACTIONS(3), 1, + ACTIONS(1022), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238643] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_DQUOTE, - ACTIONS(7821), 1, - sym_string_content, - ACTIONS(7823), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7825), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7827), 1, - anon_sym_BQUOTE, - ACTIONS(7829), 1, - sym_semgrep_named_ellipsis, - ACTIONS(8077), 1, - anon_sym_DOLLAR, - STATE(3018), 1, - aux_sym_string_repeat1, - STATE(3077), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [144166] = 3, - ACTIONS(3), 1, + ACTIONS(1038), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238653] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 1, + ACTIONS(11577), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1513), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144182] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238667] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 1, + ACTIONS(11579), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1477), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144198] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238681] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 1, + ACTIONS(11581), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1481), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144214] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [238695] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8079), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8081), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144230] = 3, - ACTIONS(3), 1, + ACTIONS(1026), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238705] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 1, + ACTIONS(11583), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1485), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144246] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238719] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 1, + ACTIONS(11585), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1489), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144262] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238733] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 1, + ACTIONS(11587), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1493), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144278] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238747] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(8083), 1, + ACTIONS(11567), 1, + anon_sym_esac, + ACTIONS(11589), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11591), 1, + anon_sym_SEMI_AMP, + ACTIONS(11593), 1, + anon_sym_SEMI_SEMI_AMP, + [238763] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11595), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(7998), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144294] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238777] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 1, + ACTIONS(11597), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1497), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144310] = 7, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [238791] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(91), 1, - anon_sym_LPAREN, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - anon_sym_LBRACK, - ACTIONS(99), 1, - anon_sym_LBRACK_LBRACK, - STATE(2380), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144334] = 3, - ACTIONS(3), 1, + ACTIONS(11599), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238805] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(11601), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1501), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144350] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [238819] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(8085), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8087), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144366] = 3, - ACTIONS(57), 1, + ACTIONS(11603), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11605), 1, + anon_sym_esac, + ACTIONS(11607), 1, + anon_sym_SEMI_AMP, + ACTIONS(11609), 1, + anon_sym_SEMI_SEMI_AMP, + [238835] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11611), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11613), 1, + anon_sym_esac, + ACTIONS(11615), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [238849] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11617), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238863] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11605), 1, + anon_sym_esac, + ACTIONS(11619), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11621), 1, + anon_sym_SEMI_AMP, + ACTIONS(11623), 1, + anon_sym_SEMI_SEMI_AMP, + [238879] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238889] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1046), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238899] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11625), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238913] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [238923] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11627), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11629), 1, + anon_sym_esac, + ACTIONS(11631), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [238937] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8089), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8091), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144382] = 7, - ACTIONS(57), 1, + ACTIONS(11633), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238951] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - anon_sym_LBRACK, - ACTIONS(99), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8093), 1, - anon_sym_LPAREN, - STATE(2347), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144406] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(11635), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [238965] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(8095), 1, - anon_sym_LPAREN, - STATE(2484), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144430] = 3, - ACTIONS(3), 1, + ACTIONS(11605), 1, + anon_sym_esac, + ACTIONS(11637), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11639), 1, + anon_sym_SEMI_AMP, + ACTIONS(11641), 1, + anon_sym_SEMI_SEMI_AMP, + [238981] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 1, + ACTIONS(11643), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1451), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144446] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [238995] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 1, + ACTIONS(4396), 4, sym_concat, - ACTIONS(1505), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144462] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239005] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 1, + ACTIONS(1002), 4, sym_concat, - ACTIONS(1428), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144478] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239015] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11645), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [239025] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5449), 4, + sym_external_expansion_sym_hash, + sym_external_expansion_sym_bang, + sym_external_expansion_sym_equal, + anon_sym_RBRACE3, + [239035] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11343), 1, + anon_sym_SLASH, + ACTIONS(11347), 1, + anon_sym_RBRACE3, + ACTIONS(11647), 1, + sym_special_character, + STATE(4973), 1, + aux_sym_for_statement_repeat1, + [239051] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 1, + ACTIONS(11649), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1509), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144494] = 7, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [239065] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(169), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8097), 1, - anon_sym_LPAREN, - STATE(2104), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144518] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + ACTIONS(11651), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239079] = 4, + ACTIONS(71), 1, sym_comment, - STATE(2557), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144542] = 7, - ACTIONS(57), 1, + ACTIONS(11653), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239093] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(91), 1, - anon_sym_LPAREN, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(97), 1, - anon_sym_LBRACK, - ACTIONS(99), 1, - anon_sym_LBRACK_LBRACK, - STATE(2386), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144566] = 3, - ACTIONS(3), 1, + ACTIONS(11655), 1, + anon_sym_RBRACE3, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, + sym_concat, + aux_sym_concatenation_token1, + [239107] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(11657), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1416), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144582] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239121] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 1, + ACTIONS(11659), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1517), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144598] = 7, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [239135] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(169), 1, - anon_sym_LBRACK_LBRACK, - STATE(2122), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144622] = 3, + ACTIONS(11661), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1441), 1, + ACTIONS(11665), 1, + aux_sym_statements_token1, + ACTIONS(11663), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_COMMA, + [239161] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11667), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1439), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144638] = 3, + aux_sym_concatenation_token1, + [239175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1461), 1, + ACTIONS(11487), 1, + aux_sym_statements_token1, + ACTIONS(11485), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_COMMA, + [239187] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11669), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1459), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144654] = 7, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(23), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(29), 1, - anon_sym_LBRACK, - ACTIONS(31), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [239201] = 2, + ACTIONS(71), 1, sym_comment, - STATE(2508), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144678] = 5, - ACTIONS(3), 1, + ACTIONS(4400), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239211] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11671), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239225] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1361), 1, - anon_sym_LF, - ACTIONS(8099), 1, + ACTIONS(11673), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - STATE(3119), 1, + aux_sym_concatenation_token1, + [239239] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11675), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, aux_sym_concatenation_repeat1, - ACTIONS(1359), 5, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6125), 1, + aux_sym_statements_token1, + ACTIONS(6123), 3, anon_sym_SEMI, - anon_sym_SEMI_SEMI, anon_sym_AMP, - anon_sym_in, - sym_special_character, - [144698] = 3, - ACTIONS(3), 1, + anon_sym_COMMA, + [239265] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 1, + ACTIONS(11677), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1420), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144714] = 7, - ACTIONS(57), 1, - sym_comment, - ACTIONS(147), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(161), 1, - anon_sym_LPAREN, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(167), 1, - anon_sym_LBRACK, - ACTIONS(169), 1, - anon_sym_LBRACK_LBRACK, - STATE(2117), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [144738] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239279] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 1, + ACTIONS(11679), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1424), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144754] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [239293] = 5, + ACTIONS(71), 1, sym_comment, - ACTIONS(8101), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8103), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144770] = 3, - ACTIONS(3), 1, + ACTIONS(11425), 1, + anon_sym_SLASH, + ACTIONS(11427), 1, + anon_sym_RBRACE3, + ACTIONS(11647), 1, + sym_special_character, + STATE(4973), 1, + aux_sym_for_statement_repeat1, + [239309] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11681), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239323] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 1, + ACTIONS(11683), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1447), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144786] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239337] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11355), 1, + anon_sym_SLASH, + ACTIONS(11357), 1, + anon_sym_RBRACE3, + ACTIONS(11647), 1, + sym_special_character, + STATE(4973), 1, + aux_sym_for_statement_repeat1, + [239353] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 1, + ACTIONS(11685), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1443), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144802] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239367] = 5, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11567), 1, + anon_sym_esac, + ACTIONS(11687), 1, + anon_sym_SEMI_SEMI, + ACTIONS(11689), 1, + anon_sym_SEMI_AMP, + ACTIONS(11691), 1, + anon_sym_SEMI_SEMI_AMP, + [239383] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 1, + ACTIONS(11693), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1540), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144818] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239397] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 1, + ACTIONS(982), 4, sym_concat, - ACTIONS(1465), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144834] = 3, - ACTIONS(3), 1, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239407] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8107), 1, + ACTIONS(1034), 4, sym_concat, - ACTIONS(8105), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144850] = 3, - ACTIONS(57), 1, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239417] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8109), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8111), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [144866] = 3, - ACTIONS(3), 1, + ACTIONS(1030), 4, + sym_concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [239427] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 1, + ACTIONS(11695), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1469), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144882] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239441] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(11697), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1473), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144898] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239455] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 1, + ACTIONS(11699), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1447), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144914] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [239469] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 1, + ACTIONS(11701), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - ACTIONS(1455), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144930] = 3, - ACTIONS(57), 1, + aux_sym_concatenation_token1, + [239483] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1420), 1, - anon_sym_DOLLAR, - ACTIONS(1422), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [144945] = 5, - ACTIONS(3), 1, + ACTIONS(11703), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239497] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 1, - anon_sym_LF, - ACTIONS(8113), 1, + ACTIONS(11705), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, + aux_sym_concatenation_repeat1, + ACTIONS(11239), 2, sym_concat, - STATE(3084), 1, + aux_sym_concatenation_token1, + [239511] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11707), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4788), 1, aux_sym_concatenation_repeat1, - ACTIONS(1383), 4, - anon_sym_SEMI, + ACTIONS(11239), 2, + sym_concat, + aux_sym_concatenation_token1, + [239525] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11709), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239538] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1026), 3, + sym_regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [239547] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11581), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239560] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11711), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239573] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11713), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [239586] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11715), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [239599] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11717), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239612] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11719), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [239625] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11689), 1, + anon_sym_SEMI_AMP, + ACTIONS(11691), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11721), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [144964] = 3, - ACTIONS(3), 1, + [239638] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_LF, - ACTIONS(8118), 6, - anon_sym_SEMI, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11723), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [239649] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11729), 1, + anon_sym_RPAREN, + STATE(5126), 1, + aux_sym_for_body_repeat1, + [239662] = 3, + ACTIONS(71), 1, + sym_comment, + STATE(4693), 1, + sym_extended_word, + ACTIONS(11731), 2, + sym_word, + sym_semgrep_metavariable, + [239673] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11733), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239686] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11569), 1, + anon_sym_SEMI_AMP, + ACTIONS(11571), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11735), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, + [239699] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11583), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239712] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11737), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239725] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11547), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239738] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11585), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239751] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11739), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [239764] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11741), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239777] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11743), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11745), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [239790] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11747), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239803] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11587), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239816] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11749), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239829] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11607), 1, anon_sym_SEMI_AMP, + ACTIONS(11609), 1, anon_sym_SEMI_SEMI_AMP, - [144979] = 4, - ACTIONS(3), 1, + ACTIONS(11751), 1, + anon_sym_SEMI_SEMI, + [239842] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11753), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [239855] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11755), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [239866] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11621), 1, + anon_sym_SEMI_AMP, + ACTIONS(11623), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11757), 1, + anon_sym_SEMI_SEMI, + [239879] = 3, + ACTIONS(71), 1, + sym_comment, + STATE(4698), 1, + sym_extended_word, + ACTIONS(11731), 2, + sym_word, + sym_semgrep_metavariable, + [239890] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11639), 1, + anon_sym_SEMI_AMP, + ACTIONS(11641), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11759), 1, + anon_sym_SEMI_SEMI, + [239903] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11761), 1, + anon_sym_RPAREN, + STATE(5150), 1, + aux_sym_for_body_repeat1, + [239916] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11549), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239929] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11595), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239942] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11763), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239955] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11765), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239968] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11597), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [239981] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11767), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [239994] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11769), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240005] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11536), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240018] = 3, + ACTIONS(71), 1, + sym_comment, + STATE(4710), 1, + sym_extended_word, + ACTIONS(11731), 2, + sym_word, + sym_semgrep_metavariable, + [240029] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8120), 1, - anon_sym_LF, - ACTIONS(8122), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(773), 4, - anon_sym_SEMI_SEMI, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [144996] = 6, - ACTIONS(3), 1, + ACTIONS(11487), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11771), 1, + anon_sym_COMMA, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [240042] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_LF, - ACTIONS(8128), 1, - anon_sym_in, - ACTIONS(8130), 1, + ACTIONS(11451), 1, sym_special_character, - STATE(3118), 1, + ACTIONS(11551), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, aux_sym_for_statement_repeat1, - ACTIONS(8126), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145017] = 3, - ACTIONS(3), 1, + [240055] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8132), 1, - anon_sym_LF, - ACTIONS(8134), 6, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [145032] = 2, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11601), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240068] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(7998), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145045] = 2, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11774), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240081] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11776), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240094] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8136), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145058] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11599), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240107] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8138), 1, - anon_sym_LF, - ACTIONS(8140), 6, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [145073] = 4, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11778), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240120] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8142), 1, - anon_sym_LF, - ACTIONS(8144), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(553), 4, - anon_sym_SEMI_SEMI, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [145090] = 3, - ACTIONS(57), 1, + ACTIONS(9568), 1, + anon_sym_PIPE, + ACTIONS(11780), 1, + anon_sym_PIPE_AMP, + STATE(3835), 1, + aux_sym_pipeline_repeat1, + [240133] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1416), 1, - anon_sym_DOLLAR, - ACTIONS(1418), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145105] = 3, - ACTIONS(57), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11782), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240144] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1424), 1, - anon_sym_DOLLAR, - ACTIONS(1426), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145120] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11625), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240157] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1428), 1, - anon_sym_DOLLAR, - ACTIONS(1430), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145135] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11617), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240170] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1439), 1, - anon_sym_DOLLAR, - ACTIONS(1441), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145150] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11784), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240183] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11786), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240196] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11788), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240209] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1443), 1, - anon_sym_DOLLAR, - ACTIONS(1445), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145165] = 3, - ACTIONS(57), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11790), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240220] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 1, - anon_sym_DOLLAR, - ACTIONS(1449), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145180] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11553), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240233] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1447), 1, - anon_sym_DOLLAR, - ACTIONS(1449), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145195] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11792), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240246] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1451), 1, - anon_sym_DOLLAR, - ACTIONS(1453), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145210] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11534), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240259] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1455), 1, - anon_sym_DOLLAR, - ACTIONS(1457), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145225] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11794), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240272] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1459), 1, - anon_sym_DOLLAR, - ACTIONS(1461), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145240] = 6, - ACTIONS(3), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11796), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240283] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8099), 1, - sym_concat, - ACTIONS(8124), 1, - anon_sym_LF, - ACTIONS(8128), 1, - anon_sym_in, - STATE(3119), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8126), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145261] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11707), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240296] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1465), 1, - anon_sym_DOLLAR, - ACTIONS(1467), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145276] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11798), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240309] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11800), 1, + anon_sym_RPAREN, + STATE(5255), 1, + aux_sym_for_body_repeat1, + [240322] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11802), 1, + anon_sym_RPAREN, + STATE(5181), 1, + aux_sym_for_body_repeat1, + [240335] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1469), 1, - anon_sym_DOLLAR, - ACTIONS(1471), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145291] = 3, - ACTIONS(57), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11804), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240346] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1473), 1, - anon_sym_DOLLAR, - ACTIONS(1475), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145306] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11532), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240359] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1477), 1, - anon_sym_DOLLAR, - ACTIONS(1479), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145321] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11555), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240372] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1481), 1, - anon_sym_DOLLAR, - ACTIONS(1483), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145336] = 3, - ACTIONS(57), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11806), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240383] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1485), 1, - anon_sym_DOLLAR, - ACTIONS(1487), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145351] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11633), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240396] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1489), 1, - anon_sym_DOLLAR, - ACTIONS(1491), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145366] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11808), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240409] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11810), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240422] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1493), 1, - anon_sym_DOLLAR, - ACTIONS(1495), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145381] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11635), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240435] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1497), 1, - anon_sym_DOLLAR, - ACTIONS(1499), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145396] = 3, - ACTIONS(57), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11812), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240446] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1501), 1, - anon_sym_DOLLAR, - ACTIONS(1503), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145411] = 3, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11814), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240459] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1505), 1, - anon_sym_DOLLAR, - ACTIONS(1507), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145426] = 3, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11541), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240472] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1509), 1, - anon_sym_DOLLAR, - ACTIONS(1511), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145441] = 3, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11435), 1, + anon_sym_RPAREN, + STATE(5217), 1, + aux_sym_case_item_repeat1, + [240485] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1513), 1, - anon_sym_DOLLAR, - ACTIONS(1515), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145456] = 3, - ACTIONS(57), 1, + ACTIONS(11818), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11816), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [240496] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1517), 1, - anon_sym_DOLLAR, - ACTIONS(1519), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145471] = 5, - ACTIONS(3), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11820), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240507] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11822), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240518] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1434), 1, - anon_sym_LF, - ACTIONS(8146), 1, + ACTIONS(11451), 1, sym_special_character, - STATE(3118), 1, + ACTIONS(11557), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, aux_sym_for_statement_repeat1, - ACTIONS(1432), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145490] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1379), 1, - anon_sym_LF, - ACTIONS(8149), 1, - sym_concat, - STATE(3084), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1377), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145509] = 6, - ACTIONS(3), 1, + [240531] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8099), 1, - sym_concat, - ACTIONS(8151), 1, - anon_sym_LF, - ACTIONS(8155), 1, - anon_sym_in, - STATE(3119), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8153), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145530] = 6, - ACTIONS(3), 1, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11824), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240542] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(11451), 1, sym_special_character, - ACTIONS(8151), 1, - anon_sym_LF, - ACTIONS(8155), 1, - anon_sym_in, - STATE(3118), 1, + ACTIONS(11643), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, aux_sym_for_statement_repeat1, - ACTIONS(8153), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145551] = 6, - ACTIONS(3), 1, + [240555] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8099), 1, - sym_concat, - ACTIONS(8157), 1, - anon_sym_LF, - ACTIONS(8161), 1, - anon_sym_in, - STATE(3119), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8159), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145572] = 6, - ACTIONS(3), 1, + STATE(4703), 1, + sym_extended_word, + ACTIONS(11731), 2, + sym_word, + sym_semgrep_metavariable, + [240566] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11826), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11725), 1, + anon_sym_LBRACK, + ACTIONS(11828), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240590] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11830), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240603] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11832), 1, + anon_sym_RPAREN, + STATE(5255), 1, + aux_sym_for_body_repeat1, + [240616] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11834), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240629] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8130), 1, + ACTIONS(11451), 1, sym_special_character, - ACTIONS(8157), 1, - anon_sym_LF, - ACTIONS(8161), 1, - anon_sym_in, - STATE(3118), 1, + ACTIONS(11559), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, aux_sym_for_statement_repeat1, - ACTIONS(8159), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [145593] = 3, - ACTIONS(57), 1, + [240642] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1540), 1, - anon_sym_DOLLAR, - ACTIONS(1542), 6, - sym_heredoc_body_middle, - sym_heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_semgrep_named_ellipsis, - [145608] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11836), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240655] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1424), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145622] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11649), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240668] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1517), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145636] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11838), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240681] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11840), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240694] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1400), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145650] = 3, - ACTIONS(3), 1, + ACTIONS(6093), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(11842), 1, + anon_sym_COMMA, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240707] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1439), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145664] = 6, - ACTIONS(57), 1, + ACTIONS(1014), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [240716] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8163), 1, - anon_sym_fi, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - STATE(3641), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [145684] = 6, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11845), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240729] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11847), 1, + anon_sym_RPAREN_RPAREN, + STATE(5084), 1, + aux_sym_for_body_repeat1, + [240742] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - ACTIONS(8169), 1, - anon_sym_fi, - STATE(3657), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [145704] = 3, - ACTIONS(3), 1, + ACTIONS(11849), 1, + anon_sym_SLASH, + ACTIONS(11851), 1, + anon_sym_RBRACE3, + ACTIONS(11853), 1, + sym_regex_no_slash, + [240755] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1443), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145718] = 6, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11653), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240768] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - ACTIONS(8171), 1, - anon_sym_fi, - STATE(3819), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [145738] = 6, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11855), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240781] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - ACTIONS(8173), 1, - anon_sym_fi, - STATE(3663), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [145758] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11651), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240794] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8138), 1, - anon_sym_LF, - ACTIONS(8140), 5, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(1042), 3, + sym_extglob_pattern, + anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_BQUOTE, - [145772] = 3, - ACTIONS(3), 1, + [240803] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1447), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145786] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11857), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240816] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 2, + STATE(4881), 1, + aux_sym_concatenation_in_expansion_repeat1, + ACTIONS(11345), 2, sym_concat, - anon_sym_LF, - ACTIONS(1447), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145800] = 3, - ACTIONS(3), 1, + aux_sym_concatenation_token1, + [240827] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1022), 3, + sym_regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [240836] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 2, + ACTIONS(11859), 1, sym_concat, - anon_sym_LF, - ACTIONS(1416), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145814] = 3, - ACTIONS(3), 1, + ACTIONS(5496), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240847] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8116), 1, - anon_sym_LF, - ACTIONS(8118), 5, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_BQUOTE, - [145828] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11561), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240860] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8132), 1, - anon_sym_LF, - ACTIONS(8134), 5, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11657), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240873] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11861), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240886] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1022), 3, + sym_extglob_pattern, + anon_sym_PIPE, anon_sym_RPAREN, - anon_sym_BQUOTE, - [145842] = 3, - ACTIONS(3), 1, + [240895] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1404), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145856] = 3, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11863), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [240908] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1408), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145870] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11865), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240921] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1383), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145884] = 4, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11659), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [240934] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8175), 1, - anon_sym_LF, - ACTIONS(8177), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(553), 3, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11867), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240947] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11869), 1, anon_sym_SEMI_SEMI, + ACTIONS(11615), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [145900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1414), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1412), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145914] = 3, - ACTIONS(3), 1, + [240958] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 2, + ACTIONS(11871), 1, sym_concat, - anon_sym_LF, - ACTIONS(1513), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145928] = 3, - ACTIONS(3), 1, + ACTIONS(5449), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [240969] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1455), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145942] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11873), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [240982] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11727), 1, + anon_sym_COMMA, + ACTIONS(11875), 1, + anon_sym_RPAREN, + STATE(5255), 1, + aux_sym_for_body_repeat1, + [240995] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1459), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145956] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11563), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241008] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1540), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145970] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11877), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241021] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1465), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [145984] = 4, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11667), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241034] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8179), 1, - anon_sym_LF, - ACTIONS(8181), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(773), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146000] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11879), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241047] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1469), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146014] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11669), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241060] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1473), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146028] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11881), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241073] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11883), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241086] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1477), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146042] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11661), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241099] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1481), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146056] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11543), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241112] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1485), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146070] = 3, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11885), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241125] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1489), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146084] = 3, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11887), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241138] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1420), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146098] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11889), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241151] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1392), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146112] = 3, - ACTIONS(3), 1, + ACTIONS(1026), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [241160] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1396), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146126] = 6, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11891), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241173] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - ACTIONS(8183), 1, - anon_sym_fi, - STATE(3820), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [146146] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11671), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241186] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1428), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146160] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11893), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241199] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11895), 1, + anon_sym_RPAREN_RPAREN, + STATE(5259), 1, + aux_sym_for_body_repeat1, + [241212] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1493), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146174] = 3, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11897), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241225] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1497), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146188] = 3, - ACTIONS(3), 1, + ACTIONS(986), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [241234] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1509), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146202] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11673), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241247] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1501), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146216] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11899), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241260] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1505), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146230] = 6, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11530), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241273] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8165), 1, - anon_sym_elif, - ACTIONS(8167), 1, - anon_sym_else, - ACTIONS(8185), 1, - anon_sym_fi, - STATE(3710), 1, - sym_else_clause, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [146250] = 3, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11675), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241286] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 2, - sym_concat, - anon_sym_LF, - ACTIONS(1451), 4, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - anon_sym_in, - [146264] = 4, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11545), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241299] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(777), 1, - ts_builtin_sym_end, - ACTIONS(8187), 1, - anon_sym_LF, - ACTIONS(8189), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146279] = 4, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11901), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241312] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(555), 1, - ts_builtin_sym_end, - ACTIONS(8191), 1, - anon_sym_LF, - ACTIONS(8193), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146294] = 4, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11903), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241325] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - STATE(3224), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 3, + ACTIONS(11905), 1, + sym_extglob_pattern, + ACTIONS(5343), 2, anon_sym_PIPE, anon_sym_RPAREN, + [241336] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, sym_special_character, - [146309] = 4, - ACTIONS(3), 1, + ACTIONS(11573), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241349] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8195), 1, - anon_sym_LF, - ACTIONS(8199), 1, - anon_sym_in, - ACTIONS(8197), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146324] = 4, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11677), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241362] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8201), 1, - anon_sym_LF, - ACTIONS(8205), 1, - anon_sym_in, - ACTIONS(8203), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146339] = 4, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11907), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241375] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11909), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241388] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8209), 1, - anon_sym_elif, - ACTIONS(8207), 2, - anon_sym_fi, - anon_sym_else, - STATE(3174), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [146354] = 5, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11307), 1, + anon_sym_RPAREN, + STATE(5071), 1, + aux_sym_case_item_repeat1, + [241401] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8212), 1, - anon_sym_SEMI, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2412), 2, - sym_do_group, - sym_compound_statement, - [146371] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11911), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [241414] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11913), 1, + anon_sym_RPAREN_RPAREN, + STATE(5253), 1, + aux_sym_for_body_repeat1, + [241427] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8216), 1, - anon_sym_SEMI, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2491), 2, - sym_do_group, - sym_compound_statement, - [146388] = 6, - ACTIONS(57), 1, + ACTIONS(9493), 1, + anon_sym_PIPE, + ACTIONS(11915), 1, + anon_sym_PIPE_AMP, + STATE(3753), 1, + aux_sym_pipeline_repeat1, + [241440] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6606), 1, - sym_special_character, - ACTIONS(8220), 1, + ACTIONS(11284), 1, anon_sym_PIPE, - ACTIONS(8222), 1, + ACTIONS(11917), 1, anon_sym_RPAREN, - STATE(2351), 1, - aux_sym_for_statement_repeat1, - STATE(3422), 1, + STATE(5267), 1, aux_sym_case_item_repeat1, - [146407] = 5, - ACTIONS(57), 1, + [241453] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8224), 1, - anon_sym_SEMI, - STATE(2413), 2, - sym_do_group, - sym_compound_statement, - [146424] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11919), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241466] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8132), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8134), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146437] = 3, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11921), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241479] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8138), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8140), 3, - anon_sym_SEMI, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11923), 1, + anon_sym_RPAREN_RPAREN, + STATE(5089), 1, + aux_sym_for_body_repeat1, + [241492] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11591), 1, + anon_sym_SEMI_AMP, + ACTIONS(11593), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11925), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146450] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + [241505] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8226), 1, - anon_sym_SEMI, - STATE(2493), 2, - sym_do_group, - sym_compound_statement, - [146467] = 6, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11681), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241518] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - ACTIONS(8220), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11927), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241531] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11679), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241544] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11575), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241557] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11284), 1, anon_sym_PIPE, - ACTIONS(8222), 1, + ACTIONS(11286), 1, anon_sym_RPAREN, - STATE(3224), 1, - aux_sym_concatenation_repeat1, - STATE(3414), 1, + STATE(5174), 1, aux_sym_case_item_repeat1, - [146486] = 4, - ACTIONS(3), 1, + [241570] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8228), 1, - anon_sym_LF, - ACTIONS(8232), 1, - anon_sym_in, - ACTIONS(8230), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146501] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11929), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241583] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8234), 1, - anon_sym_SEMI, - STATE(2565), 2, - sym_do_group, - sym_compound_statement, - [146518] = 5, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11685), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241596] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8236), 1, - anon_sym_SEMI, - STATE(2421), 2, - sym_do_group, - sym_compound_statement, - [146535] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11931), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241609] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8238), 1, - anon_sym_SEMI, - STATE(2480), 2, - sym_do_group, - sym_compound_statement, - [146552] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11683), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241622] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8240), 1, - anon_sym_SEMI, - STATE(2481), 2, - sym_do_group, - sym_compound_statement, - [146569] = 5, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11933), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241635] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11935), 1, + anon_sym_RPAREN_RPAREN, + STATE(5261), 1, + aux_sym_for_body_repeat1, + [241648] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8242), 1, - anon_sym_SEMI, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2148), 2, - sym_do_group, - sym_compound_statement, - [146586] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1006), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [241657] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8246), 1, - anon_sym_SEMI, - STATE(2494), 2, - sym_do_group, - sym_compound_statement, - [146603] = 5, - ACTIONS(57), 1, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11937), 1, + anon_sym_RPAREN_RPAREN, + STATE(5214), 1, + aux_sym_for_body_repeat1, + [241670] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8248), 1, - anon_sym_SEMI, - STATE(2423), 2, - sym_do_group, - sym_compound_statement, - [146620] = 4, - ACTIONS(3), 1, + ACTIONS(1050), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [241679] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8250), 1, - anon_sym_LF, - ACTIONS(8254), 1, - anon_sym_in, - ACTIONS(8252), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146635] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(1046), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [241688] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8256), 1, - anon_sym_SEMI, - STATE(2482), 2, - sym_do_group, - sym_compound_statement, - [146652] = 4, - ACTIONS(3), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11939), 1, + anon_sym_RPAREN, + STATE(5267), 1, + aux_sym_case_item_repeat1, + [241701] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8258), 1, - anon_sym_LF, - ACTIONS(8262), 1, - anon_sym_in, - ACTIONS(8260), 3, - anon_sym_SEMI, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11693), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241714] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11941), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241727] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(1050), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [241736] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11943), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146667] = 5, - ACTIONS(57), 1, + ACTIONS(11631), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [241747] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8264), 1, - anon_sym_SEMI, - STATE(2425), 2, - sym_do_group, - sym_compound_statement, - [146684] = 5, - ACTIONS(57), 1, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11945), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [241760] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8266), 1, - anon_sym_SEMI, - STATE(2157), 2, - sym_do_group, - sym_compound_statement, - [146701] = 5, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11577), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241773] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - ACTIONS(8268), 1, - anon_sym_SEMI, - STATE(2500), 2, - sym_do_group, - sym_compound_statement, - [146718] = 3, - ACTIONS(3), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11947), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241786] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8116), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(8118), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146731] = 5, - ACTIONS(57), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11697), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241799] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8270), 1, - anon_sym_SEMI, - STATE(2201), 2, - sym_do_group, - sym_compound_statement, - [146748] = 5, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11949), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241812] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11951), 1, + anon_sym_RPAREN_RPAREN, + STATE(5263), 1, + aux_sym_for_body_repeat1, + [241825] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8272), 1, - anon_sym_SEMI, - STATE(2438), 2, - sym_do_group, - sym_compound_statement, - [146765] = 5, - ACTIONS(57), 1, + ACTIONS(11284), 1, + anon_sym_PIPE, + ACTIONS(11331), 1, + anon_sym_RPAREN, + STATE(5192), 1, + aux_sym_case_item_repeat1, + [241838] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8274), 1, - anon_sym_SEMI, - STATE(2411), 2, - sym_do_group, - sym_compound_statement, - [146782] = 5, - ACTIONS(57), 1, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11953), 1, + anon_sym_RPAREN_RPAREN, + STATE(5265), 1, + aux_sym_for_body_repeat1, + [241851] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11701), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241864] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11579), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241877] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11703), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241890] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11955), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [241903] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11957), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [241916] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11487), 1, + anon_sym_RPAREN, + ACTIONS(11959), 1, + anon_sym_COMMA, + STATE(5255), 1, + aux_sym_for_body_repeat1, + [241929] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11695), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [241942] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11962), 1, + anon_sym_RPAREN_RPAREN, + STATE(5242), 1, + aux_sym_for_body_repeat1, + [241955] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9459), 1, + anon_sym_PIPE, + ACTIONS(11964), 1, + anon_sym_PIPE_AMP, + STATE(3721), 1, + aux_sym_pipeline_repeat1, + [241968] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8276), 1, - anon_sym_SEMI, - STATE(2133), 2, - sym_do_group, - sym_compound_statement, - [146799] = 4, - ACTIONS(3), 1, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11966), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [241981] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_RPAREN, - ACTIONS(8175), 1, - anon_sym_LF, - ACTIONS(8177), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146814] = 3, - ACTIONS(57), 1, + ACTIONS(1014), 3, + sym_regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [241990] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(8280), 2, - anon_sym_LPAREN, - anon_sym_LBRACK, - ACTIONS(8278), 3, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11968), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [242003] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11699), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [242016] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11970), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [242029] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11972), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [242042] = 4, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11745), 1, + anon_sym_COMMA, + ACTIONS(11974), 1, + anon_sym_RPAREN_RPAREN, + STATE(5104), 1, + aux_sym_for_body_repeat1, + [242055] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11978), 1, anon_sym_LPAREN_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - [146827] = 6, - ACTIONS(57), 1, + ACTIONS(11976), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242066] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - ACTIONS(8220), 1, + ACTIONS(11980), 1, anon_sym_PIPE, - ACTIONS(8282), 1, + ACTIONS(11983), 1, anon_sym_RPAREN, - STATE(3224), 1, - aux_sym_concatenation_repeat1, - STATE(3479), 1, + STATE(5267), 1, aux_sym_case_item_repeat1, - [146846] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - anon_sym_BQUOTE, - ACTIONS(8284), 1, - anon_sym_LF, - ACTIONS(8286), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146861] = 4, - ACTIONS(3), 1, + [242079] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8151), 1, - anon_sym_LF, - ACTIONS(8155), 1, - anon_sym_in, - ACTIONS(8153), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146876] = 5, - ACTIONS(57), 1, - sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8288), 1, - anon_sym_SEMI, - STATE(2135), 2, - sym_do_group, - sym_compound_statement, - [146893] = 5, - ACTIONS(57), 1, + STATE(4685), 1, + sym_extended_word, + ACTIONS(11731), 2, + sym_word, + sym_semgrep_metavariable, + [242090] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8290), 1, - anon_sym_SEMI, - STATE(2127), 2, - sym_do_group, - sym_compound_statement, - [146910] = 4, - ACTIONS(3), 1, + ACTIONS(11451), 1, + sym_special_character, + ACTIONS(11705), 1, + anon_sym_DOT_DOT_DOT_GT, + STATE(4873), 1, + aux_sym_for_statement_repeat1, + [242103] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(773), 1, - anon_sym_BQUOTE, - ACTIONS(8292), 1, - anon_sym_LF, - ACTIONS(8294), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146925] = 5, - ACTIONS(57), 1, + ACTIONS(9936), 1, + anon_sym_PIPE, + ACTIONS(9938), 1, + anon_sym_PIPE_AMP, + STATE(4199), 1, + aux_sym_pipeline_repeat1, + [242116] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - ACTIONS(8296), 1, - anon_sym_SEMI, - STATE(2397), 2, - sym_do_group, - sym_compound_statement, - [146942] = 5, - ACTIONS(57), 1, + ACTIONS(5512), 1, + anon_sym_COMMA, + ACTIONS(11985), 1, + anon_sym_RPAREN_RPAREN, + STATE(5157), 1, + aux_sym_arithmetic_expansion_repeat1, + [242129] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8298), 1, - anon_sym_SEMI, - STATE(2134), 2, - sym_do_group, - sym_compound_statement, - [146959] = 4, - ACTIONS(3), 1, + ACTIONS(11989), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11987), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242140] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8157), 1, - anon_sym_LF, - ACTIONS(8161), 1, - anon_sym_in, - ACTIONS(8159), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146974] = 4, - ACTIONS(3), 1, + ACTIONS(11993), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(11991), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242151] = 4, + ACTIONS(71), 1, sym_comment, - ACTIONS(773), 1, - anon_sym_RPAREN, - ACTIONS(8179), 1, - anon_sym_LF, - ACTIONS(8181), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [146989] = 6, - ACTIONS(57), 1, + ACTIONS(9375), 1, + anon_sym_PIPE, + ACTIONS(11995), 1, + anon_sym_PIPE_AMP, + STATE(3626), 1, + aux_sym_pipeline_repeat1, + [242164] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6606), 1, - sym_special_character, - ACTIONS(8220), 1, + ACTIONS(1038), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(8282), 1, anon_sym_RPAREN, - STATE(2351), 1, - aux_sym_for_statement_repeat1, - STATE(3405), 1, - aux_sym_case_item_repeat1, - [147008] = 4, - ACTIONS(3), 1, + [242173] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8300), 1, - anon_sym_LF, - ACTIONS(8304), 1, - anon_sym_in, - ACTIONS(8302), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147023] = 4, - ACTIONS(3), 1, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(11999), 1, + anon_sym_RBRACE3, + [242183] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8124), 1, - anon_sym_LF, - ACTIONS(8128), 1, - anon_sym_in, - ACTIONS(8126), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147038] = 5, - ACTIONS(57), 1, + ACTIONS(11782), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242191] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - ACTIONS(8306), 1, - anon_sym_SEMI, - STATE(2155), 2, - sym_do_group, - sym_compound_statement, - [147055] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(937), 1, + anon_sym_RBRACK, + ACTIONS(5397), 1, + sym_concat, + [242201] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2489), 2, - sym_do_group, - sym_compound_statement, - [147069] = 3, - ACTIONS(3), 1, + ACTIONS(11755), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242209] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8308), 1, - anon_sym_LF, - ACTIONS(8310), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147081] = 3, - ACTIONS(3), 1, + ACTIONS(12001), 1, + anon_sym_SLASH, + ACTIONS(12003), 1, + anon_sym_RBRACE3, + [242219] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8312), 1, - anon_sym_LF, - ACTIONS(8314), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147093] = 3, - ACTIONS(3), 1, + ACTIONS(994), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242227] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8316), 1, - anon_sym_LF, - ACTIONS(8318), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147105] = 4, - ACTIONS(57), 1, + ACTIONS(12005), 1, + anon_sym_SLASH, + ACTIONS(12007), 1, + anon_sym_RBRACE3, + [242237] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2410), 2, - sym_do_group, - sym_compound_statement, - [147119] = 4, - ACTIONS(57), 1, + ACTIONS(923), 1, + anon_sym_RBRACK, + ACTIONS(5357), 1, + sym_concat, + [242247] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2202), 2, - sym_do_group, - sym_compound_statement, - [147133] = 4, - ACTIONS(57), 1, + ACTIONS(12009), 1, + anon_sym_SLASH, + ACTIONS(12011), 1, + anon_sym_RBRACE3, + [242257] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8320), 1, + ACTIONS(909), 1, + anon_sym_RBRACK, + ACTIONS(5359), 1, sym_concat, - STATE(2360), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1379), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [147147] = 4, - ACTIONS(57), 1, + [242267] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2141), 2, - sym_do_group, - sym_compound_statement, - [147161] = 4, - ACTIONS(57), 1, + ACTIONS(11665), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [242275] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(1014), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242283] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(5506), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [242291] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11337), 1, anon_sym_do, - STATE(2132), 2, + STATE(3856), 1, sym_do_group, - sym_compound_statement, - [147175] = 5, - ACTIONS(57), 1, + [242301] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1359), 1, - sym_special_character, - ACTIONS(1361), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147191] = 4, - ACTIONS(57), 1, + ACTIONS(11806), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242309] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8324), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8326), 1, - anon_sym_esac, - ACTIONS(8328), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147205] = 4, - ACTIONS(57), 1, + ACTIONS(1022), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242317] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(11441), 1, anon_sym_do, - STATE(2139), 2, + STATE(3714), 1, sym_do_group, - sym_compound_statement, - [147219] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + [242327] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, + ACTIONS(11397), 1, anon_sym_do, - STATE(2499), 2, + STATE(4228), 1, sym_do_group, - sym_compound_statement, - [147233] = 5, - ACTIONS(57), 1, + [242337] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8330), 1, + ACTIONS(891), 1, anon_sym_RBRACK, - ACTIONS(8332), 1, - sym_special_character, - ACTIONS(8334), 1, + ACTIONS(5361), 1, sym_concat, - STATE(3244), 1, - aux_sym_for_statement_repeat1, - [147249] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + [242347] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2479), 2, - sym_do_group, - sym_compound_statement, - [147263] = 3, - ACTIONS(3), 1, + ACTIONS(9176), 2, + sym_concat, + anon_sym_RBRACK, + [242355] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8336), 1, - anon_sym_LF, - ACTIONS(8338), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147275] = 4, - ACTIONS(57), 1, + ACTIONS(1026), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242363] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(6460), 1, - sym_concat, - STATE(3224), 1, - aux_sym_concatenation_repeat1, - ACTIONS(8340), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [147289] = 4, - ACTIONS(57), 1, + ACTIONS(11849), 1, + anon_sym_SLASH, + ACTIONS(11851), 1, + anon_sym_RBRACE3, + [242373] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2435), 2, - sym_do_group, - sym_compound_statement, - [147303] = 4, - ACTIONS(57), 1, + ACTIONS(5579), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242381] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2429), 2, - sym_do_group, - sym_compound_statement, - [147317] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11790), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242389] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2505), 2, - sym_do_group, - sym_compound_statement, - [147331] = 4, - ACTIONS(57), 1, + ACTIONS(998), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242397] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2152), 2, - sym_do_group, - sym_compound_statement, - [147345] = 4, - ACTIONS(57), 1, + ACTIONS(11250), 1, + anon_sym_COLON, + ACTIONS(11252), 1, + anon_sym_RBRACE3, + [242407] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2439), 2, - sym_do_group, - sym_compound_statement, - [147359] = 4, - ACTIONS(57), 1, + ACTIONS(11425), 1, + anon_sym_SLASH, + ACTIONS(11427), 1, + anon_sym_RBRACE3, + [242417] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, + ACTIONS(11397), 1, anon_sym_do, - STATE(2419), 2, + STATE(4276), 1, sym_do_group, - sym_compound_statement, - [147373] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + [242427] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, + ACTIONS(11441), 1, anon_sym_do, - STATE(2497), 2, + STATE(3767), 1, sym_do_group, - sym_compound_statement, - [147387] = 4, - ACTIONS(57), 1, + [242437] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, + ACTIONS(5415), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [242445] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11325), 1, anon_sym_do, - STATE(2420), 2, + STATE(3706), 1, sym_do_group, - sym_compound_statement, - [147401] = 3, - ACTIONS(3), 1, + [242455] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8342), 1, - anon_sym_LF, - ACTIONS(8344), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147413] = 4, - ACTIONS(57), 1, + ACTIONS(11487), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [242463] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8346), 1, - sym_special_character, - STATE(3244), 1, - aux_sym_for_statement_repeat1, - ACTIONS(1434), 2, + ACTIONS(11812), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242471] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11487), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [242479] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(913), 1, + anon_sym_RBRACK, + ACTIONS(5349), 1, + sym_concat, + [242489] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11820), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242497] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(990), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [242505] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11343), 1, + anon_sym_SLASH, + ACTIONS(11347), 1, + anon_sym_RBRACE3, + [242515] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(9172), 2, sym_concat, anon_sym_RBRACK, - [147427] = 3, - ACTIONS(3), 1, + [242523] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8349), 1, - anon_sym_LF, - ACTIONS(8351), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147439] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11816), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242531] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2488), 2, - sym_do_group, - sym_compound_statement, - [147453] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(9182), 2, + sym_concat, + anon_sym_RBRACK, + [242539] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2492), 2, - sym_do_group, - sym_compound_statement, - [147467] = 4, - ACTIONS(57), 1, + ACTIONS(11723), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242547] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2428), 2, - sym_do_group, - sym_compound_statement, - [147481] = 5, - ACTIONS(57), 1, + ACTIONS(6125), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [242555] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8353), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8355), 1, - anon_sym_esac, - ACTIONS(8357), 1, - anon_sym_SEMI_AMP, - ACTIONS(8359), 1, - anon_sym_SEMI_SEMI_AMP, - [147497] = 4, - ACTIONS(57), 1, + ACTIONS(11796), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242563] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6606), 1, - sym_special_character, - STATE(2351), 1, - aux_sym_for_statement_repeat1, - ACTIONS(8340), 2, - anon_sym_PIPE, + ACTIONS(11769), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242571] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11822), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242579] = 3, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12013), 1, + anon_sym_RBRACE3, + ACTIONS(12015), 1, + sym_regex, + [242589] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(6125), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [147511] = 4, - ACTIONS(57), 1, + [242597] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, + ACTIONS(919), 1, + anon_sym_RBRACK, + ACTIONS(5365), 1, sym_concat, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1361), 2, - sym_special_character, - anon_sym_DOT_DOT_DOT_GT, - [147525] = 5, - ACTIONS(57), 1, + [242607] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8355), 1, - anon_sym_esac, - ACTIONS(8361), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8363), 1, - anon_sym_SEMI_AMP, - ACTIONS(8365), 1, - anon_sym_SEMI_SEMI_AMP, - [147541] = 4, - ACTIONS(25), 1, - anon_sym_LBRACE, - ACTIONS(57), 1, + ACTIONS(11976), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242615] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2498), 2, - sym_do_group, - sym_compound_statement, - [147555] = 4, - ACTIONS(57), 1, + ACTIONS(11824), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242623] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(11325), 1, anon_sym_do, - STATE(2166), 2, + STATE(3778), 1, sym_do_group, - sym_compound_statement, - [147569] = 4, - ACTIONS(57), 1, + [242633] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, + ACTIONS(11337), 1, anon_sym_do, - STATE(2179), 2, + STATE(3864), 1, sym_do_group, - sym_compound_statement, - [147583] = 4, - ACTIONS(57), 1, + [242643] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(163), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2200), 2, - sym_do_group, - sym_compound_statement, - [147597] = 3, - ACTIONS(3), 1, + ACTIONS(9165), 2, + sym_concat, + anon_sym_RBRACK, + [242651] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8367), 1, - anon_sym_LF, - ACTIONS(8369), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147609] = 5, - ACTIONS(57), 1, + ACTIONS(11828), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242659] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8355), 1, - anon_sym_esac, - ACTIONS(8371), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8373), 1, - anon_sym_SEMI_AMP, - ACTIONS(8375), 1, - anon_sym_SEMI_SEMI_AMP, - [147625] = 5, - ACTIONS(57), 1, + ACTIONS(11804), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242667] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8332), 1, - sym_special_character, - ACTIONS(8377), 1, - anon_sym_RBRACK, - ACTIONS(8379), 1, - sym_concat, - STATE(3244), 1, - aux_sym_for_statement_repeat1, - [147641] = 4, - ACTIONS(57), 1, + ACTIONS(11987), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242675] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_LBRACE, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2422), 2, - sym_do_group, - sym_compound_statement, - [147655] = 3, - ACTIONS(3), 1, + ACTIONS(11521), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [242683] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8381), 1, - anon_sym_LF, - ACTIONS(8383), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [147667] = 4, - ACTIONS(57), 1, + ACTIONS(5449), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [242691] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8385), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [147680] = 4, - ACTIONS(57), 1, + ACTIONS(11991), 2, + aux_sym_for_statement_token1, + sym_semgrep_metavariable, + [242699] = 3, + ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147693] = 4, - ACTIONS(57), 1, + ACTIONS(11355), 1, + anon_sym_SLASH, + ACTIONS(11357), 1, + anon_sym_RBRACE3, + [242709] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8389), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147706] = 4, - ACTIONS(57), 1, + ACTIONS(11665), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [242717] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8389), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147719] = 4, - ACTIONS(57), 1, + ACTIONS(12017), 1, + anon_sym_DOT_DOT, + [242724] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8391), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147732] = 4, - ACTIONS(57), 1, + ACTIONS(12019), 1, + aux_sym_statements_token1, + [242731] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147745] = 4, - ACTIONS(57), 1, + ACTIONS(7477), 1, + anon_sym_RBRACK, + [242738] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147758] = 4, - ACTIONS(57), 1, + ACTIONS(12021), 1, + anon_sym_BQUOTE, + [242745] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8393), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [147771] = 4, - ACTIONS(57), 1, + ACTIONS(12023), 1, + aux_sym_statements_token1, + [242752] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8395), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [147784] = 4, - ACTIONS(57), 1, + ACTIONS(12025), 1, + anon_sym_RBRACE2, + [242759] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8395), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [147797] = 4, - ACTIONS(57), 1, + ACTIONS(12027), 1, + aux_sym_statements_token1, + [242766] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8393), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [147810] = 4, - ACTIONS(57), 1, + ACTIONS(12029), 1, + anon_sym_BQUOTE, + [242773] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147823] = 4, - ACTIONS(57), 1, + ACTIONS(12031), 1, + aux_sym_statements_token1, + [242780] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8397), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [147836] = 4, - ACTIONS(57), 1, + ACTIONS(7569), 1, + anon_sym_RBRACK, + [242787] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147849] = 4, - ACTIONS(57), 1, + ACTIONS(12033), 1, + anon_sym_RPAREN, + [242794] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147862] = 4, - ACTIONS(57), 1, + ACTIONS(12035), 1, + anon_sym_RBRACE2, + [242801] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8397), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [147875] = 4, - ACTIONS(57), 1, + ACTIONS(12037), 1, + anon_sym_RBRACE3, + [242808] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12039), 1, + anon_sym_BQUOTE, + [242815] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12041), 1, + anon_sym_RBRACE3, + [242822] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12043), 1, + anon_sym_RPAREN, + [242829] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8399), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [147888] = 4, - ACTIONS(57), 1, + ACTIONS(12045), 1, + anon_sym_RPAREN, + [242836] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147901] = 4, - ACTIONS(57), 1, + ACTIONS(12047), 1, + anon_sym_RBRACE3, + [242843] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8401), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147914] = 4, - ACTIONS(57), 1, + ACTIONS(12049), 1, + anon_sym_BQUOTE, + [242850] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147927] = 4, - ACTIONS(57), 1, + ACTIONS(12043), 1, + anon_sym_BQUOTE, + [242857] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147940] = 4, - ACTIONS(57), 1, + ACTIONS(12051), 1, + anon_sym_RPAREN, + [242864] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8403), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [147953] = 4, - ACTIONS(57), 1, + ACTIONS(12053), 1, + anon_sym_RBRACE3, + [242871] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8403), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147966] = 4, - ACTIONS(57), 1, + ACTIONS(12055), 1, + anon_sym_RPAREN, + [242878] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [147979] = 3, - ACTIONS(57), 1, + ACTIONS(12057), 1, + anon_sym_BQUOTE, + [242885] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_SEMI_SEMI, - ACTIONS(8328), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147990] = 4, - ACTIONS(57), 1, + ACTIONS(12059), 1, + anon_sym_RBRACE3, + [242892] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148003] = 4, - ACTIONS(57), 1, + ACTIONS(12061), 1, + anon_sym_BQUOTE, + [242899] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8407), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148016] = 4, - ACTIONS(57), 1, + ACTIONS(12055), 1, + anon_sym_BQUOTE, + [242906] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8407), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148029] = 4, - ACTIONS(57), 1, + ACTIONS(12063), 1, + anon_sym_RPAREN, + [242913] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8409), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148042] = 4, - ACTIONS(57), 1, + ACTIONS(12045), 1, + anon_sym_BQUOTE, + [242920] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8409), 1, + ACTIONS(11595), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148055] = 4, - ACTIONS(57), 1, + [242927] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148068] = 4, - ACTIONS(57), 1, + ACTIONS(12065), 1, + anon_sym_RPAREN, + [242934] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8411), 1, + ACTIONS(11541), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148081] = 4, - ACTIONS(57), 1, + [242941] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8413), 1, + ACTIONS(11555), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148094] = 4, - ACTIONS(57), 1, - sym_comment, - ACTIONS(4970), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148107] = 4, - ACTIONS(57), 1, + [242948] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148120] = 4, - ACTIONS(57), 1, + ACTIONS(12067), 1, + anon_sym_RPAREN, + [242955] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8413), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148133] = 4, - ACTIONS(57), 1, + ACTIONS(12069), 1, + anon_sym_LT_LT_LT, + [242962] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8411), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148146] = 4, - ACTIONS(57), 1, + ACTIONS(12071), 1, + aux_sym_brace_expression_token1, + [242969] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8415), 1, - aux_sym_for_statement_token1, - ACTIONS(8417), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(8419), 1, - sym_semgrep_metavariable, - [148159] = 3, - ACTIONS(57), 1, + ACTIONS(12073), 1, + anon_sym_RBRACE2, + [242976] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8421), 1, - sym_concat, - ACTIONS(6351), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [148170] = 4, - ACTIONS(57), 1, + ACTIONS(12075), 1, + anon_sym_RPAREN_RPAREN, + [242983] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8423), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148183] = 4, - ACTIONS(57), 1, + ACTIONS(12077), 1, + sym_heredoc_start, + [242990] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8423), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148196] = 4, - ACTIONS(57), 1, + ACTIONS(12079), 1, + anon_sym_in, + [242997] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8425), 1, + ACTIONS(11597), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148209] = 4, - ACTIONS(57), 1, + [243004] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8427), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148222] = 4, - ACTIONS(57), 1, + ACTIONS(12081), 1, + anon_sym_RPAREN, + [243011] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8427), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148235] = 4, - ACTIONS(57), 1, + ACTIONS(12083), 1, + anon_sym_BQUOTE, + [243018] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8429), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148248] = 4, - ACTIONS(57), 1, + ACTIONS(12085), 1, + anon_sym_RBRACE3, + [243025] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148261] = 4, - ACTIONS(57), 1, + ACTIONS(12087), 1, + anon_sym_RPAREN, + [243032] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1379), 1, - anon_sym_RBRACE, - ACTIONS(8431), 1, - sym_concat, - STATE(3315), 1, - aux_sym_concatenation_repeat1, - [148274] = 4, - ACTIONS(57), 1, + ACTIONS(12089), 1, + anon_sym_RBRACE3, + [243039] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148287] = 4, - ACTIONS(57), 1, + ACTIONS(12091), 1, + aux_sym_statements_token1, + [243046] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148300] = 4, - ACTIONS(57), 1, + ACTIONS(12093), 1, + anon_sym_BQUOTE, + [243053] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8433), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148313] = 4, - ACTIONS(57), 1, + ACTIONS(12087), 1, + anon_sym_BQUOTE, + [243060] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8433), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148326] = 4, - ACTIONS(57), 1, + ACTIONS(12095), 1, + aux_sym_statements_token1, + [243067] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148339] = 3, - ACTIONS(57), 1, + ACTIONS(12097), 1, + anon_sym_RPAREN, + [243074] = 2, + ACTIONS(3), 1, sym_comment, - STATE(3054), 1, - sym_extended_word, - ACTIONS(8435), 2, - sym_word, - sym_semgrep_metavariable, - [148350] = 4, - ACTIONS(57), 1, + ACTIONS(12099), 1, + aux_sym_statements_token1, + [243081] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 1, - anon_sym_RBRACE, - ACTIONS(8437), 1, - sym_concat, - STATE(3315), 1, - aux_sym_concatenation_repeat1, - [148363] = 4, - ACTIONS(57), 1, + ACTIONS(12101), 1, + anon_sym_RBRACE3, + [243088] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148376] = 4, - ACTIONS(57), 1, + ACTIONS(12103), 1, + aux_sym_statements_token1, + [243095] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148389] = 4, - ACTIONS(57), 1, + ACTIONS(12105), 1, + anon_sym_RBRACE2, + [243102] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148402] = 4, - ACTIONS(57), 1, + ACTIONS(12107), 1, + anon_sym_RPAREN, + [243109] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148415] = 4, - ACTIONS(57), 1, + ACTIONS(12109), 1, + anon_sym_RPAREN, + [243116] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8440), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148428] = 4, - ACTIONS(57), 1, + ACTIONS(12111), 1, + anon_sym_RBRACE2, + [243123] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8440), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148441] = 4, - ACTIONS(57), 1, + ACTIONS(12113), 1, + anon_sym_BQUOTE, + [243130] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8442), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148454] = 4, - ACTIONS(57), 1, + ACTIONS(12115), 1, + anon_sym_BQUOTE, + [243137] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8442), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148467] = 4, - ACTIONS(57), 1, + ACTIONS(12109), 1, + anon_sym_BQUOTE, + [243144] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8444), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148480] = 4, - ACTIONS(57), 1, + ACTIONS(12117), 1, + anon_sym_RPAREN, + [243151] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8446), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148493] = 4, - ACTIONS(57), 1, + ACTIONS(12107), 1, + anon_sym_BQUOTE, + [243158] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8448), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148506] = 4, - ACTIONS(57), 1, + ACTIONS(12119), 1, + anon_sym_LT_LT_LT, + [243165] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8448), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148519] = 4, - ACTIONS(57), 1, + ACTIONS(12121), 1, + anon_sym_RPAREN, + [243172] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8446), 1, + ACTIONS(12123), 1, + aux_sym_brace_expression_token1, + [243179] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12125), 1, + anon_sym_BQUOTE, + [243186] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11557), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148532] = 4, - ACTIONS(57), 1, + [243193] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8444), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148545] = 4, - ACTIONS(57), 1, + ACTIONS(11601), 1, + anon_sym_DOT_DOT_DOT_GT, + [243200] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8450), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148558] = 4, - ACTIONS(57), 1, + ACTIONS(12127), 1, + anon_sym_RBRACE2, + [243207] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8377), 1, - anon_sym_RBRACK, - ACTIONS(8452), 1, - sym_concat, - STATE(3389), 1, - aux_sym_concatenation_repeat1, - [148571] = 4, - ACTIONS(57), 1, + ACTIONS(12129), 1, + anon_sym_RPAREN, + [243214] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8454), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148584] = 4, - ACTIONS(57), 1, + ACTIONS(5882), 1, + anon_sym_RBRACK_RBRACK, + [243221] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8454), 1, + ACTIONS(11599), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148597] = 4, - ACTIONS(57), 1, + [243228] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8456), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148610] = 4, - ACTIONS(57), 1, + ACTIONS(12131), 1, + anon_sym_RBRACE2, + [243235] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8458), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148623] = 4, - ACTIONS(57), 1, + ACTIONS(12133), 1, + anon_sym_RBRACE3, + [243242] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148636] = 4, - ACTIONS(57), 1, + ACTIONS(12135), 1, + anon_sym_RPAREN, + [243249] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148649] = 4, - ACTIONS(57), 1, + ACTIONS(12137), 1, + anon_sym_RPAREN, + [243256] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8460), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148662] = 4, - ACTIONS(57), 1, + ACTIONS(12139), 1, + anon_sym_LT_LT_LT, + [243263] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8460), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148675] = 4, - ACTIONS(57), 1, + ACTIONS(12141), 1, + aux_sym_brace_expression_token1, + [243270] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8458), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148688] = 4, - ACTIONS(57), 1, + ACTIONS(12143), 1, + anon_sym_RPAREN_RPAREN, + [243277] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8456), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148701] = 4, - ACTIONS(57), 1, + ACTIONS(12145), 1, + anon_sym_in, + [243284] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148714] = 4, - ACTIONS(57), 1, + ACTIONS(12147), 1, + anon_sym_DOT_DOT, + [243291] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148727] = 4, - ACTIONS(57), 1, + ACTIONS(12149), 1, + anon_sym_RPAREN, + [243298] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8462), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148740] = 4, - ACTIONS(57), 1, + ACTIONS(7623), 1, + anon_sym_RBRACK, + [243305] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8462), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148753] = 4, - ACTIONS(57), 1, + ACTIONS(12151), 1, + anon_sym_BQUOTE, + [243312] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8429), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [148766] = 4, - ACTIONS(57), 1, + ACTIONS(12135), 1, + anon_sym_BQUOTE, + [243319] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8464), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148779] = 4, - ACTIONS(57), 1, + ACTIONS(12153), 1, + anon_sym_RBRACE2, + [243326] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148792] = 4, - ACTIONS(57), 1, + ACTIONS(12155), 1, + aux_sym_statements_token1, + [243333] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148805] = 4, - ACTIONS(57), 1, + ACTIONS(12157), 1, + anon_sym_RBRACE3, + [243340] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8466), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148818] = 4, - ACTIONS(57), 1, + ACTIONS(12159), 1, + anon_sym_RPAREN, + [243347] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8385), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [148831] = 4, - ACTIONS(57), 1, + ACTIONS(12161), 1, + aux_sym_statements_token1, + [243354] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8466), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148844] = 4, - ACTIONS(57), 1, + ACTIONS(12163), 1, + anon_sym_RBRACE3, + [243361] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148857] = 4, - ACTIONS(57), 1, + ACTIONS(12165), 1, + aux_sym_statements_token1, + [243368] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5140), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148870] = 4, - ACTIONS(57), 1, + ACTIONS(12167), 1, + anon_sym_RPAREN, + [243375] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8468), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148883] = 4, - ACTIONS(57), 1, + ACTIONS(12169), 1, + aux_sym_statements_token1, + [243382] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8468), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148896] = 4, - ACTIONS(57), 1, + ACTIONS(12171), 1, + anon_sym_BQUOTE, + [243389] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4191), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148909] = 4, - ACTIONS(57), 1, + ACTIONS(11559), 1, + anon_sym_DOT_DOT_DOT_GT, + [243396] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4191), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148922] = 4, - ACTIONS(57), 1, + ACTIONS(12173), 1, + anon_sym_BQUOTE, + [243403] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8470), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148935] = 4, - ACTIONS(57), 1, + ACTIONS(12167), 1, + anon_sym_BQUOTE, + [243410] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8470), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [148948] = 4, - ACTIONS(57), 1, + ACTIONS(12175), 1, + anon_sym_RPAREN, + [243417] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148961] = 4, - ACTIONS(57), 1, + ACTIONS(12177), 1, + anon_sym_in, + [243424] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8472), 1, - anon_sym_PIPE, - ACTIONS(8475), 1, + ACTIONS(12179), 1, anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [148974] = 4, - ACTIONS(57), 1, + [243431] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [148987] = 4, - ACTIONS(57), 1, + ACTIONS(11617), 1, + anon_sym_DOT_DOT_DOT_GT, + [243438] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12181), 1, + anon_sym_RBRACE2, + [243445] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12183), 1, + anon_sym_RBRACE2, + [243452] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12185), 1, + anon_sym_RBRACE2, + [243459] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12187), 1, + anon_sym_RBRACE2, + [243466] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12189), 1, + anon_sym_RBRACE2, + [243473] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11254), 1, + anon_sym_fi, + [243480] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149000] = 4, - ACTIONS(57), 1, + ACTIONS(12191), 1, + aux_sym_brace_expression_token1, + [243487] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149013] = 4, - ACTIONS(57), 1, + ACTIONS(7617), 1, + anon_sym_RBRACK, + [243494] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149026] = 4, - ACTIONS(57), 1, + ACTIONS(12193), 1, + anon_sym_RBRACE2, + [243501] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149039] = 4, - ACTIONS(57), 1, + ACTIONS(12195), 1, + aux_sym_statements_token1, + [243508] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8464), 1, + ACTIONS(5890), 1, + anon_sym_RBRACK_RBRACK, + [243515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12197), 1, + aux_sym_statements_token1, + [243522] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11543), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149052] = 4, - ACTIONS(57), 1, + [243529] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149065] = 4, - ACTIONS(57), 1, + ACTIONS(12199), 1, + aux_sym_statements_token1, + [243536] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149078] = 4, - ACTIONS(57), 1, + ACTIONS(12201), 1, + aux_sym_statements_token1, + [243543] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8477), 1, + ACTIONS(11625), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149091] = 4, - ACTIONS(57), 1, + [243550] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8477), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149104] = 4, - ACTIONS(57), 1, + ACTIONS(12203), 1, + sym_heredoc_end, + [243557] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8479), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149117] = 4, - ACTIONS(57), 1, + ACTIONS(12205), 1, + sym_heredoc_end, + [243564] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8481), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149130] = 4, - ACTIONS(57), 1, + ACTIONS(12207), 1, + anon_sym_RBRACE3, + [243571] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11389), 1, + anon_sym_fi, + [243578] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12209), 1, + anon_sym_RBRACE3, + [243585] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8481), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149143] = 4, - ACTIONS(57), 1, + ACTIONS(12211), 1, + anon_sym_RPAREN, + [243592] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8282), 1, + ACTIONS(12213), 1, anon_sym_RPAREN, - STATE(3390), 1, - aux_sym_case_item_repeat1, - [149156] = 4, - ACTIONS(57), 1, + [243599] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149169] = 4, - ACTIONS(57), 1, + ACTIONS(12215), 1, + anon_sym_BQUOTE, + [243606] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149182] = 3, - ACTIONS(57), 1, + ACTIONS(12211), 1, + anon_sym_BQUOTE, + [243613] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8485), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149193] = 3, - ACTIONS(57), 1, + ACTIONS(12217), 1, + anon_sym_RPAREN, + [243620] = 2, + ACTIONS(71), 1, sym_comment, - STATE(3053), 1, - sym_extended_word, - ACTIONS(8435), 2, - sym_word, - sym_semgrep_metavariable, - [149204] = 4, - ACTIONS(57), 1, + ACTIONS(12219), 1, + anon_sym_RBRACE3, + [243627] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8487), 1, + ACTIONS(12221), 1, + anon_sym_RPAREN, + [243634] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11707), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149217] = 4, - ACTIONS(57), 1, + [243641] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8489), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149230] = 4, - ACTIONS(57), 1, + ACTIONS(12223), 1, + aux_sym_brace_expression_token1, + [243648] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8489), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149243] = 4, - ACTIONS(57), 1, + ACTIONS(5994), 1, + anon_sym_RBRACK_RBRACK, + [243655] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8487), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149256] = 4, - ACTIONS(57), 1, + ACTIONS(12225), 1, + anon_sym_BQUOTE, + [243662] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8491), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149269] = 4, - ACTIONS(57), 1, + ACTIONS(12221), 1, + anon_sym_BQUOTE, + [243669] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8491), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149282] = 4, - ACTIONS(57), 1, + ACTIONS(12227), 1, + anon_sym_RPAREN, + [243676] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8493), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149295] = 4, - ACTIONS(57), 1, + ACTIONS(12229), 1, + anon_sym_RBRACE2, + [243683] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(12231), 1, + anon_sym_RBRACE3, + [243690] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11561), 1, anon_sym_DOT_DOT_DOT_GT, - ACTIONS(8495), 1, - sym_concat, - STATE(1998), 1, - aux_sym_concatenation_repeat1, - [149308] = 4, - ACTIONS(57), 1, + [243697] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1379), 1, + ACTIONS(7627), 1, anon_sym_RBRACK, - ACTIONS(8497), 1, - sym_concat, - STATE(2517), 1, - aux_sym_concatenation_repeat1, - [149321] = 4, - ACTIONS(57), 1, + [243704] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8499), 1, - anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [149334] = 4, - ACTIONS(57), 1, + ACTIONS(12233), 1, + anon_sym_RBRACE2, + [243711] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8391), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149347] = 4, - ACTIONS(57), 1, + ACTIONS(12235), 1, + anon_sym_BQUOTE, + [243718] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8493), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149360] = 3, - ACTIONS(57), 1, + ACTIONS(12237), 1, + anon_sym_RBRACE3, + [243725] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8501), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149371] = 3, - ACTIONS(57), 1, + ACTIONS(12239), 1, + anon_sym_RBRACE3, + [243732] = 2, + ACTIONS(71), 1, sym_comment, - STATE(3059), 1, - sym_extended_word, - ACTIONS(8435), 2, - sym_word, - sym_semgrep_metavariable, - [149382] = 4, - ACTIONS(57), 1, + ACTIONS(12241), 1, + anon_sym_RPAREN, + [243739] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8450), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149395] = 4, - ACTIONS(57), 1, + ACTIONS(12243), 1, + aux_sym_brace_expression_token1, + [243746] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8503), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149408] = 4, - ACTIONS(57), 1, + ACTIONS(12245), 1, + anon_sym_RPAREN, + [243753] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8222), 1, + ACTIONS(12247), 1, + anon_sym_RBRACE3, + [243760] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12249), 1, + anon_sym_BQUOTE, + [243767] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12251), 1, + anon_sym_RBRACE3, + [243774] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12253), 1, anon_sym_RPAREN, - STATE(3419), 1, - aux_sym_case_item_repeat1, - [149421] = 4, - ACTIONS(57), 1, + [243781] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8505), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149434] = 4, - ACTIONS(57), 1, + ACTIONS(12241), 1, + anon_sym_BQUOTE, + [243788] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8357), 1, - anon_sym_SEMI_AMP, - ACTIONS(8359), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8507), 1, - anon_sym_SEMI_SEMI, - [149447] = 4, - ACTIONS(57), 1, + ACTIONS(11431), 1, + anon_sym_fi, + [243795] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149460] = 4, - ACTIONS(57), 1, + ACTIONS(12255), 1, + anon_sym_RBRACE2, + [243802] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149473] = 4, - ACTIONS(57), 1, + ACTIONS(12257), 1, + anon_sym_BQUOTE, + [243809] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4491), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149486] = 4, - ACTIONS(57), 1, + ACTIONS(12253), 1, + anon_sym_BQUOTE, + [243816] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8505), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149499] = 4, - ACTIONS(57), 1, + ACTIONS(12259), 1, + anon_sym_RPAREN, + [243823] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4491), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149512] = 4, - ACTIONS(57), 1, + ACTIONS(12261), 1, + anon_sym_RPAREN, + [243830] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8509), 1, + ACTIONS(12263), 1, anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [149525] = 4, - ACTIONS(57), 1, + [243837] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1434), 1, - anon_sym_RBRACE, - ACTIONS(8511), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149538] = 3, - ACTIONS(57), 1, + ACTIONS(12265), 1, + aux_sym_brace_expression_token1, + [243844] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8514), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149549] = 4, - ACTIONS(57), 1, + ACTIONS(12267), 1, + anon_sym_BQUOTE, + [243851] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8516), 1, + ACTIONS(11633), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149562] = 4, - ACTIONS(57), 1, + [243858] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8518), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149575] = 4, - ACTIONS(57), 1, + ACTIONS(12261), 1, + anon_sym_BQUOTE, + [243865] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8518), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149588] = 4, - ACTIONS(57), 1, + ACTIONS(12269), 1, + anon_sym_RPAREN, + [243872] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8479), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149601] = 3, - ACTIONS(57), 1, + ACTIONS(12271), 1, + anon_sym_RPAREN, + [243879] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8520), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149612] = 4, - ACTIONS(57), 1, + ACTIONS(12273), 1, + anon_sym_RBRACE2, + [243886] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8363), 1, - anon_sym_SEMI_AMP, - ACTIONS(8365), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8522), 1, - anon_sym_SEMI_SEMI, - [149625] = 4, - ACTIONS(57), 1, + ACTIONS(12275), 1, + anon_sym_BQUOTE, + [243893] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8524), 1, - anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [149638] = 4, - ACTIONS(57), 1, + ACTIONS(11635), 1, + anon_sym_DOT_DOT_DOT_GT, + [243900] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149651] = 3, - ACTIONS(57), 1, + ACTIONS(11563), 1, + anon_sym_DOT_DOT_DOT_GT, + [243907] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8526), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149662] = 4, - ACTIONS(57), 1, + ACTIONS(12277), 1, + anon_sym_RBRACE3, + [243914] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8528), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149675] = 4, - ACTIONS(57), 1, + ACTIONS(12279), 1, + anon_sym_esac, + [243921] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149688] = 4, - ACTIONS(57), 1, + ACTIONS(12281), 1, + aux_sym_brace_expression_token1, + [243928] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8530), 1, + ACTIONS(12283), 1, anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [149701] = 4, - ACTIONS(57), 1, + [243935] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8532), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149714] = 3, - ACTIONS(57), 1, + ACTIONS(12245), 1, + anon_sym_BQUOTE, + [243942] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8534), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149725] = 4, - ACTIONS(57), 1, + ACTIONS(12285), 1, + anon_sym_BQUOTE, + [243949] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8536), 1, + ACTIONS(12287), 1, + anon_sym_esac, + [243956] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12283), 1, + anon_sym_BQUOTE, + [243963] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11313), 1, + anon_sym_fi, + [243970] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12289), 1, anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [149738] = 3, - ACTIONS(57), 1, + [243977] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8538), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149749] = 4, - ACTIONS(57), 1, + ACTIONS(12291), 1, + anon_sym_esac, + [243984] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8528), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149762] = 3, - ACTIONS(57), 1, + ACTIONS(12293), 1, + anon_sym_BQUOTE, + [243991] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8540), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [149773] = 4, - ACTIONS(57), 1, + ACTIONS(12295), 1, + aux_sym_brace_expression_token1, + [243998] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8542), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149786] = 4, - ACTIONS(57), 1, + ACTIONS(12297), 1, + anon_sym_RPAREN, + [244005] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8542), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149799] = 4, - ACTIONS(57), 1, + ACTIONS(12299), 1, + anon_sym_RBRACE2, + [244012] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8544), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149812] = 4, - ACTIONS(57), 1, + ACTIONS(12301), 1, + anon_sym_RBRACE3, + [244019] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8373), 1, - anon_sym_SEMI_AMP, - ACTIONS(8375), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8546), 1, - anon_sym_SEMI_SEMI, - [149825] = 4, - ACTIONS(57), 1, + ACTIONS(12303), 1, + anon_sym_RPAREN, + [244026] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8548), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149838] = 4, - ACTIONS(57), 1, + ACTIONS(12305), 1, + anon_sym_RPAREN, + [244033] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4545), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149851] = 4, - ACTIONS(57), 1, + ACTIONS(12307), 1, + anon_sym_BQUOTE, + [244040] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4545), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149864] = 4, - ACTIONS(57), 1, + ACTIONS(12303), 1, + anon_sym_BQUOTE, + [244047] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8548), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149877] = 4, - ACTIONS(57), 1, + ACTIONS(12309), 1, + anon_sym_RPAREN, + [244054] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4259), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149890] = 4, - ACTIONS(57), 1, + ACTIONS(12311), 1, + anon_sym_RBRACE2, + [244061] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8516), 1, + ACTIONS(12313), 1, + aux_sym_brace_expression_token1, + [244068] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11545), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149903] = 4, - ACTIONS(57), 1, + [244075] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4259), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149916] = 4, - ACTIONS(57), 1, + ACTIONS(12213), 1, + anon_sym_BQUOTE, + [244082] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8399), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149929] = 4, - ACTIONS(57), 1, + ACTIONS(12315), 1, + anon_sym_RPAREN, + [244089] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8550), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [149942] = 4, - ACTIONS(57), 1, + ACTIONS(12317), 1, + anon_sym_RBRACE3, + [244096] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8552), 1, + ACTIONS(11643), 1, anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [149955] = 4, - ACTIONS(57), 1, + [244103] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8552), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149968] = 4, - ACTIONS(57), 1, + ACTIONS(12319), 1, + anon_sym_RPAREN, + [244110] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8550), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [149981] = 4, - ACTIONS(57), 1, + ACTIONS(12321), 1, + anon_sym_RBRACE2, + [244117] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8544), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [149994] = 4, - ACTIONS(57), 1, + ACTIONS(12323), 1, + anon_sym_BQUOTE, + [244124] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8330), 1, - anon_sym_RBRACK, - ACTIONS(8554), 1, - sym_concat, - STATE(3389), 1, - aux_sym_concatenation_repeat1, - [150007] = 4, - ACTIONS(57), 1, + ACTIONS(12319), 1, + anon_sym_BQUOTE, + [244131] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8556), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150020] = 4, - ACTIONS(57), 1, + ACTIONS(12325), 1, + aux_sym_brace_expression_token1, + [244138] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8558), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150033] = 4, - ACTIONS(57), 1, + ACTIONS(12327), 1, + anon_sym_RBRACE2, + [244145] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8556), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [150046] = 4, - ACTIONS(57), 1, + ACTIONS(12329), 1, + anon_sym_RBRACE3, + [244152] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8560), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150059] = 4, - ACTIONS(57), 1, + ACTIONS(12331), 1, + ts_builtin_sym_end, + [244159] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150072] = 4, - ACTIONS(57), 1, + ACTIONS(12333), 1, + anon_sym_RBRACE2, + [244166] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150085] = 4, - ACTIONS(57), 1, + ACTIONS(12149), 1, + anon_sym_BQUOTE, + [244173] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8560), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150098] = 4, - ACTIONS(57), 1, + ACTIONS(12335), 1, + anon_sym_RBRACE3, + [244180] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8532), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150111] = 4, - ACTIONS(57), 1, + ACTIONS(12337), 1, + anon_sym_RPAREN, + [244187] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8562), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150124] = 4, - ACTIONS(57), 1, + ACTIONS(12339), 1, + ts_builtin_sym_end, + [244194] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8562), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [150137] = 4, - ACTIONS(57), 1, + ACTIONS(12341), 1, + anon_sym_RPAREN, + [244201] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8558), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [150150] = 4, - ACTIONS(57), 1, + ACTIONS(12343), 1, + aux_sym_brace_expression_token1, + [244208] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150163] = 4, - ACTIONS(57), 1, + ACTIONS(12345), 1, + anon_sym_RBRACE3, + [244215] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150176] = 4, - ACTIONS(57), 1, + ACTIONS(12347), 1, + anon_sym_RBRACE3, + [244222] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4599), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150189] = 4, - ACTIONS(57), 1, + ACTIONS(12349), 1, + anon_sym_RPAREN, + [244229] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4599), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150202] = 4, - ACTIONS(57), 1, + ACTIONS(12351), 1, + anon_sym_RPAREN, + [244236] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8425), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150215] = 4, - ACTIONS(57), 1, + ACTIONS(12353), 1, + anon_sym_BQUOTE, + [244243] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150228] = 4, - ACTIONS(57), 1, + ACTIONS(11303), 1, + anon_sym_fi, + [244250] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150241] = 4, - ACTIONS(57), 1, + ACTIONS(12349), 1, + anon_sym_BQUOTE, + [244257] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150254] = 4, - ACTIONS(57), 1, + ACTIONS(12355), 1, + aux_sym_brace_expression_token1, + [244264] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8564), 1, - aux_sym_for_statement_token1, - ACTIONS(8566), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(8568), 1, - sym_semgrep_metavariable, - [150267] = 4, - ACTIONS(57), 1, + ACTIONS(12357), 1, + anon_sym_BQUOTE, + [244271] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_RBRACE, - ACTIONS(8387), 1, - sym_special_character, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150280] = 4, - ACTIONS(57), 1, + ACTIONS(12359), 1, + anon_sym_RBRACE3, + [244278] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8570), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150293] = 4, - ACTIONS(57), 1, + ACTIONS(12361), 1, + anon_sym_RPAREN, + [244285] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6372), 1, - sym_special_character, - ACTIONS(8570), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(2241), 1, - aux_sym_for_statement_repeat1, - [150306] = 4, - ACTIONS(57), 1, + ACTIONS(11353), 1, + anon_sym_RBRACE3, + [244292] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8572), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150319] = 4, - ACTIONS(57), 1, + ACTIONS(12363), 1, + anon_sym_BQUOTE, + [244299] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8572), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150332] = 4, - ACTIONS(57), 1, + ACTIONS(12361), 1, + anon_sym_BQUOTE, + [244306] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_RBRACE, - ACTIONS(8322), 1, - sym_concat, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150345] = 3, - ACTIONS(57), 1, + ACTIONS(12365), 1, + anon_sym_RPAREN, + [244313] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8574), 1, - sym_concat, - ACTIONS(6361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150356] = 4, - ACTIONS(57), 1, + ACTIONS(12367), 1, + aux_sym_brace_expression_token1, + [244320] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8576), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150369] = 3, - ACTIONS(57), 1, + ACTIONS(12369), 1, + anon_sym_BQUOTE, + [244327] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8483), 1, - anon_sym_LBRACK, - ACTIONS(8578), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150380] = 4, - ACTIONS(57), 1, + ACTIONS(11649), 1, + anon_sym_DOT_DOT_DOT_GT, + [244334] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8580), 1, - aux_sym_for_statement_token1, - ACTIONS(8582), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(8584), 1, - sym_semgrep_metavariable, - [150393] = 4, - ACTIONS(57), 1, + ACTIONS(12351), 1, + anon_sym_BQUOTE, + [244341] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8586), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150406] = 4, - ACTIONS(57), 1, + ACTIONS(12371), 1, + anon_sym_RPAREN, + [244348] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11365), 1, + anon_sym_fi, + [244355] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12373), 1, + anon_sym_RBRACE2, + [244362] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12375), 1, + anon_sym_RBRACK_RBRACK, + [244369] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12377), 1, + aux_sym_brace_expression_token1, + [244376] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8576), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150419] = 4, - ACTIONS(57), 1, + ACTIONS(12379), 1, + anon_sym_esac, + [244383] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8322), 1, - sym_concat, - ACTIONS(8588), 1, - anon_sym_RBRACE, - STATE(3308), 1, - aux_sym_concatenation_repeat1, - [150432] = 4, - ACTIONS(57), 1, + ACTIONS(12381), 1, + anon_sym_RBRACE2, + [244390] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8588), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150445] = 4, - ACTIONS(57), 1, + ACTIONS(11573), 1, + anon_sym_DOT_DOT_DOT_GT, + [244397] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8387), 1, - sym_special_character, - ACTIONS(8586), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym_for_statement_repeat1, - [150458] = 4, - ACTIONS(57), 1, + ACTIONS(12383), 1, + anon_sym_RBRACE3, + [244404] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8220), 1, - anon_sym_PIPE, - ACTIONS(8590), 1, + ACTIONS(12385), 1, anon_sym_RPAREN, - STATE(3362), 1, - aux_sym_case_item_repeat1, - [150471] = 4, - ACTIONS(57), 1, + [244411] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5993), 1, - sym_concat, - ACTIONS(8503), 1, - anon_sym_DOT_DOT_DOT_GT, - STATE(3388), 1, - aux_sym_concatenation_repeat1, - [150484] = 3, - ACTIONS(57), 1, + ACTIONS(12387), 1, + anon_sym_RPAREN, + [244418] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8594), 1, - anon_sym_EQ, - [150494] = 3, - ACTIONS(57), 1, + ACTIONS(12389), 1, + anon_sym_RBRACE3, + [244425] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2528), 1, - sym_do_group, - [150504] = 2, - ACTIONS(57), 1, + ACTIONS(12391), 1, + aux_sym_brace_expression_token1, + [244432] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1430), 2, - sym_concat, - anon_sym_RBRACE, - [150512] = 2, - ACTIONS(57), 1, + ACTIONS(12393), 1, + anon_sym_BQUOTE, + [244439] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1394), 2, - sym_concat, - anon_sym_RBRACE, - [150520] = 2, - ACTIONS(57), 1, + ACTIONS(12385), 1, + anon_sym_BQUOTE, + [244446] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1398), 2, - sym_concat, - anon_sym_RBRACE, - [150528] = 3, - ACTIONS(57), 1, + ACTIONS(12395), 1, + anon_sym_RPAREN, + [244453] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2112), 1, - sym_do_group, - [150538] = 2, - ACTIONS(57), 1, + ACTIONS(12397), 1, + anon_sym_RPAREN, + [244460] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1441), 2, - sym_concat, - anon_sym_RBRACE, - [150546] = 2, - ACTIONS(57), 1, + ACTIONS(12399), 1, + anon_sym_RBRACE3, + [244467] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1445), 2, - sym_concat, - anon_sym_RBRACE, - [150554] = 2, - ACTIONS(57), 1, + ACTIONS(12401), 1, + anon_sym_RPAREN, + [244474] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 2, - sym_concat, - anon_sym_RBRACE, - [150562] = 3, - ACTIONS(57), 1, + ACTIONS(12403), 1, + anon_sym_BQUOTE, + [244481] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2113), 1, - sym_do_group, - [150572] = 2, - ACTIONS(57), 1, + ACTIONS(12405), 1, + aux_sym_brace_expression_token1, + [244488] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1449), 2, - sym_concat, - anon_sym_RBRACE, - [150580] = 2, - ACTIONS(57), 1, + ACTIONS(12407), 1, + anon_sym_RBRACE3, + [244495] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6516), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150588] = 2, - ACTIONS(57), 1, + ACTIONS(12409), 1, + anon_sym_RPAREN, + [244502] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1385), 2, - sym_concat, - anon_sym_RBRACE, - [150596] = 2, - ACTIONS(57), 1, + ACTIONS(11651), 1, + anon_sym_DOT_DOT_DOT_GT, + [244509] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1453), 2, - sym_concat, - anon_sym_RBRACE, - [150604] = 2, - ACTIONS(57), 1, + ACTIONS(12411), 1, + anon_sym_BQUOTE, + [244516] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1457), 2, - sym_concat, - anon_sym_RBRACE, - [150612] = 2, - ACTIONS(57), 1, + ACTIONS(12395), 1, + anon_sym_BQUOTE, + [244523] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1461), 2, - sym_concat, - anon_sym_RBRACE, - [150620] = 2, - ACTIONS(57), 1, + ACTIONS(12413), 1, + anon_sym_RBRACE3, + [244530] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1542), 2, - sym_concat, - anon_sym_RBRACE, - [150628] = 2, - ACTIONS(57), 1, + ACTIONS(12415), 1, + anon_sym_BQUOTE, + [244537] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1467), 2, - sym_concat, - anon_sym_RBRACE, - [150636] = 2, - ACTIONS(57), 1, + ACTIONS(12417), 1, + aux_sym_brace_expression_token1, + [244544] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1471), 2, - sym_concat, - anon_sym_RBRACE, - [150644] = 2, - ACTIONS(57), 1, + ACTIONS(12409), 1, + anon_sym_BQUOTE, + [244551] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8485), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150652] = 2, - ACTIONS(57), 1, + ACTIONS(12419), 1, + anon_sym_RPAREN, + [244558] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1475), 2, - sym_concat, - anon_sym_RBRACE, - [150660] = 3, - ACTIONS(57), 1, + ACTIONS(12337), 1, + anon_sym_BQUOTE, + [244565] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8596), 1, - anon_sym_EQ, - [150670] = 3, - ACTIONS(57), 1, + ACTIONS(11653), 1, + anon_sym_DOT_DOT_DOT_GT, + [244572] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8598), 1, - anon_sym_EQ, - [150680] = 2, - ACTIONS(57), 1, + ACTIONS(12421), 1, + anon_sym_RBRACE2, + [244579] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1479), 2, - sym_concat, - anon_sym_RBRACE, - [150688] = 2, - ACTIONS(57), 1, + ACTIONS(12423), 1, + anon_sym_RPAREN, + [244586] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1483), 2, - sym_concat, - anon_sym_RBRACE, - [150696] = 2, - ACTIONS(57), 1, + ACTIONS(11530), 1, + anon_sym_DOT_DOT_DOT_GT, + [244593] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1487), 2, - sym_concat, - anon_sym_RBRACE, - [150704] = 2, - ACTIONS(57), 1, + ACTIONS(12425), 1, + aux_sym_brace_expression_token1, + [244600] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1491), 2, - sym_concat, - anon_sym_RBRACE, - [150712] = 2, - ACTIONS(57), 1, + ACTIONS(11575), 1, + anon_sym_DOT_DOT_DOT_GT, + [244607] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1495), 2, - sym_concat, - anon_sym_RBRACE, - [150720] = 2, - ACTIONS(57), 1, + ACTIONS(12427), 1, + anon_sym_RBRACE3, + [244614] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1499), 2, - sym_concat, - anon_sym_RBRACE, - [150728] = 2, - ACTIONS(57), 1, + ACTIONS(12429), 1, + anon_sym_RBRACE2, + [244621] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1503), 2, - sym_concat, - anon_sym_RBRACE, - [150736] = 2, - ACTIONS(57), 1, + ACTIONS(12431), 1, + anon_sym_RPAREN, + [244628] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1402), 2, - sym_concat, - anon_sym_RBRACE, - [150744] = 3, - ACTIONS(57), 1, + ACTIONS(12039), 1, + anon_sym_RPAREN, + [244635] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8415), 1, - aux_sym_for_statement_token1, - ACTIONS(8419), 1, - sym_semgrep_metavariable, - [150754] = 2, - ACTIONS(57), 1, + ACTIONS(12433), 1, + anon_sym_BQUOTE, + [244642] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1507), 2, - sym_concat, - anon_sym_RBRACE, - [150762] = 2, - ACTIONS(57), 1, + ACTIONS(12435), 1, + anon_sym_esac, + [244649] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1511), 2, - sym_concat, - anon_sym_RBRACE, - [150770] = 2, - ACTIONS(57), 1, + ACTIONS(12437), 1, + aux_sym_brace_expression_token1, + [244656] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1515), 2, - sym_concat, - anon_sym_RBRACE, - [150778] = 2, - ACTIONS(57), 1, + ACTIONS(12431), 1, + anon_sym_BQUOTE, + [244663] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8578), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150786] = 2, - ACTIONS(57), 1, + ACTIONS(12439), 1, + anon_sym_RBRACE2, + [244670] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1406), 2, - sym_concat, - anon_sym_RBRACE, - [150794] = 3, - ACTIONS(57), 1, + ACTIONS(12441), 1, + sym_heredoc_end, + [244677] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2103), 1, - sym_do_group, - [150804] = 2, - ACTIONS(57), 1, + ACTIONS(6077), 1, + anon_sym_RBRACK_RBRACK, + [244684] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12443), 1, + sym_heredoc_end, + [244691] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12445), 1, + anon_sym_RBRACE3, + [244698] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12447), 1, + anon_sym_RBRACE3, + [244705] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12449), 1, + aux_sym_brace_expression_token1, + [244712] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12451), 1, + anon_sym_RPAREN, + [244719] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1519), 2, - sym_concat, - anon_sym_RBRACE, - [150812] = 2, - ACTIONS(57), 1, + ACTIONS(12453), 1, + anon_sym_RBRACE2, + [244726] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8501), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150820] = 2, - ACTIONS(57), 1, + ACTIONS(12455), 1, + anon_sym_RPAREN, + [244733] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1410), 2, - sym_concat, - anon_sym_RBRACE, - [150828] = 3, - ACTIONS(57), 1, + ACTIONS(11655), 1, + anon_sym_RBRACE3, + [244740] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8600), 1, - anon_sym_EQ, - [150838] = 3, - ACTIONS(57), 1, + ACTIONS(12457), 1, + anon_sym_RBRACE3, + [244747] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8602), 1, - anon_sym_EQ, - [150848] = 2, - ACTIONS(57), 1, + ACTIONS(12459), 1, + anon_sym_BQUOTE, + [244754] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1414), 2, - sym_concat, - anon_sym_RBRACE, - [150856] = 2, - ACTIONS(57), 1, + ACTIONS(12455), 1, + anon_sym_BQUOTE, + [244761] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8514), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150864] = 3, - ACTIONS(57), 1, + ACTIONS(12461), 1, + aux_sym_brace_expression_token1, + [244768] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8604), 1, - anon_sym_EQ, - [150874] = 3, - ACTIONS(57), 1, + ACTIONS(12463), 1, + anon_sym_RPAREN, + [244775] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8606), 1, - anon_sym_EQ, - [150884] = 2, - ACTIONS(57), 1, + ACTIONS(10962), 1, + anon_sym_RBRACE3, + [244782] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8520), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150892] = 3, - ACTIONS(57), 1, + ACTIONS(12465), 1, + anon_sym_RBRACE3, + [244789] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8608), 1, - anon_sym_EQ, - [150902] = 3, - ACTIONS(57), 1, + ACTIONS(12129), 1, + anon_sym_BQUOTE, + [244796] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8610), 1, - anon_sym_EQ, - [150912] = 2, - ACTIONS(57), 1, + ACTIONS(11657), 1, + anon_sym_DOT_DOT_DOT_GT, + [244803] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8526), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150920] = 3, - ACTIONS(57), 1, + ACTIONS(12467), 1, + anon_sym_esac, + [244810] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8612), 1, - anon_sym_EQ, - [150930] = 3, - ACTIONS(57), 1, + ACTIONS(12469), 1, + anon_sym_RPAREN, + [244817] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8614), 1, - anon_sym_EQ, - [150940] = 2, - ACTIONS(57), 1, + ACTIONS(12471), 1, + aux_sym_brace_expression_token1, + [244824] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8534), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150948] = 3, - ACTIONS(57), 1, + ACTIONS(12473), 1, + anon_sym_esac, + [244831] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8616), 1, - anon_sym_EQ, - [150958] = 3, - ACTIONS(57), 1, + ACTIONS(12475), 1, + anon_sym_RBRACE2, + [244838] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_EQ, - [150968] = 3, - ACTIONS(57), 1, + ACTIONS(12477), 1, + anon_sym_fi, + [244845] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12479), 1, + anon_sym_esac, + [244852] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8377), 1, + ACTIONS(12481), 1, + anon_sym_RBRACE3, + [244859] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12483), 1, + anon_sym_RPAREN, + [244866] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(7541), 1, anon_sym_RBRACK, - ACTIONS(8379), 1, - sym_concat, - [150978] = 2, - ACTIONS(57), 1, + [244873] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8538), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [150986] = 3, - ACTIONS(57), 1, + ACTIONS(12485), 1, + aux_sym_brace_expression_token1, + [244880] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8620), 1, - anon_sym_EQ, - [150996] = 3, - ACTIONS(57), 1, + ACTIONS(12487), 1, + anon_sym_BQUOTE, + [244887] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8622), 1, - anon_sym_EQ, - [151006] = 2, - ACTIONS(57), 1, + ACTIONS(12489), 1, + anon_sym_RBRACE3, + [244894] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8540), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151014] = 3, - ACTIONS(57), 1, + ACTIONS(12483), 1, + anon_sym_BQUOTE, + [244901] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8624), 1, - anon_sym_EQ, - [151024] = 3, - ACTIONS(57), 1, + ACTIONS(12491), 1, + anon_sym_RPAREN, + [244908] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8626), 1, - anon_sym_EQ, - [151034] = 3, - ACTIONS(57), 1, + ACTIONS(12493), 1, + anon_sym_RBRACE3, + [244915] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8628), 1, - anon_sym_EQ, - [151044] = 3, - ACTIONS(57), 1, + ACTIONS(12495), 1, + anon_sym_RPAREN, + [244922] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2526), 1, - sym_do_group, - [151054] = 3, - ACTIONS(57), 1, + ACTIONS(12497), 1, + anon_sym_RBRACE3, + [244929] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2345), 1, - sym_do_group, - [151064] = 3, - ACTIONS(57), 1, + ACTIONS(12499), 1, + aux_sym_brace_expression_token1, + [244936] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8630), 1, - anon_sym_EQ, - [151074] = 3, - ACTIONS(57), 1, + ACTIONS(12501), 1, + aux_sym_statements_token1, + [244943] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8632), 1, - anon_sym_EQ, - [151084] = 3, - ACTIONS(57), 1, + ACTIONS(12503), 1, + anon_sym_RPAREN, + [244950] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8634), 1, - anon_sym_EQ, - [151094] = 3, - ACTIONS(57), 1, + ACTIONS(12505), 1, + anon_sym_BQUOTE, + [244957] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8636), 1, - anon_sym_EQ, - [151104] = 3, - ACTIONS(57), 1, + ACTIONS(12507), 1, + anon_sym_BQUOTE, + [244964] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8638), 1, - anon_sym_EQ, - [151114] = 3, - ACTIONS(57), 1, + ACTIONS(12503), 1, + anon_sym_BQUOTE, + [244971] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2561), 1, - sym_do_group, - [151124] = 3, - ACTIONS(57), 1, + ACTIONS(12509), 1, + anon_sym_RPAREN, + [244978] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8640), 1, - anon_sym_EQ, - [151134] = 3, - ACTIONS(57), 1, + ACTIONS(12495), 1, + anon_sym_BQUOTE, + [244985] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8642), 1, - anon_sym_EQ, - [151144] = 3, - ACTIONS(57), 1, + ACTIONS(12511), 1, + aux_sym_brace_expression_token1, + [244992] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8644), 1, - anon_sym_EQ, - [151154] = 3, - ACTIONS(57), 1, + ACTIONS(11659), 1, + anon_sym_DOT_DOT_DOT_GT, + [244999] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8646), 1, - anon_sym_EQ, - [151164] = 3, - ACTIONS(57), 1, + ACTIONS(12513), 1, + anon_sym_RPAREN, + [245006] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8648), 1, - anon_sym_EQ, - [151174] = 3, - ACTIONS(57), 1, + ACTIONS(12515), 1, + anon_sym_RBRACE3, + [245013] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8650), 1, - anon_sym_EQ, - [151184] = 3, - ACTIONS(57), 1, + ACTIONS(12517), 1, + anon_sym_BQUOTE, + [245020] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8652), 1, - anon_sym_EQ, - [151194] = 3, - ACTIONS(57), 1, + ACTIONS(12519), 1, + anon_sym_RBRACE2, + [245027] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8654), 1, - anon_sym_EQ, - [151204] = 3, - ACTIONS(57), 1, + ACTIONS(12513), 1, + anon_sym_BQUOTE, + [245034] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8656), 1, - anon_sym_EQ, - [151214] = 3, - ACTIONS(57), 1, + ACTIONS(12521), 1, + anon_sym_RBRACE3, + [245041] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8658), 1, - anon_sym_EQ, - [151224] = 3, - ACTIONS(57), 1, + ACTIONS(12523), 1, + aux_sym_brace_expression_token1, + [245048] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8330), 1, - anon_sym_RBRACK, - ACTIONS(8334), 1, - sym_concat, - [151234] = 3, - ACTIONS(57), 1, + ACTIONS(12525), 1, + anon_sym_RPAREN, + [245055] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8660), 1, - anon_sym_EQ, - [151244] = 3, - ACTIONS(57), 1, + ACTIONS(12527), 1, + anon_sym_RBRACE3, + [245062] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8662), 1, - anon_sym_EQ, - [151254] = 3, - ACTIONS(57), 1, + ACTIONS(12529), 1, + anon_sym_RPAREN, + [245069] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2369), 1, - sym_do_group, - [151264] = 3, - ACTIONS(57), 1, + ACTIONS(12531), 1, + anon_sym_RPAREN, + [245076] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2370), 1, - sym_do_group, - [151274] = 3, - ACTIONS(57), 1, + ACTIONS(12533), 1, + anon_sym_RPAREN, + [245083] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8664), 1, - anon_sym_EQ, - [151284] = 3, - ACTIONS(57), 1, + ACTIONS(11661), 1, + anon_sym_DOT_DOT_DOT_GT, + [245090] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8666), 1, - anon_sym_EQ, - [151294] = 3, - ACTIONS(57), 1, + ACTIONS(12535), 1, + anon_sym_BQUOTE, + [245097] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8668), 1, - anon_sym_EQ, - [151304] = 3, - ACTIONS(57), 1, + ACTIONS(12537), 1, + aux_sym_brace_expression_token1, + [245104] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8670), 1, - anon_sym_EQ, - [151314] = 3, - ACTIONS(57), 1, + ACTIONS(12539), 1, + anon_sym_BQUOTE, + [245111] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8672), 1, - anon_sym_EQ, - [151324] = 3, - ACTIONS(57), 1, + ACTIONS(12529), 1, + anon_sym_BQUOTE, + [245118] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8674), 1, - anon_sym_EQ, - [151334] = 3, - ACTIONS(57), 1, + ACTIONS(12541), 1, + anon_sym_RPAREN, + [245125] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8676), 1, - anon_sym_EQ, - [151344] = 3, - ACTIONS(57), 1, + ACTIONS(12531), 1, + anon_sym_BQUOTE, + [245132] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8678), 1, - anon_sym_EQ, - [151354] = 3, - ACTIONS(57), 1, + ACTIONS(11667), 1, + anon_sym_DOT_DOT_DOT_GT, + [245139] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8680), 1, - anon_sym_EQ, - [151364] = 3, - ACTIONS(57), 1, + ACTIONS(12543), 1, + anon_sym_RBRACE3, + [245146] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8682), 1, - anon_sym_EQ, - [151374] = 3, - ACTIONS(57), 1, + ACTIONS(12545), 1, + anon_sym_RPAREN, + [245153] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8684), 1, - anon_sym_EQ, - [151384] = 3, - ACTIONS(57), 1, + ACTIONS(12547), 1, + aux_sym_brace_expression_token1, + [245160] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8686), 1, - anon_sym_EQ, - [151394] = 3, - ACTIONS(57), 1, + ACTIONS(12549), 1, + anon_sym_RBRACE2, + [245167] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8688), 1, - anon_sym_EQ, - [151404] = 3, - ACTIONS(57), 1, + ACTIONS(11577), 1, + anon_sym_DOT_DOT_DOT_GT, + [245174] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8690), 1, - anon_sym_EQ, - [151414] = 3, - ACTIONS(57), 1, + ACTIONS(12551), 1, + anon_sym_BQUOTE, + [245181] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8692), 1, - anon_sym_EQ, - [151424] = 3, - ACTIONS(57), 1, + ACTIONS(12545), 1, + anon_sym_BQUOTE, + [245188] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8694), 1, - anon_sym_EQ, - [151434] = 3, - ACTIONS(57), 1, + ACTIONS(12553), 1, + anon_sym_RBRACE3, + [245195] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8696), 1, - anon_sym_EQ, - [151444] = 3, - ACTIONS(57), 1, + ACTIONS(12555), 1, + anon_sym_RPAREN, + [245202] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8698), 1, - anon_sym_EQ, - [151454] = 3, - ACTIONS(57), 1, + ACTIONS(12557), 1, + anon_sym_BQUOTE, + [245209] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8700), 1, - anon_sym_EQ, - [151464] = 3, - ACTIONS(57), 1, + ACTIONS(12559), 1, + aux_sym_brace_expression_token1, + [245216] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8702), 1, - anon_sym_EQ, - [151474] = 3, - ACTIONS(57), 1, + ACTIONS(11669), 1, + anon_sym_DOT_DOT_DOT_GT, + [245223] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8704), 1, - anon_sym_EQ, - [151484] = 3, - ACTIONS(57), 1, + ACTIONS(12533), 1, + anon_sym_BQUOTE, + [245230] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8706), 1, - anon_sym_EQ, - [151494] = 3, - ACTIONS(57), 1, + ACTIONS(12561), 1, + anon_sym_RBRACE2, + [245237] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8708), 1, - anon_sym_EQ, - [151504] = 3, - ACTIONS(57), 1, + ACTIONS(12563), 1, + anon_sym_RBRACE3, + [245244] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8710), 1, - anon_sym_EQ, - [151514] = 3, - ACTIONS(57), 1, + ACTIONS(12565), 1, + anon_sym_RBRACE2, + [245251] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2559), 1, - sym_do_group, - [151524] = 3, - ACTIONS(57), 1, + ACTIONS(12567), 1, + anon_sym_RPAREN, + [245258] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8712), 1, - anon_sym_EQ, - [151534] = 3, - ACTIONS(57), 1, + ACTIONS(12569), 1, + anon_sym_RBRACE2, + [245265] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, - anon_sym_LBRACK, - ACTIONS(8714), 1, - anon_sym_EQ, - [151544] = 3, - ACTIONS(57), 1, + ACTIONS(12571), 1, + aux_sym_brace_expression_token1, + [245272] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8564), 1, - aux_sym_for_statement_token1, - ACTIONS(8568), 1, - sym_semgrep_metavariable, - [151554] = 3, - ACTIONS(57), 1, + ACTIONS(12573), 1, + sym_heredoc_end, + [245279] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2126), 1, - sym_do_group, - [151564] = 2, - ACTIONS(57), 1, + ACTIONS(12575), 1, + anon_sym_RBRACE2, + [245286] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1418), 2, - sym_concat, - anon_sym_RBRACE, - [151572] = 2, - ACTIONS(57), 1, + ACTIONS(12577), 1, + anon_sym_BQUOTE, + [245293] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8716), 2, - anon_sym_do, - anon_sym_then, - [151580] = 2, - ACTIONS(57), 1, + ACTIONS(12579), 1, + sym_heredoc_end, + [245300] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1422), 2, - sym_concat, - anon_sym_RBRACE, - [151588] = 3, - ACTIONS(57), 1, + ACTIONS(12567), 1, + anon_sym_BQUOTE, + [245307] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2396), 1, - sym_do_group, - [151598] = 2, - ACTIONS(57), 1, + ACTIONS(12581), 1, + anon_sym_BQUOTE, + [245314] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8340), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [151606] = 3, - ACTIONS(57), 1, + ACTIONS(12583), 1, + aux_sym_brace_expression_token1, + [245321] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8580), 1, - aux_sym_for_statement_token1, - ACTIONS(8584), 1, - sym_semgrep_metavariable, - [151616] = 3, - ACTIONS(57), 1, + ACTIONS(12585), 1, + aux_sym_brace_expression_token1, + [245328] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8214), 1, - anon_sym_do, - STATE(2398), 1, - sym_do_group, - [151626] = 2, - ACTIONS(57), 1, + ACTIONS(12341), 1, + anon_sym_BQUOTE, + [245335] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6361), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [151634] = 3, - ACTIONS(57), 1, + ACTIONS(12587), 1, + anon_sym_RPAREN, + [245342] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8244), 1, - anon_sym_do, - STATE(2128), 1, - sym_do_group, - [151644] = 2, - ACTIONS(57), 1, + ACTIONS(12589), 1, + anon_sym_esac, + [245349] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(1426), 2, - sym_concat, - anon_sym_RBRACE, - [151652] = 3, - ACTIONS(57), 1, + ACTIONS(12591), 1, + anon_sym_RBRACE3, + [245356] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8218), 1, - anon_sym_do, - STATE(2566), 1, - sym_do_group, - [151662] = 3, - ACTIONS(57), 1, + ACTIONS(12593), 1, + anon_sym_RPAREN, + [245363] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8592), 1, + ACTIONS(12595), 1, anon_sym_LBRACK, - ACTIONS(8718), 1, - anon_sym_EQ, - [151672] = 2, - ACTIONS(57), 1, + [245370] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12597), 1, + anon_sym_RPAREN, + [245377] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12599), 1, + aux_sym_brace_expression_token1, + [245384] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12601), 1, + anon_sym_BQUOTE, + [245391] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8720), 1, - anon_sym_RPAREN, - [151679] = 2, - ACTIONS(57), 1, + ACTIONS(12593), 1, + anon_sym_BQUOTE, + [245398] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8722), 1, + ACTIONS(12603), 1, anon_sym_RPAREN, - [151686] = 2, - ACTIONS(57), 1, + [245405] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8724), 1, - anon_sym_esac, - [151693] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8444), 1, - anon_sym_RBRACE, - [151700] = 2, - ACTIONS(57), 1, + ACTIONS(12605), 1, + anon_sym_RPAREN, + [245412] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8518), 1, - anon_sym_RBRACE, - [151707] = 2, - ACTIONS(57), 1, + ACTIONS(11671), 1, + anon_sym_DOT_DOT_DOT_GT, + [245419] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8726), 1, - anon_sym_esac, - [151714] = 2, - ACTIONS(57), 1, + ACTIONS(12607), 1, + anon_sym_RBRACE3, + [245426] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4914), 1, - anon_sym_RBRACE, - [151721] = 2, - ACTIONS(57), 1, + ACTIONS(12609), 1, + anon_sym_RPAREN_RPAREN, + [245433] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6620), 1, - anon_sym_RBRACK, - [151728] = 2, - ACTIONS(57), 1, + ACTIONS(12611), 1, + aux_sym_brace_expression_token1, + [245440] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8429), 1, - anon_sym_DOT_DOT_DOT_GT, - [151735] = 2, - ACTIONS(57), 1, + ACTIONS(12613), 1, + anon_sym_RPAREN, + [245447] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8728), 1, + ACTIONS(12615), 1, anon_sym_RPAREN, - [151742] = 2, - ACTIONS(57), 1, + [245454] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8516), 1, + ACTIONS(11579), 1, anon_sym_DOT_DOT_DOT_GT, - [151749] = 2, - ACTIONS(57), 1, + [245461] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8730), 1, + ACTIONS(12617), 1, + anon_sym_RBRACE2, + [245468] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12619), 1, anon_sym_BQUOTE, - [151756] = 2, - ACTIONS(57), 1, + [245475] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12621), 1, + anon_sym_RBRACE2, + [245482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12623), 1, + aux_sym_statements_token1, + [245489] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12625), 1, + aux_sym_brace_expression_token1, + [245496] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8732), 1, + ACTIONS(12627), 1, + sym_heredoc_end, + [245503] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12629), 1, + anon_sym_fi, + [245510] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12631), 1, anon_sym_esac, - [151763] = 2, - ACTIONS(57), 1, + [245517] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5560), 1, + ACTIONS(12633), 1, anon_sym_RPAREN, - [151770] = 2, - ACTIONS(57), 1, + [245524] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8734), 1, - anon_sym_RPAREN, - [151777] = 2, - ACTIONS(57), 1, + ACTIONS(12613), 1, + anon_sym_BQUOTE, + [245531] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_RBRACE, - [151784] = 2, - ACTIONS(57), 1, + ACTIONS(12635), 1, + sym_heredoc_end, + [245538] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11547), 1, + anon_sym_DOT_DOT_DOT_GT, + [245545] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8736), 1, + ACTIONS(12637), 1, + aux_sym_brace_expression_token1, + [245552] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12639), 1, + anon_sym_RBRACE3, + [245559] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12641), 1, anon_sym_RPAREN, - [151791] = 2, - ACTIONS(57), 1, + [245566] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8738), 1, - anon_sym_BQUOTE, - [151798] = 2, - ACTIONS(57), 1, + ACTIONS(12643), 1, + anon_sym_RBRACE3, + [245573] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8740), 1, + ACTIONS(12645), 1, anon_sym_BQUOTE, - [151805] = 2, - ACTIONS(57), 1, + [245580] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8742), 1, + ACTIONS(11282), 1, + anon_sym_fi, + [245587] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12641), 1, anon_sym_BQUOTE, - [151812] = 2, - ACTIONS(57), 1, + [245594] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8744), 1, + ACTIONS(12647), 1, anon_sym_RPAREN, - [151819] = 2, - ACTIONS(57), 1, + [245601] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5513), 1, - anon_sym_RPAREN, - [151826] = 2, - ACTIONS(57), 1, + ACTIONS(12649), 1, + aux_sym_brace_expression_token1, + [245608] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(12651), 1, + anon_sym_RBRACE2, + [245615] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11673), 1, anon_sym_DOT_DOT_DOT_GT, - [151833] = 2, - ACTIONS(57), 1, + [245622] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5489), 1, + ACTIONS(11363), 1, + anon_sym_fi, + [245629] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12653), 1, + anon_sym_RBRACE3, + [245636] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12655), 1, anon_sym_RPAREN, - [151840] = 2, - ACTIONS(57), 1, + [245643] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8746), 1, - anon_sym_BQUOTE, - [151847] = 2, - ACTIONS(57), 1, + ACTIONS(12657), 1, + anon_sym_RBRACE2, + [245650] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5274), 1, - anon_sym_RBRACE, - [151854] = 2, - ACTIONS(57), 1, + ACTIONS(12659), 1, + anon_sym_RPAREN, + [245657] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8748), 1, - ts_builtin_sym_end, - [151861] = 2, - ACTIONS(57), 1, + ACTIONS(12661), 1, + aux_sym_brace_expression_token1, + [245664] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8750), 1, + ACTIONS(12663), 1, anon_sym_BQUOTE, - [151868] = 2, - ACTIONS(57), 1, + [245671] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8532), 1, - anon_sym_RBRACE, - [151875] = 2, - ACTIONS(57), 1, + ACTIONS(12655), 1, + anon_sym_BQUOTE, + [245678] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5487), 1, + ACTIONS(12665), 1, anon_sym_RPAREN, - [151882] = 2, - ACTIONS(57), 1, + [245685] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5511), 1, - anon_sym_RPAREN, - [151889] = 2, - ACTIONS(57), 1, + ACTIONS(12667), 1, + anon_sym_RBRACE3, + [245692] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8528), 1, - anon_sym_RBRACE, - [151896] = 2, - ACTIONS(57), 1, + ACTIONS(11675), 1, + anon_sym_DOT_DOT_DOT_GT, + [245699] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8752), 1, - anon_sym_fi, - [151903] = 2, - ACTIONS(57), 1, + ACTIONS(12669), 1, + anon_sym_RPAREN, + [245706] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8464), 1, + ACTIONS(11536), 1, anon_sym_DOT_DOT_DOT_GT, - [151910] = 2, - ACTIONS(57), 1, + [245713] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5515), 1, - anon_sym_RPAREN, - [151917] = 2, - ACTIONS(57), 1, + ACTIONS(12671), 1, + aux_sym_brace_expression_token1, + [245720] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8169), 1, - anon_sym_fi, - [151924] = 2, - ACTIONS(57), 1, + ACTIONS(12673), 1, + anon_sym_BQUOTE, + [245727] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8754), 1, + ACTIONS(12675), 1, + anon_sym_esac, + [245734] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12677), 1, + anon_sym_esac, + [245741] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12679), 1, + anon_sym_RBRACE3, + [245748] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12681), 1, + sym_heredoc_start, + [245755] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12669), 1, anon_sym_BQUOTE, - [151931] = 2, - ACTIONS(57), 1, + [245762] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5527), 1, + ACTIONS(12683), 1, anon_sym_RPAREN, - [151938] = 2, - ACTIONS(57), 1, + [245769] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5477), 1, - anon_sym_RPAREN, - [151945] = 2, - ACTIONS(57), 1, + ACTIONS(12685), 1, + aux_sym_brace_expression_token1, + [245776] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5469), 1, - anon_sym_RPAREN, - [151952] = 2, - ACTIONS(57), 1, + ACTIONS(12687), 1, + anon_sym_BQUOTE, + [245783] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12689), 1, + anon_sym_RBRACE2, + [245790] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8756), 1, + ACTIONS(12691), 1, anon_sym_BQUOTE, - [151959] = 2, - ACTIONS(57), 1, + [245797] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8758), 1, + ACTIONS(12683), 1, anon_sym_BQUOTE, - [151966] = 2, - ACTIONS(57), 1, + [245804] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8487), 1, - anon_sym_DOT_DOT_DOT_GT, - [151973] = 2, - ACTIONS(57), 1, + ACTIONS(12693), 1, + anon_sym_RPAREN, + [245811] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8760), 1, + ACTIONS(12659), 1, anon_sym_BQUOTE, - [151980] = 2, - ACTIONS(57), 1, + [245818] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8762), 1, - anon_sym_BQUOTE, - [151987] = 2, - ACTIONS(57), 1, + ACTIONS(11677), 1, + anon_sym_DOT_DOT_DOT_GT, + [245825] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12695), 1, + aux_sym_brace_expression_token1, + [245832] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8764), 1, + ACTIONS(12697), 1, anon_sym_RPAREN, - [151994] = 2, - ACTIONS(57), 1, + [245839] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8766), 1, + ACTIONS(12699), 1, anon_sym_BQUOTE, - [152001] = 2, - ACTIONS(57), 1, + [245846] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8542), 1, + ACTIONS(11581), 1, anon_sym_DOT_DOT_DOT_GT, - [152008] = 2, - ACTIONS(57), 1, + [245853] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8163), 1, - anon_sym_fi, - [152015] = 2, - ACTIONS(57), 1, + ACTIONS(12701), 1, + anon_sym_RBRACE2, + [245860] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8768), 1, - anon_sym_then, - [152022] = 2, - ACTIONS(57), 1, + ACTIONS(12703), 1, + anon_sym_RBRACE3, + [245867] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4321), 1, - anon_sym_RBRACE, - [152029] = 2, - ACTIONS(57), 1, + ACTIONS(11309), 1, + anon_sym_RBRACE3, + [245874] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8770), 1, + ACTIONS(12705), 1, anon_sym_RPAREN, - [152036] = 2, - ACTIONS(57), 1, + [245881] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8772), 1, - anon_sym_RPAREN, - [152043] = 2, - ACTIONS(57), 1, + ACTIONS(12707), 1, + aux_sym_brace_expression_token1, + [245888] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8458), 1, - anon_sym_RBRACE, - [152050] = 2, - ACTIONS(57), 1, + ACTIONS(12709), 1, + anon_sym_RBRACE2, + [245895] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8774), 1, + ACTIONS(12711), 1, anon_sym_fi, - [152057] = 2, - ACTIONS(57), 1, + [245902] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8776), 1, - anon_sym_RPAREN, - [152064] = 2, - ACTIONS(57), 1, + ACTIONS(12713), 1, + anon_sym_BQUOTE, + [245909] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8489), 1, - anon_sym_RBRACE, - [152071] = 2, - ACTIONS(57), 1, + ACTIONS(5982), 1, + anon_sym_RBRACK_RBRACK, + [245916] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8778), 1, + ACTIONS(12705), 1, anon_sym_BQUOTE, - [152078] = 2, - ACTIONS(57), 1, + [245923] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12715), 1, + anon_sym_RBRACE3, + [245930] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8780), 1, + ACTIONS(12717), 1, anon_sym_RPAREN, - [152085] = 2, - ACTIONS(57), 1, + [245937] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8393), 1, - anon_sym_DOT_DOT_DOT_GT, - [152092] = 2, - ACTIONS(57), 1, + ACTIONS(12719), 1, + aux_sym_brace_expression_token1, + [245944] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8782), 1, - anon_sym_RPAREN, - [152099] = 2, - ACTIONS(57), 1, + ACTIONS(12721), 1, + anon_sym_esac, + [245951] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5030), 1, - anon_sym_RBRACE, - [152106] = 2, - ACTIONS(57), 1, + ACTIONS(11679), 1, + anon_sym_DOT_DOT_DOT_GT, + [245958] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5200), 1, - anon_sym_RBRACE, - [152113] = 2, - ACTIONS(57), 1, + ACTIONS(12723), 1, + anon_sym_BQUOTE, + [245965] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5505), 1, + ACTIONS(12725), 1, + anon_sym_RBRACE3, + [245972] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12727), 1, anon_sym_RPAREN, - [152120] = 2, - ACTIONS(57), 1, + [245979] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5088), 1, - anon_sym_RBRACE, - [152127] = 2, - ACTIONS(57), 1, + ACTIONS(12633), 1, + anon_sym_BQUOTE, + [245986] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8548), 1, - anon_sym_DOT_DOT_DOT_GT, - [152134] = 2, - ACTIONS(57), 1, + ACTIONS(12729), 1, + anon_sym_RBRACE2, + [245993] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5517), 1, - anon_sym_RPAREN, - [152141] = 2, - ACTIONS(57), 1, + ACTIONS(12731), 1, + aux_sym_brace_expression_token1, + [246000] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8784), 1, + ACTIONS(12733), 1, anon_sym_BQUOTE, - [152148] = 2, - ACTIONS(57), 1, + [246007] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8786), 1, + ACTIONS(12727), 1, anon_sym_BQUOTE, - [152155] = 2, - ACTIONS(57), 1, + [246014] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4545), 1, - anon_sym_RBRACE, - [152162] = 2, - ACTIONS(57), 1, + ACTIONS(12735), 1, + anon_sym_RPAREN, + [246021] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8788), 1, + ACTIONS(12737), 1, anon_sym_RPAREN, - [152169] = 2, - ACTIONS(57), 1, + [246028] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4970), 1, - anon_sym_RBRACE, - [152176] = 2, - ACTIONS(57), 1, + ACTIONS(12469), 1, + anon_sym_BQUOTE, + [246035] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8460), 1, + ACTIONS(11681), 1, anon_sym_DOT_DOT_DOT_GT, - [152183] = 2, - ACTIONS(57), 1, + [246042] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8790), 1, - anon_sym_RPAREN, - [152190] = 2, - ACTIONS(57), 1, + ACTIONS(12739), 1, + anon_sym_RBRACE3, + [246049] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8792), 1, + ACTIONS(12741), 1, + aux_sym_brace_expression_token1, + [246056] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12743), 1, + anon_sym_RBRACE3, + [246063] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12745), 1, anon_sym_RPAREN, - [152197] = 2, - ACTIONS(57), 1, + [246070] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8544), 1, - anon_sym_DOT_DOT_DOT_GT, - [152204] = 2, - ACTIONS(57), 1, + ACTIONS(12747), 1, + anon_sym_RPAREN, + [246077] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4259), 1, - anon_sym_RBRACE, - [152211] = 2, - ACTIONS(57), 1, + ACTIONS(12749), 1, + anon_sym_RBRACE2, + [246084] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8794), 1, + ACTIONS(12751), 1, anon_sym_BQUOTE, - [152218] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8456), 1, - anon_sym_RBRACE, - [152225] = 2, - ACTIONS(57), 1, + [246091] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8796), 1, + ACTIONS(12753), 1, anon_sym_RPAREN, - [152232] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8477), 1, - anon_sym_DOT_DOT_DOT_GT, - [152239] = 2, - ACTIONS(57), 1, + [246098] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8798), 1, - anon_sym_esac, - [152246] = 2, - ACTIONS(57), 1, + ACTIONS(12755), 1, + anon_sym_RBRACE3, + [246105] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8413), 1, - anon_sym_DOT_DOT_DOT_GT, - [152253] = 2, - ACTIONS(57), 1, + ACTIONS(12757), 1, + aux_sym_brace_expression_token1, + [246112] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5459), 1, + ACTIONS(12759), 1, anon_sym_RPAREN, - [152260] = 2, - ACTIONS(57), 1, + [246119] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8399), 1, - anon_sym_DOT_DOT_DOT_GT, - [152267] = 2, - ACTIONS(57), 1, + ACTIONS(12761), 1, + anon_sym_BQUOTE, + [246126] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8800), 1, - ts_builtin_sym_end, - [152274] = 2, - ACTIONS(57), 1, + ACTIONS(12763), 1, + anon_sym_BQUOTE, + [246133] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8479), 1, - anon_sym_RBRACE, - [152281] = 2, - ACTIONS(57), 1, + ACTIONS(12759), 1, + anon_sym_BQUOTE, + [246140] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5467), 1, + ACTIONS(12765), 1, anon_sym_RPAREN, - [152288] = 2, - ACTIONS(57), 1, + [246147] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8802), 1, + ACTIONS(12745), 1, anon_sym_BQUOTE, - [152295] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8804), 1, - anon_sym_RPAREN, - [152302] = 2, - ACTIONS(57), 1, + [246154] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4804), 1, - anon_sym_RBRACE, - [152309] = 2, - ACTIONS(57), 1, + ACTIONS(12767), 1, + anon_sym_RBRACE3, + [246161] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5465), 1, - anon_sym_RPAREN, - [152316] = 2, - ACTIONS(57), 1, + ACTIONS(12769), 1, + aux_sym_brace_expression_token1, + [246168] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8806), 1, + ACTIONS(12771), 1, anon_sym_RPAREN, - [152323] = 2, - ACTIONS(57), 1, + [246175] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8411), 1, + ACTIONS(11683), 1, anon_sym_DOT_DOT_DOT_GT, - [152330] = 2, - ACTIONS(57), 1, + [246182] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8552), 1, - anon_sym_DOT_DOT_DOT_GT, - [152337] = 2, - ACTIONS(57), 1, + ACTIONS(12773), 1, + anon_sym_BQUOTE, + [246189] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4659), 1, - anon_sym_RBRACE, - [152344] = 2, - ACTIONS(57), 1, + ACTIONS(12771), 1, + anon_sym_BQUOTE, + [246196] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8550), 1, - anon_sym_RBRACE, - [152351] = 2, - ACTIONS(57), 1, + ACTIONS(12775), 1, + anon_sym_RPAREN, + [246203] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8808), 1, + ACTIONS(12777), 1, anon_sym_RPAREN, - [152358] = 2, - ACTIONS(57), 1, + [246210] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8491), 1, - anon_sym_DOT_DOT_DOT_GT, - [152365] = 2, - ACTIONS(57), 1, + ACTIONS(12717), 1, + anon_sym_BQUOTE, + [246217] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8810), 1, - anon_sym_RPAREN, - [152372] = 2, - ACTIONS(57), 1, + ACTIONS(12779), 1, + aux_sym_brace_expression_token1, + [246224] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8812), 1, - sym_heredoc_start, - [152379] = 2, - ACTIONS(57), 1, + ACTIONS(11685), 1, + anon_sym_DOT_DOT_DOT_GT, + [246231] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8814), 1, - anon_sym_fi, - [152386] = 2, - ACTIONS(57), 1, + ACTIONS(12781), 1, + anon_sym_RBRACE3, + [246238] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8816), 1, + ACTIONS(12783), 1, anon_sym_RPAREN, - [152393] = 2, - ACTIONS(57), 1, + [246245] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8433), 1, - anon_sym_DOT_DOT_DOT_GT, - [152400] = 2, - ACTIONS(57), 1, + ACTIONS(11361), 1, + anon_sym_RBRACE3, + [246252] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8818), 1, + ACTIONS(12785), 1, anon_sym_RPAREN, - [152407] = 2, - ACTIONS(57), 1, + [246259] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8462), 1, - anon_sym_RBRACE, - [152414] = 2, - ACTIONS(57), 1, + ACTIONS(12787), 1, + anon_sym_RBRACE3, + [246266] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_RBRACE, - [152421] = 2, - ACTIONS(57), 1, + ACTIONS(12789), 1, + anon_sym_RBRACE2, + [246273] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8820), 1, - anon_sym_BQUOTE, - [152428] = 2, - ACTIONS(57), 1, + ACTIONS(12791), 1, + aux_sym_brace_expression_token1, + [246280] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8822), 1, + ACTIONS(12793), 1, anon_sym_RPAREN, - [152435] = 2, - ACTIONS(57), 1, + [246287] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4429), 1, - anon_sym_RBRACE, - [152442] = 2, - ACTIONS(57), 1, + ACTIONS(6085), 1, + anon_sym_RBRACK_RBRACK, + [246294] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_RBRACE, - [152449] = 2, - ACTIONS(57), 1, + ACTIONS(12795), 1, + anon_sym_RBRACE2, + [246301] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8824), 1, - anon_sym_RPAREN, - [152456] = 2, - ACTIONS(57), 1, + ACTIONS(12797), 1, + anon_sym_BQUOTE, + [246308] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8493), 1, - anon_sym_RBRACE, - [152463] = 2, - ACTIONS(57), 1, + ACTIONS(12799), 1, + anon_sym_BQUOTE, + [246315] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_RPAREN, - [152470] = 2, - ACTIONS(57), 1, + ACTIONS(12793), 1, + anon_sym_BQUOTE, + [246322] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_RBRACE, - [152477] = 2, - ACTIONS(57), 1, + ACTIONS(12801), 1, + anon_sym_RBRACE3, + [246329] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8407), 1, - anon_sym_RBRACE, - [152484] = 2, - ACTIONS(57), 1, + ACTIONS(12803), 1, + aux_sym_brace_expression_token1, + [246336] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8828), 1, - anon_sym_BQUOTE, - [152491] = 2, - ACTIONS(57), 1, + ACTIONS(12805), 1, + anon_sym_RBRACE3, + [246343] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(12807), 1, anon_sym_RPAREN, - [152498] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8401), 1, - anon_sym_RBRACE, - [152505] = 2, - ACTIONS(57), 1, + [246350] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8832), 1, - anon_sym_esac, - [152512] = 2, - ACTIONS(57), 1, + ACTIONS(12809), 1, + anon_sym_RBRACE3, + [246357] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5529), 1, + ACTIONS(12811), 1, anon_sym_RPAREN, - [152519] = 2, - ACTIONS(57), 1, + [246364] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5461), 1, + ACTIONS(12813), 1, anon_sym_RPAREN, - [152526] = 2, - ACTIONS(57), 1, + [246371] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8834), 1, + ACTIONS(12815), 1, anon_sym_BQUOTE, - [152533] = 2, - ACTIONS(57), 1, + [246378] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8836), 1, - anon_sym_then, - [152540] = 2, - ACTIONS(57), 1, + ACTIONS(12811), 1, + anon_sym_BQUOTE, + [246385] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8171), 1, - anon_sym_fi, - [152547] = 2, - ACTIONS(57), 1, + ACTIONS(12817), 1, + aux_sym_brace_expression_token1, + [246392] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8560), 1, - anon_sym_RBRACE, - [152554] = 2, - ACTIONS(57), 1, + ACTIONS(12819), 1, + aux_sym_statements_token1, + [246399] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8838), 1, + ACTIONS(12821), 1, anon_sym_RPAREN, - [152561] = 2, - ACTIONS(57), 1, + [246406] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_RBRACE, - [152568] = 2, - ACTIONS(57), 1, + ACTIONS(12823), 1, + anon_sym_BQUOTE, + [246413] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8840), 1, + ACTIONS(11693), 1, + anon_sym_DOT_DOT_DOT_GT, + [246420] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12825), 1, anon_sym_BQUOTE, - [152575] = 2, - ACTIONS(57), 1, + [246427] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4097), 1, - anon_sym_RBRACE, - [152582] = 2, - ACTIONS(57), 1, + ACTIONS(12813), 1, + anon_sym_BQUOTE, + [246434] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8842), 1, - anon_sym_then, - [152589] = 2, - ACTIONS(57), 1, + ACTIONS(12827), 1, + anon_sym_RBRACE3, + [246441] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8844), 1, - anon_sym_in, - [152596] = 2, - ACTIONS(57), 1, + ACTIONS(12829), 1, + aux_sym_brace_expression_token1, + [246448] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12831), 1, + anon_sym_RBRACE2, + [246455] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5525), 1, + ACTIONS(12833), 1, anon_sym_RPAREN, - [152603] = 2, - ACTIONS(57), 1, + [246462] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8846), 1, + ACTIONS(12835), 1, + sym_heredoc_end, + [246469] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12837), 1, anon_sym_RPAREN, - [152610] = 2, - ACTIONS(57), 1, + [246476] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8481), 1, - anon_sym_RBRACE, - [152617] = 2, - ACTIONS(57), 1, + ACTIONS(12839), 1, + anon_sym_esac, + [246483] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5519), 1, + ACTIONS(12841), 1, anon_sym_RPAREN, - [152624] = 2, - ACTIONS(57), 1, + [246490] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8558), 1, - anon_sym_DOT_DOT_DOT_GT, - [152631] = 2, - ACTIONS(57), 1, + ACTIONS(12843), 1, + sym_heredoc_end, + [246497] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8848), 1, + ACTIONS(12845), 1, + aux_sym_brace_expression_token1, + [246504] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12847), 1, anon_sym_BQUOTE, - [152638] = 2, - ACTIONS(57), 1, + [246511] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12849), 1, + anon_sym_BQUOTE, + [246518] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12851), 1, + anon_sym_RBRACE3, + [246525] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12833), 1, + anon_sym_BQUOTE, + [246532] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12837), 1, + anon_sym_BQUOTE, + [246539] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8850), 1, + ACTIONS(12853), 1, anon_sym_RPAREN, - [152645] = 2, - ACTIONS(57), 1, + [246546] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4912), 1, - anon_sym_RBRACE, - [152652] = 2, - ACTIONS(57), 1, + ACTIONS(12855), 1, + anon_sym_RBRACE3, + [246553] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12857), 1, + aux_sym_brace_expression_token1, + [246560] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(12859), 1, + anon_sym_RPAREN, + [246567] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12861), 1, + anon_sym_RBRACE3, + [246574] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11549), 1, anon_sym_DOT_DOT_DOT_GT, - [152659] = 2, - ACTIONS(57), 1, + [246581] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4379), 1, - anon_sym_RBRACE, - [152666] = 2, - ACTIONS(57), 1, + ACTIONS(12863), 1, + anon_sym_BQUOTE, + [246588] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8562), 1, + ACTIONS(12859), 1, + anon_sym_BQUOTE, + [246595] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12865), 1, + aux_sym_statements_token1, + [246602] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11695), 1, anon_sym_DOT_DOT_DOT_GT, - [152673] = 2, - ACTIONS(57), 1, + [246609] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_RBRACE, - [152680] = 2, - ACTIONS(57), 1, + ACTIONS(12867), 1, + aux_sym_brace_expression_token1, + [246616] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5533), 1, - anon_sym_RPAREN, - [152687] = 2, - ACTIONS(57), 1, + ACTIONS(12869), 1, + anon_sym_BQUOTE, + [246623] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5523), 1, + ACTIONS(12871), 1, anon_sym_RPAREN, - [152694] = 2, - ACTIONS(57), 1, - sym_comment, - ACTIONS(8442), 1, - anon_sym_RBRACE, - [152701] = 2, - ACTIONS(57), 1, + [246630] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8852), 1, - sym_heredoc_start, - [152708] = 2, - ACTIONS(57), 1, + ACTIONS(12873), 1, + anon_sym_BQUOTE, + [246637] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4261), 1, - anon_sym_RBRACE, - [152715] = 2, - ACTIONS(57), 1, + ACTIONS(11697), 1, + anon_sym_DOT_DOT_DOT_GT, + [246644] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(6635), 1, - anon_sym_RBRACK, - [152722] = 2, - ACTIONS(57), 1, + ACTIONS(12841), 1, + anon_sym_BQUOTE, + [246651] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4205), 1, - anon_sym_RBRACE, - [152729] = 2, - ACTIONS(57), 1, + ACTIONS(12875), 1, + anon_sym_RBRACE3, + [246658] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(12877), 1, anon_sym_RPAREN, - [152736] = 2, - ACTIONS(57), 1, + [246665] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8391), 1, - anon_sym_RBRACE, - [152743] = 2, - ACTIONS(57), 1, + ACTIONS(12879), 1, + aux_sym_brace_expression_token1, + [246672] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5549), 1, + ACTIONS(12881), 1, anon_sym_RPAREN, - [152750] = 2, - ACTIONS(57), 1, + [246679] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5473), 1, - anon_sym_RPAREN, - [152757] = 2, - ACTIONS(57), 1, + ACTIONS(12883), 1, + anon_sym_RBRACE2, + [246686] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8183), 1, - anon_sym_fi, - [152764] = 2, - ACTIONS(57), 1, + ACTIONS(12885), 1, + anon_sym_RPAREN, + [246693] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8854), 1, - anon_sym_esac, - [152771] = 2, - ACTIONS(57), 1, + ACTIONS(12887), 1, + anon_sym_RBRACE3, + [246700] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5471), 1, + ACTIONS(12889), 1, anon_sym_RPAREN, - [152778] = 2, - ACTIONS(57), 1, + [246707] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5521), 1, - anon_sym_RPAREN, - [152785] = 2, - ACTIONS(57), 1, + ACTIONS(11534), 1, + anon_sym_DOT_DOT_DOT_GT, + [246714] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8856), 1, + ACTIONS(12891), 1, anon_sym_BQUOTE, - [152792] = 2, - ACTIONS(57), 1, + [246721] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12893), 1, + anon_sym_BQUOTE, + [246728] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12889), 1, + anon_sym_BQUOTE, + [246735] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8858), 1, + ACTIONS(12895), 1, anon_sym_RPAREN, - [152799] = 2, - ACTIONS(57), 1, + [246742] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8860), 1, + ACTIONS(11583), 1, + anon_sym_DOT_DOT_DOT_GT, + [246749] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12885), 1, anon_sym_BQUOTE, - [152806] = 2, - ACTIONS(57), 1, + [246756] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4599), 1, - anon_sym_RBRACE, - [152813] = 2, - ACTIONS(57), 1, + ACTIONS(11701), 1, + anon_sym_DOT_DOT_DOT_GT, + [246763] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12897), 1, + anon_sym_RBRACE3, + [246770] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(12899), 1, anon_sym_RPAREN, - [152820] = 2, - ACTIONS(57), 1, + [246777] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8505), 1, - anon_sym_RBRACE, - [152827] = 2, - ACTIONS(57), 1, + ACTIONS(12901), 1, + anon_sym_RPAREN, + [246784] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8862), 1, + ACTIONS(12903), 1, anon_sym_BQUOTE, - [152834] = 2, - ACTIONS(57), 1, + [246791] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(12899), 1, + anon_sym_BQUOTE, + [246798] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12905), 1, anon_sym_RPAREN, - [152841] = 2, - ACTIONS(57), 1, + [246805] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8423), 1, - anon_sym_RBRACE, - [152848] = 2, - ACTIONS(57), 1, + ACTIONS(12783), 1, + anon_sym_BQUOTE, + [246812] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8385), 1, + ACTIONS(11703), 1, anon_sym_DOT_DOT_DOT_GT, - [152855] = 2, - ACTIONS(57), 1, + [246819] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8866), 1, - anon_sym_then, - [152862] = 2, - ACTIONS(57), 1, + ACTIONS(11532), 1, + anon_sym_DOT_DOT_DOT_GT, + [246826] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5475), 1, + ACTIONS(12907), 1, + anon_sym_RBRACE2, + [246833] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12909), 1, anon_sym_RPAREN, - [152869] = 2, - ACTIONS(57), 1, + [246840] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4233), 1, - anon_sym_RBRACE, - [152876] = 2, - ACTIONS(57), 1, + ACTIONS(11551), 1, + anon_sym_DOT_DOT_DOT_GT, + [246847] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8466), 1, - anon_sym_RBRACE, - [152883] = 2, - ACTIONS(57), 1, + ACTIONS(12911), 1, + anon_sym_RBRACE2, + [246854] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8868), 1, - anon_sym_RPAREN, - [152890] = 2, - ACTIONS(57), 1, + ACTIONS(11585), 1, + anon_sym_DOT_DOT_DOT_GT, + [246861] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_esac, - [152897] = 2, - ACTIONS(57), 1, + ACTIONS(12913), 1, + anon_sym_RBRACE3, + [246868] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8450), 1, - anon_sym_RBRACE, - [152904] = 2, - ACTIONS(57), 1, + ACTIONS(12171), 1, + anon_sym_RPAREN, + [246875] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5541), 1, + ACTIONS(12915), 1, anon_sym_RPAREN, - [152911] = 2, - ACTIONS(57), 1, + [246882] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8872), 1, - anon_sym_BQUOTE, - [152918] = 2, - ACTIONS(57), 1, + ACTIONS(11699), 1, + anon_sym_DOT_DOT_DOT_GT, + [246889] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4806), 1, - anon_sym_RBRACE, - [152925] = 2, - ACTIONS(57), 1, + ACTIONS(12917), 1, + anon_sym_RBRACE2, + [246896] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_esac, - [152932] = 2, - ACTIONS(57), 1, + ACTIONS(12919), 1, + anon_sym_RBRACE2, + [246903] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8876), 1, - anon_sym_BQUOTE, - [152939] = 2, - ACTIONS(57), 1, + ACTIONS(6006), 1, + anon_sym_RBRACK_RBRACK, + [246910] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_RBRACE, - [152946] = 2, - ACTIONS(57), 1, + ACTIONS(12921), 1, + anon_sym_RBRACE2, + [246917] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4866), 1, - anon_sym_RBRACE, - [152953] = 2, - ACTIONS(57), 1, + ACTIONS(12923), 1, + anon_sym_fi, + [246924] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_RPAREN, - [152960] = 2, - ACTIONS(57), 1, + ACTIONS(12925), 1, + anon_sym_BQUOTE, + [246931] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8395), 1, - anon_sym_DOT_DOT_DOT_GT, - [152967] = 2, - ACTIONS(57), 1, + ACTIONS(12927), 1, + anon_sym_esac, + [246938] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8570), 1, - anon_sym_DOT_DOT_DOT_GT, - [152974] = 2, - ACTIONS(57), 1, + ACTIONS(6002), 1, + anon_sym_RBRACK_RBRACK, + [246945] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8389), 1, - anon_sym_RBRACE, - [152981] = 2, - ACTIONS(57), 1, + ACTIONS(12929), 1, + anon_sym_RBRACE3, + [246952] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5140), 1, - anon_sym_RBRACE, - [152988] = 2, - ACTIONS(57), 1, + ACTIONS(12931), 1, + anon_sym_RPAREN, + [246959] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4491), 1, - anon_sym_RBRACE, - [152995] = 2, - ACTIONS(57), 1, + ACTIONS(12933), 1, + anon_sym_RBRACE3, + [246966] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_in, - [153002] = 2, - ACTIONS(57), 1, + ACTIONS(12935), 1, + anon_sym_RPAREN, + [246973] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8572), 1, - anon_sym_RBRACE, - [153009] = 2, - ACTIONS(57), 1, + ACTIONS(12937), 1, + anon_sym_LT_LT_LT, + [246980] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8882), 1, - sym_heredoc_start, - [153016] = 2, - ACTIONS(57), 1, + ACTIONS(12939), 1, + anon_sym_BQUOTE, + [246987] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8884), 1, + ACTIONS(12935), 1, anon_sym_BQUOTE, - [153023] = 2, - ACTIONS(57), 1, + [246994] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5531), 1, + ACTIONS(12941), 1, anon_sym_RPAREN, - [153030] = 2, - ACTIONS(57), 1, + [247001] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8425), 1, - anon_sym_DOT_DOT_DOT_GT, - [153037] = 2, - ACTIONS(57), 1, + ACTIONS(12943), 1, + aux_sym_brace_expression_token1, + [247008] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12945), 1, + anon_sym_RPAREN, + [247015] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12947), 1, + anon_sym_RPAREN_RPAREN, + [247022] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8446), 1, + ACTIONS(11705), 1, anon_sym_DOT_DOT_DOT_GT, - [153044] = 2, - ACTIONS(57), 1, + [247029] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12949), 1, + anon_sym_RBRACE3, + [247036] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12951), 1, + anon_sym_DOT_DOT, + [247043] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8886), 1, + ACTIONS(12953), 1, + anon_sym_in, + [247050] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12955), 1, anon_sym_RPAREN, - [153051] = 2, - ACTIONS(57), 1, + [247057] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8576), 1, - anon_sym_RBRACE, - [153058] = 2, - ACTIONS(57), 1, + ACTIONS(12957), 1, + sym_heredoc_start, + [247064] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8888), 1, + ACTIONS(12959), 1, anon_sym_esac, - [153065] = 2, - ACTIONS(57), 1, + [247071] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8468), 1, - anon_sym_RBRACE, - [153072] = 2, - ACTIONS(57), 1, + ACTIONS(12961), 1, + anon_sym_BQUOTE, + [247078] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8890), 1, + ACTIONS(12807), 1, anon_sym_BQUOTE, - [153079] = 2, - ACTIONS(57), 1, + [247085] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8892), 1, + ACTIONS(12963), 1, + sym_heredoc_start, + [247092] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12945), 1, + anon_sym_BQUOTE, + [247099] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12965), 1, anon_sym_RPAREN, - [153086] = 2, - ACTIONS(57), 1, + [247106] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8397), 1, - anon_sym_DOT_DOT_DOT_GT, - [153093] = 2, - ACTIONS(57), 1, + ACTIONS(12967), 1, + anon_sym_RBRACE2, + [247113] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4153), 1, - anon_sym_RBRACE, - [153100] = 2, - ACTIONS(57), 1, + ACTIONS(12969), 1, + anon_sym_RPAREN, + [247120] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8427), 1, - anon_sym_DOT_DOT_DOT_GT, - [153107] = 2, - ACTIONS(57), 1, + ACTIONS(12971), 1, + anon_sym_DOT_DOT, + [247127] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_RBRACE, - [153114] = 2, - ACTIONS(57), 1, + ACTIONS(12973), 1, + anon_sym_RBRACE2, + [247134] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(4191), 1, - anon_sym_RBRACE, - [153121] = 2, - ACTIONS(57), 1, + ACTIONS(12975), 1, + sym_heredoc_start, + [247141] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8448), 1, - anon_sym_RBRACE, - [153128] = 2, - ACTIONS(57), 1, + ACTIONS(12977), 1, + anon_sym_RBRACE2, + [247148] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5547), 1, - anon_sym_RPAREN, - [153135] = 2, - ACTIONS(57), 1, + ACTIONS(12979), 1, + sym_heredoc_start, + [247155] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8894), 1, - anon_sym_in, - [153142] = 2, - ACTIONS(57), 1, + ACTIONS(12981), 1, + anon_sym_RBRACE3, + [247162] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8173), 1, - anon_sym_fi, - [153149] = 2, - ACTIONS(57), 1, + ACTIONS(11587), 1, + anon_sym_DOT_DOT_DOT_GT, + [247169] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_fi, - [153156] = 2, - ACTIONS(57), 1, + ACTIONS(12029), 1, + anon_sym_RPAREN, + [247176] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8896), 1, - anon_sym_BQUOTE, - [153163] = 2, - ACTIONS(57), 1, + ACTIONS(11399), 1, + anon_sym_RBRACE3, + [247183] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8588), 1, - anon_sym_RBRACE, - [153170] = 2, - ACTIONS(57), 1, + ACTIONS(12983), 1, + anon_sym_DOT_DOT, + [247190] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8403), 1, - anon_sym_RBRACE, - [153177] = 2, - ACTIONS(57), 1, + ACTIONS(12985), 1, + anon_sym_RBRACE3, + [247197] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8898), 1, - anon_sym_BQUOTE, - [153184] = 2, - ACTIONS(57), 1, + ACTIONS(12987), 1, + sym_heredoc_start, + [247204] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(5503), 1, + ACTIONS(12823), 1, anon_sym_RPAREN, - [153191] = 2, - ACTIONS(57), 1, + [247211] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8409), 1, - anon_sym_DOT_DOT_DOT_GT, - [153198] = 2, - ACTIONS(57), 1, + ACTIONS(12989), 1, + sym_heredoc_start, + [247218] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8470), 1, - anon_sym_RBRACE, - [153205] = 2, - ACTIONS(57), 1, + ACTIONS(12991), 1, + anon_sym_DOT_DOT, + [247225] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12993), 1, + sym_heredoc_start, + [247232] = 2, + ACTIONS(71), 1, sym_comment, - ACTIONS(8556), 1, + ACTIONS(12995), 1, + sym_heredoc_start, + [247239] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12997), 1, + anon_sym_DOT_DOT, + [247246] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(12999), 1, + anon_sym_DOT_DOT, + [247253] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13001), 1, + anon_sym_DOT_DOT, + [247260] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13003), 1, + anon_sym_DOT_DOT, + [247267] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13005), 1, + anon_sym_DOT_DOT, + [247274] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13007), 1, + anon_sym_DOT_DOT, + [247281] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13009), 1, + anon_sym_DOT_DOT, + [247288] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13011), 1, + anon_sym_DOT_DOT, + [247295] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13013), 1, + anon_sym_DOT_DOT, + [247302] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13015), 1, + anon_sym_DOT_DOT, + [247309] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13017), 1, + anon_sym_DOT_DOT, + [247316] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13019), 1, + anon_sym_DOT_DOT, + [247323] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13021), 1, + anon_sym_DOT_DOT, + [247330] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13023), 1, + anon_sym_DOT_DOT, + [247337] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13025), 1, + anon_sym_DOT_DOT, + [247344] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13027), 1, + anon_sym_DOT_DOT, + [247351] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13029), 1, + anon_sym_DOT_DOT, + [247358] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13031), 1, + anon_sym_DOT_DOT, + [247365] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13033), 1, + anon_sym_DOT_DOT, + [247372] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13035), 1, + anon_sym_DOT_DOT, + [247379] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13037), 1, + anon_sym_DOT_DOT, + [247386] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13039), 1, + anon_sym_DOT_DOT, + [247393] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13041), 1, + anon_sym_DOT_DOT, + [247400] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13043), 1, + anon_sym_DOT_DOT, + [247407] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13045), 1, + anon_sym_DOT_DOT, + [247414] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13047), 1, + anon_sym_DOT_DOT, + [247421] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13049), 1, + anon_sym_DOT_DOT, + [247428] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13051), 1, + anon_sym_DOT_DOT, + [247435] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13053), 1, + anon_sym_DOT_DOT, + [247442] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13055), 1, + anon_sym_DOT_DOT, + [247449] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13057), 1, + anon_sym_DOT_DOT, + [247456] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13059), 1, + anon_sym_DOT_DOT, + [247463] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13061), 1, + anon_sym_DOT_DOT, + [247470] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13063), 1, + anon_sym_DOT_DOT, + [247477] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13065), 1, + anon_sym_DOT_DOT, + [247484] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13067), 1, + anon_sym_DOT_DOT, + [247491] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13069), 1, + anon_sym_DOT_DOT, + [247498] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13071), 1, + anon_sym_DOT_DOT, + [247505] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13073), 1, + anon_sym_DOT_DOT, + [247512] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13075), 1, + anon_sym_DOT_DOT, + [247519] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13077), 1, + anon_sym_DOT_DOT, + [247526] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(11553), 1, anon_sym_DOT_DOT_DOT_GT, + [247533] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13079), 1, + anon_sym_DOT_DOT, + [247540] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13081), 1, + anon_sym_DOT_DOT, + [247547] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13083), 1, + anon_sym_DOT_DOT, + [247554] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13085), 1, + anon_sym_DOT_DOT, + [247561] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13087), 1, + anon_sym_DOT_DOT, + [247568] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13089), 1, + anon_sym_DOT_DOT, + [247575] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13091), 1, + anon_sym_DOT_DOT, + [247582] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13093), 1, + anon_sym_DOT_DOT, + [247589] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13095), 1, + anon_sym_DOT_DOT, + [247596] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13097), 1, + anon_sym_DOT_DOT, + [247603] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13099), 1, + aux_sym_brace_expression_token1, + [247610] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13101), 1, + anon_sym_RPAREN, + [247617] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13103), 1, + aux_sym_brace_expression_token1, + [247624] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13105), 1, + aux_sym_brace_expression_token1, + [247631] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13107), 1, + aux_sym_brace_expression_token1, + [247638] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13109), 1, + aux_sym_brace_expression_token1, + [247645] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13111), 1, + aux_sym_brace_expression_token1, + [247652] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13113), 1, + aux_sym_brace_expression_token1, + [247659] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13115), 1, + aux_sym_brace_expression_token1, + [247666] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13117), 1, + aux_sym_brace_expression_token1, + [247673] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13119), 1, + aux_sym_brace_expression_token1, + [247680] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13121), 1, + aux_sym_brace_expression_token1, + [247687] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13123), 1, + aux_sym_brace_expression_token1, + [247694] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13125), 1, + aux_sym_brace_expression_token1, + [247701] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13127), 1, + aux_sym_brace_expression_token1, + [247708] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13129), 1, + aux_sym_brace_expression_token1, + [247715] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13131), 1, + aux_sym_brace_expression_token1, + [247722] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13133), 1, + aux_sym_brace_expression_token1, + [247729] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13135), 1, + aux_sym_brace_expression_token1, + [247736] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13137), 1, + aux_sym_brace_expression_token1, + [247743] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13139), 1, + aux_sym_brace_expression_token1, + [247750] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13141), 1, + aux_sym_brace_expression_token1, + [247757] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13143), 1, + aux_sym_brace_expression_token1, + [247764] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13145), 1, + aux_sym_brace_expression_token1, + [247771] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13147), 1, + aux_sym_brace_expression_token1, + [247778] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13149), 1, + aux_sym_brace_expression_token1, + [247785] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13151), 1, + aux_sym_brace_expression_token1, + [247792] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13153), 1, + aux_sym_brace_expression_token1, + [247799] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13155), 1, + aux_sym_brace_expression_token1, + [247806] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13157), 1, + aux_sym_brace_expression_token1, + [247813] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13159), 1, + aux_sym_brace_expression_token1, + [247820] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13161), 1, + aux_sym_brace_expression_token1, + [247827] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13163), 1, + aux_sym_brace_expression_token1, + [247834] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13165), 1, + aux_sym_brace_expression_token1, + [247841] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13167), 1, + aux_sym_brace_expression_token1, + [247848] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13169), 1, + aux_sym_brace_expression_token1, + [247855] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13171), 1, + aux_sym_brace_expression_token1, + [247862] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13173), 1, + aux_sym_brace_expression_token1, + [247869] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13175), 1, + aux_sym_brace_expression_token1, + [247876] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13177), 1, + aux_sym_brace_expression_token1, + [247883] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13179), 1, + aux_sym_brace_expression_token1, + [247890] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13181), 1, + aux_sym_brace_expression_token1, + [247897] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13183), 1, + aux_sym_brace_expression_token1, + [247904] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13185), 1, + aux_sym_brace_expression_token1, + [247911] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13187), 1, + aux_sym_brace_expression_token1, + [247918] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13189), 1, + aux_sym_brace_expression_token1, + [247925] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13191), 1, + aux_sym_brace_expression_token1, + [247932] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13193), 1, + aux_sym_brace_expression_token1, + [247939] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13195), 1, + aux_sym_brace_expression_token1, + [247946] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13197), 1, + aux_sym_brace_expression_token1, + [247953] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13199), 1, + aux_sym_brace_expression_token1, + [247960] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13201), 1, + aux_sym_brace_expression_token1, + [247967] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13203), 1, + aux_sym_brace_expression_token1, + [247974] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13205), 1, + aux_sym_brace_expression_token1, + [247981] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13207), 1, + aux_sym_brace_expression_token1, + [247988] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13209), 1, + aux_sym_brace_expression_token1, + [247995] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13211), 1, + aux_sym_brace_expression_token1, + [248002] = 2, + ACTIONS(71), 1, + sym_comment, + ACTIONS(13213), 1, + anon_sym_RBRACE3, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(153)] = 0, - [SMALL_STATE(154)] = 97, - [SMALL_STATE(155)] = 194, - [SMALL_STATE(156)] = 291, - [SMALL_STATE(157)] = 387, - [SMALL_STATE(158)] = 483, - [SMALL_STATE(159)] = 579, - [SMALL_STATE(160)] = 648, - [SMALL_STATE(161)] = 717, - [SMALL_STATE(162)] = 812, - [SMALL_STATE(163)] = 907, - [SMALL_STATE(164)] = 978, - [SMALL_STATE(165)] = 1073, - [SMALL_STATE(166)] = 1168, - [SMALL_STATE(167)] = 1263, - [SMALL_STATE(168)] = 1358, - [SMALL_STATE(169)] = 1423, - [SMALL_STATE(170)] = 1491, - [SMALL_STATE(171)] = 1583, - [SMALL_STATE(172)] = 1651, - [SMALL_STATE(173)] = 1743, - [SMALL_STATE(174)] = 1813, - [SMALL_STATE(175)] = 1883, - [SMALL_STATE(176)] = 1952, - [SMALL_STATE(177)] = 2021, - [SMALL_STATE(178)] = 2090, - [SMALL_STATE(179)] = 2159, - [SMALL_STATE(180)] = 2223, - [SMALL_STATE(181)] = 2283, - [SMALL_STATE(182)] = 2347, - [SMALL_STATE(183)] = 2407, - [SMALL_STATE(184)] = 2475, - [SMALL_STATE(185)] = 2539, - [SMALL_STATE(186)] = 2599, - [SMALL_STATE(187)] = 2655, - [SMALL_STATE(188)] = 2723, - [SMALL_STATE(189)] = 2787, - [SMALL_STATE(190)] = 2847, - [SMALL_STATE(191)] = 2907, - [SMALL_STATE(192)] = 2963, - [SMALL_STATE(193)] = 3023, - [SMALL_STATE(194)] = 3109, - [SMALL_STATE(195)] = 3195, - [SMALL_STATE(196)] = 3263, - [SMALL_STATE(197)] = 3349, - [SMALL_STATE(198)] = 3417, - [SMALL_STATE(199)] = 3477, - [SMALL_STATE(200)] = 3563, - [SMALL_STATE(201)] = 3649, - [SMALL_STATE(202)] = 3709, - [SMALL_STATE(203)] = 3795, - [SMALL_STATE(204)] = 3881, - [SMALL_STATE(205)] = 3967, - [SMALL_STATE(206)] = 4029, - [SMALL_STATE(207)] = 4096, - [SMALL_STATE(208)] = 4159, - [SMALL_STATE(209)] = 4244, - [SMALL_STATE(210)] = 4329, - [SMALL_STATE(211)] = 4414, - [SMALL_STATE(212)] = 4481, - [SMALL_STATE(213)] = 4566, - [SMALL_STATE(214)] = 4651, - [SMALL_STATE(215)] = 4736, - [SMALL_STATE(216)] = 4821, - [SMALL_STATE(217)] = 4888, - [SMALL_STATE(218)] = 4973, - [SMALL_STATE(219)] = 5036, - [SMALL_STATE(220)] = 5138, - [SMALL_STATE(221)] = 5204, - [SMALL_STATE(222)] = 5288, - [SMALL_STATE(223)] = 5372, - [SMALL_STATE(224)] = 5438, - [SMALL_STATE(225)] = 5540, - [SMALL_STATE(226)] = 5624, - [SMALL_STATE(227)] = 5708, - [SMALL_STATE(228)] = 5792, - [SMALL_STATE(229)] = 5894, - [SMALL_STATE(230)] = 5978, - [SMALL_STATE(231)] = 6080, - [SMALL_STATE(232)] = 6164, - [SMALL_STATE(233)] = 6248, - [SMALL_STATE(234)] = 6332, - [SMALL_STATE(235)] = 6416, - [SMALL_STATE(236)] = 6500, - [SMALL_STATE(237)] = 6584, - [SMALL_STATE(238)] = 6668, - [SMALL_STATE(239)] = 6752, - [SMALL_STATE(240)] = 6836, - [SMALL_STATE(241)] = 6938, - [SMALL_STATE(242)] = 7022, - [SMALL_STATE(243)] = 7077, - [SMALL_STATE(244)] = 7158, - [SMALL_STATE(245)] = 7211, - [SMALL_STATE(246)] = 7266, - [SMALL_STATE(247)] = 7321, - [SMALL_STATE(248)] = 7402, - [SMALL_STATE(249)] = 7483, - [SMALL_STATE(250)] = 7538, - [SMALL_STATE(251)] = 7591, - [SMALL_STATE(252)] = 7672, - [SMALL_STATE(253)] = 7753, - [SMALL_STATE(254)] = 7834, - [SMALL_STATE(255)] = 7888, - [SMALL_STATE(256)] = 7942, - [SMALL_STATE(257)] = 7996, - [SMALL_STATE(258)] = 8050, - [SMALL_STATE(259)] = 8105, - [SMALL_STATE(260)] = 8160, - [SMALL_STATE(261)] = 8227, - [SMALL_STATE(262)] = 8284, - [SMALL_STATE(263)] = 8339, - [SMALL_STATE(264)] = 8394, - [SMALL_STATE(265)] = 8461, - [SMALL_STATE(266)] = 8520, - [SMALL_STATE(267)] = 8575, - [SMALL_STATE(268)] = 8630, - [SMALL_STATE(269)] = 8684, - [SMALL_STATE(270)] = 8734, - [SMALL_STATE(271)] = 8784, - [SMALL_STATE(272)] = 8834, - [SMALL_STATE(273)] = 8884, - [SMALL_STATE(274)] = 8934, - [SMALL_STATE(275)] = 8984, - [SMALL_STATE(276)] = 9034, - [SMALL_STATE(277)] = 9084, - [SMALL_STATE(278)] = 9134, - [SMALL_STATE(279)] = 9184, - [SMALL_STATE(280)] = 9234, - [SMALL_STATE(281)] = 9288, - [SMALL_STATE(282)] = 9338, - [SMALL_STATE(283)] = 9388, - [SMALL_STATE(284)] = 9438, - [SMALL_STATE(285)] = 9488, - [SMALL_STATE(286)] = 9538, - [SMALL_STATE(287)] = 9588, - [SMALL_STATE(288)] = 9638, - [SMALL_STATE(289)] = 9692, - [SMALL_STATE(290)] = 9742, - [SMALL_STATE(291)] = 9792, - [SMALL_STATE(292)] = 9842, - [SMALL_STATE(293)] = 9892, - [SMALL_STATE(294)] = 9942, - [SMALL_STATE(295)] = 9992, - [SMALL_STATE(296)] = 10042, - [SMALL_STATE(297)] = 10092, - [SMALL_STATE(298)] = 10142, - [SMALL_STATE(299)] = 10192, - [SMALL_STATE(300)] = 10242, - [SMALL_STATE(301)] = 10292, - [SMALL_STATE(302)] = 10342, - [SMALL_STATE(303)] = 10392, - [SMALL_STATE(304)] = 10446, - [SMALL_STATE(305)] = 10500, - [SMALL_STATE(306)] = 10566, - [SMALL_STATE(307)] = 10620, - [SMALL_STATE(308)] = 10674, - [SMALL_STATE(309)] = 10728, - [SMALL_STATE(310)] = 10782, - [SMALL_STATE(311)] = 10836, - [SMALL_STATE(312)] = 10902, - [SMALL_STATE(313)] = 10958, - [SMALL_STATE(314)] = 11016, - [SMALL_STATE(315)] = 11066, - [SMALL_STATE(316)] = 11131, - [SMALL_STATE(317)] = 11180, - [SMALL_STATE(318)] = 11233, - [SMALL_STATE(319)] = 11282, - [SMALL_STATE(320)] = 11335, - [SMALL_STATE(321)] = 11384, - [SMALL_STATE(322)] = 11433, - [SMALL_STATE(323)] = 11482, - [SMALL_STATE(324)] = 11531, - [SMALL_STATE(325)] = 11584, - [SMALL_STATE(326)] = 11633, - [SMALL_STATE(327)] = 11682, - [SMALL_STATE(328)] = 11731, - [SMALL_STATE(329)] = 11780, - [SMALL_STATE(330)] = 11833, - [SMALL_STATE(331)] = 11882, - [SMALL_STATE(332)] = 11931, - [SMALL_STATE(333)] = 11980, - [SMALL_STATE(334)] = 12029, - [SMALL_STATE(335)] = 12078, - [SMALL_STATE(336)] = 12127, - [SMALL_STATE(337)] = 12176, - [SMALL_STATE(338)] = 12225, - [SMALL_STATE(339)] = 12274, - [SMALL_STATE(340)] = 12323, - [SMALL_STATE(341)] = 12372, - [SMALL_STATE(342)] = 12421, - [SMALL_STATE(343)] = 12470, - [SMALL_STATE(344)] = 12519, - [SMALL_STATE(345)] = 12568, - [SMALL_STATE(346)] = 12617, - [SMALL_STATE(347)] = 12666, - [SMALL_STATE(348)] = 12715, - [SMALL_STATE(349)] = 12764, - [SMALL_STATE(350)] = 12817, - [SMALL_STATE(351)] = 12870, - [SMALL_STATE(352)] = 12923, - [SMALL_STATE(353)] = 12972, - [SMALL_STATE(354)] = 13037, - [SMALL_STATE(355)] = 13086, - [SMALL_STATE(356)] = 13135, - [SMALL_STATE(357)] = 13190, - [SMALL_STATE(358)] = 13247, - [SMALL_STATE(359)] = 13300, - [SMALL_STATE(360)] = 13353, - [SMALL_STATE(361)] = 13402, - [SMALL_STATE(362)] = 13451, - [SMALL_STATE(363)] = 13504, - [SMALL_STATE(364)] = 13557, - [SMALL_STATE(365)] = 13610, - [SMALL_STATE(366)] = 13663, - [SMALL_STATE(367)] = 13716, - [SMALL_STATE(368)] = 13765, - [SMALL_STATE(369)] = 13818, - [SMALL_STATE(370)] = 13871, - [SMALL_STATE(371)] = 13920, - [SMALL_STATE(372)] = 13973, - [SMALL_STATE(373)] = 14026, - [SMALL_STATE(374)] = 14079, - [SMALL_STATE(375)] = 14144, - [SMALL_STATE(376)] = 14209, - [SMALL_STATE(377)] = 14262, - [SMALL_STATE(378)] = 14317, - [SMALL_STATE(379)] = 14374, - [SMALL_STATE(380)] = 14427, - [SMALL_STATE(381)] = 14482, - [SMALL_STATE(382)] = 14531, - [SMALL_STATE(383)] = 14580, - [SMALL_STATE(384)] = 14628, - [SMALL_STATE(385)] = 14680, - [SMALL_STATE(386)] = 14732, - [SMALL_STATE(387)] = 14780, - [SMALL_STATE(388)] = 14828, - [SMALL_STATE(389)] = 14876, - [SMALL_STATE(390)] = 14924, - [SMALL_STATE(391)] = 14972, - [SMALL_STATE(392)] = 15020, - [SMALL_STATE(393)] = 15072, - [SMALL_STATE(394)] = 15120, - [SMALL_STATE(395)] = 15168, - [SMALL_STATE(396)] = 15216, - [SMALL_STATE(397)] = 15264, - [SMALL_STATE(398)] = 15312, - [SMALL_STATE(399)] = 15360, - [SMALL_STATE(400)] = 15408, - [SMALL_STATE(401)] = 15456, - [SMALL_STATE(402)] = 15504, - [SMALL_STATE(403)] = 15552, - [SMALL_STATE(404)] = 15600, - [SMALL_STATE(405)] = 15652, - [SMALL_STATE(406)] = 15700, - [SMALL_STATE(407)] = 15748, - [SMALL_STATE(408)] = 15796, - [SMALL_STATE(409)] = 15848, - [SMALL_STATE(410)] = 15910, - [SMALL_STATE(411)] = 15958, - [SMALL_STATE(412)] = 16006, - [SMALL_STATE(413)] = 16054, - [SMALL_STATE(414)] = 16102, - [SMALL_STATE(415)] = 16154, - [SMALL_STATE(416)] = 16202, - [SMALL_STATE(417)] = 16250, - [SMALL_STATE(418)] = 16298, - [SMALL_STATE(419)] = 16350, - [SMALL_STATE(420)] = 16402, - [SMALL_STATE(421)] = 16450, - [SMALL_STATE(422)] = 16498, - [SMALL_STATE(423)] = 16546, - [SMALL_STATE(424)] = 16594, - [SMALL_STATE(425)] = 16642, - [SMALL_STATE(426)] = 16690, - [SMALL_STATE(427)] = 16738, - [SMALL_STATE(428)] = 16786, - [SMALL_STATE(429)] = 16838, - [SMALL_STATE(430)] = 16886, - [SMALL_STATE(431)] = 16934, - [SMALL_STATE(432)] = 16986, - [SMALL_STATE(433)] = 17038, - [SMALL_STATE(434)] = 17100, - [SMALL_STATE(435)] = 17148, - [SMALL_STATE(436)] = 17200, - [SMALL_STATE(437)] = 17262, - [SMALL_STATE(438)] = 17310, - [SMALL_STATE(439)] = 17362, - [SMALL_STATE(440)] = 17410, - [SMALL_STATE(441)] = 17458, - [SMALL_STATE(442)] = 17510, - [SMALL_STATE(443)] = 17562, - [SMALL_STATE(444)] = 17610, - [SMALL_STATE(445)] = 17662, - [SMALL_STATE(446)] = 17710, - [SMALL_STATE(447)] = 17758, - [SMALL_STATE(448)] = 17806, - [SMALL_STATE(449)] = 17854, - [SMALL_STATE(450)] = 17902, - [SMALL_STATE(451)] = 17950, - [SMALL_STATE(452)] = 17998, - [SMALL_STATE(453)] = 18046, - [SMALL_STATE(454)] = 18094, - [SMALL_STATE(455)] = 18142, - [SMALL_STATE(456)] = 18194, - [SMALL_STATE(457)] = 18242, - [SMALL_STATE(458)] = 18290, - [SMALL_STATE(459)] = 18338, - [SMALL_STATE(460)] = 18386, - [SMALL_STATE(461)] = 18434, - [SMALL_STATE(462)] = 18482, - [SMALL_STATE(463)] = 18530, - [SMALL_STATE(464)] = 18578, - [SMALL_STATE(465)] = 18630, - [SMALL_STATE(466)] = 18678, - [SMALL_STATE(467)] = 18730, - [SMALL_STATE(468)] = 18778, - [SMALL_STATE(469)] = 18830, - [SMALL_STATE(470)] = 18878, - [SMALL_STATE(471)] = 18926, - [SMALL_STATE(472)] = 18978, - [SMALL_STATE(473)] = 19026, - [SMALL_STATE(474)] = 19074, - [SMALL_STATE(475)] = 19122, - [SMALL_STATE(476)] = 19170, - [SMALL_STATE(477)] = 19218, - [SMALL_STATE(478)] = 19266, - [SMALL_STATE(479)] = 19314, - [SMALL_STATE(480)] = 19362, - [SMALL_STATE(481)] = 19410, - [SMALL_STATE(482)] = 19462, - [SMALL_STATE(483)] = 19514, - [SMALL_STATE(484)] = 19562, - [SMALL_STATE(485)] = 19626, - [SMALL_STATE(486)] = 19674, - [SMALL_STATE(487)] = 19722, - [SMALL_STATE(488)] = 19770, - [SMALL_STATE(489)] = 19818, - [SMALL_STATE(490)] = 19866, - [SMALL_STATE(491)] = 19918, - [SMALL_STATE(492)] = 19966, - [SMALL_STATE(493)] = 20014, - [SMALL_STATE(494)] = 20062, - [SMALL_STATE(495)] = 20110, - [SMALL_STATE(496)] = 20158, - [SMALL_STATE(497)] = 20210, - [SMALL_STATE(498)] = 20258, - [SMALL_STATE(499)] = 20322, - [SMALL_STATE(500)] = 20370, - [SMALL_STATE(501)] = 20418, - [SMALL_STATE(502)] = 20466, - [SMALL_STATE(503)] = 20520, - [SMALL_STATE(504)] = 20576, - [SMALL_STATE(505)] = 20628, - [SMALL_STATE(506)] = 20676, - [SMALL_STATE(507)] = 20724, - [SMALL_STATE(508)] = 20772, - [SMALL_STATE(509)] = 20820, - [SMALL_STATE(510)] = 20868, - [SMALL_STATE(511)] = 20916, - [SMALL_STATE(512)] = 20964, - [SMALL_STATE(513)] = 21012, - [SMALL_STATE(514)] = 21060, - [SMALL_STATE(515)] = 21114, - [SMALL_STATE(516)] = 21162, - [SMALL_STATE(517)] = 21210, - [SMALL_STATE(518)] = 21258, - [SMALL_STATE(519)] = 21306, - [SMALL_STATE(520)] = 21354, - [SMALL_STATE(521)] = 21402, - [SMALL_STATE(522)] = 21455, - [SMALL_STATE(523)] = 21506, - [SMALL_STATE(524)] = 21557, - [SMALL_STATE(525)] = 21608, - [SMALL_STATE(526)] = 21659, - [SMALL_STATE(527)] = 21710, - [SMALL_STATE(528)] = 21757, - [SMALL_STATE(529)] = 21808, - [SMALL_STATE(530)] = 21893, - [SMALL_STATE(531)] = 21944, - [SMALL_STATE(532)] = 21995, - [SMALL_STATE(533)] = 22046, - [SMALL_STATE(534)] = 22097, - [SMALL_STATE(535)] = 22144, - [SMALL_STATE(536)] = 22191, - [SMALL_STATE(537)] = 22238, - [SMALL_STATE(538)] = 22285, - [SMALL_STATE(539)] = 22332, - [SMALL_STATE(540)] = 22379, - [SMALL_STATE(541)] = 22426, - [SMALL_STATE(542)] = 22473, - [SMALL_STATE(543)] = 22520, - [SMALL_STATE(544)] = 22567, - [SMALL_STATE(545)] = 22614, - [SMALL_STATE(546)] = 22661, - [SMALL_STATE(547)] = 22708, - [SMALL_STATE(548)] = 22759, - [SMALL_STATE(549)] = 22806, - [SMALL_STATE(550)] = 22853, - [SMALL_STATE(551)] = 22900, - [SMALL_STATE(552)] = 22947, - [SMALL_STATE(553)] = 22994, - [SMALL_STATE(554)] = 23041, - [SMALL_STATE(555)] = 23088, - [SMALL_STATE(556)] = 23135, - [SMALL_STATE(557)] = 23182, - [SMALL_STATE(558)] = 23229, - [SMALL_STATE(559)] = 23276, - [SMALL_STATE(560)] = 23323, - [SMALL_STATE(561)] = 23370, - [SMALL_STATE(562)] = 23417, - [SMALL_STATE(563)] = 23464, - [SMALL_STATE(564)] = 23511, - [SMALL_STATE(565)] = 23558, - [SMALL_STATE(566)] = 23605, - [SMALL_STATE(567)] = 23652, - [SMALL_STATE(568)] = 23699, - [SMALL_STATE(569)] = 23746, - [SMALL_STATE(570)] = 23793, - [SMALL_STATE(571)] = 23840, - [SMALL_STATE(572)] = 23887, - [SMALL_STATE(573)] = 23934, - [SMALL_STATE(574)] = 23981, - [SMALL_STATE(575)] = 24028, - [SMALL_STATE(576)] = 24079, - [SMALL_STATE(577)] = 24130, - [SMALL_STATE(578)] = 24177, - [SMALL_STATE(579)] = 24224, - [SMALL_STATE(580)] = 24271, - [SMALL_STATE(581)] = 24318, - [SMALL_STATE(582)] = 24369, - [SMALL_STATE(583)] = 24416, - [SMALL_STATE(584)] = 24463, - [SMALL_STATE(585)] = 24510, - [SMALL_STATE(586)] = 24557, - [SMALL_STATE(587)] = 24604, - [SMALL_STATE(588)] = 24651, - [SMALL_STATE(589)] = 24698, - [SMALL_STATE(590)] = 24745, - [SMALL_STATE(591)] = 24792, - [SMALL_STATE(592)] = 24839, - [SMALL_STATE(593)] = 24886, - [SMALL_STATE(594)] = 24933, - [SMALL_STATE(595)] = 24980, - [SMALL_STATE(596)] = 25027, - [SMALL_STATE(597)] = 25074, - [SMALL_STATE(598)] = 25121, - [SMALL_STATE(599)] = 25168, - [SMALL_STATE(600)] = 25215, - [SMALL_STATE(601)] = 25262, - [SMALL_STATE(602)] = 25313, - [SMALL_STATE(603)] = 25360, - [SMALL_STATE(604)] = 25407, - [SMALL_STATE(605)] = 25458, - [SMALL_STATE(606)] = 25509, - [SMALL_STATE(607)] = 25560, - [SMALL_STATE(608)] = 25645, - [SMALL_STATE(609)] = 25696, - [SMALL_STATE(610)] = 25747, - [SMALL_STATE(611)] = 25798, - [SMALL_STATE(612)] = 25845, - [SMALL_STATE(613)] = 25896, - [SMALL_STATE(614)] = 25943, - [SMALL_STATE(615)] = 25990, - [SMALL_STATE(616)] = 26037, - [SMALL_STATE(617)] = 26084, - [SMALL_STATE(618)] = 26131, - [SMALL_STATE(619)] = 26178, - [SMALL_STATE(620)] = 26225, - [SMALL_STATE(621)] = 26276, - [SMALL_STATE(622)] = 26323, - [SMALL_STATE(623)] = 26374, - [SMALL_STATE(624)] = 26421, - [SMALL_STATE(625)] = 26468, - [SMALL_STATE(626)] = 26515, - [SMALL_STATE(627)] = 26562, - [SMALL_STATE(628)] = 26609, - [SMALL_STATE(629)] = 26660, - [SMALL_STATE(630)] = 26707, - [SMALL_STATE(631)] = 26754, - [SMALL_STATE(632)] = 26801, - [SMALL_STATE(633)] = 26848, - [SMALL_STATE(634)] = 26895, - [SMALL_STATE(635)] = 26942, - [SMALL_STATE(636)] = 26989, - [SMALL_STATE(637)] = 27036, - [SMALL_STATE(638)] = 27083, - [SMALL_STATE(639)] = 27130, - [SMALL_STATE(640)] = 27177, - [SMALL_STATE(641)] = 27224, - [SMALL_STATE(642)] = 27271, - [SMALL_STATE(643)] = 27318, - [SMALL_STATE(644)] = 27365, - [SMALL_STATE(645)] = 27412, - [SMALL_STATE(646)] = 27459, - [SMALL_STATE(647)] = 27506, - [SMALL_STATE(648)] = 27553, - [SMALL_STATE(649)] = 27600, - [SMALL_STATE(650)] = 27647, - [SMALL_STATE(651)] = 27694, - [SMALL_STATE(652)] = 27745, - [SMALL_STATE(653)] = 27792, - [SMALL_STATE(654)] = 27877, - [SMALL_STATE(655)] = 27924, - [SMALL_STATE(656)] = 27971, - [SMALL_STATE(657)] = 28018, - [SMALL_STATE(658)] = 28065, - [SMALL_STATE(659)] = 28116, - [SMALL_STATE(660)] = 28163, - [SMALL_STATE(661)] = 28210, - [SMALL_STATE(662)] = 28295, - [SMALL_STATE(663)] = 28348, - [SMALL_STATE(664)] = 28395, - [SMALL_STATE(665)] = 28480, - [SMALL_STATE(666)] = 28527, - [SMALL_STATE(667)] = 28574, - [SMALL_STATE(668)] = 28625, - [SMALL_STATE(669)] = 28676, - [SMALL_STATE(670)] = 28723, - [SMALL_STATE(671)] = 28769, - [SMALL_STATE(672)] = 28815, - [SMALL_STATE(673)] = 28861, - [SMALL_STATE(674)] = 28907, - [SMALL_STATE(675)] = 28953, - [SMALL_STATE(676)] = 29003, - [SMALL_STATE(677)] = 29053, - [SMALL_STATE(678)] = 29099, - [SMALL_STATE(679)] = 29145, - [SMALL_STATE(680)] = 29191, - [SMALL_STATE(681)] = 29241, - [SMALL_STATE(682)] = 29287, - [SMALL_STATE(683)] = 29333, - [SMALL_STATE(684)] = 29379, - [SMALL_STATE(685)] = 29425, - [SMALL_STATE(686)] = 29471, - [SMALL_STATE(687)] = 29517, - [SMALL_STATE(688)] = 29563, - [SMALL_STATE(689)] = 29609, - [SMALL_STATE(690)] = 29655, - [SMALL_STATE(691)] = 29701, - [SMALL_STATE(692)] = 29747, - [SMALL_STATE(693)] = 29793, - [SMALL_STATE(694)] = 29843, - [SMALL_STATE(695)] = 29889, - [SMALL_STATE(696)] = 29935, - [SMALL_STATE(697)] = 29981, - [SMALL_STATE(698)] = 30027, - [SMALL_STATE(699)] = 30073, - [SMALL_STATE(700)] = 30119, - [SMALL_STATE(701)] = 30165, - [SMALL_STATE(702)] = 30211, - [SMALL_STATE(703)] = 30257, - [SMALL_STATE(704)] = 30303, - [SMALL_STATE(705)] = 30349, - [SMALL_STATE(706)] = 30395, - [SMALL_STATE(707)] = 30441, - [SMALL_STATE(708)] = 30487, - [SMALL_STATE(709)] = 30533, - [SMALL_STATE(710)] = 30579, - [SMALL_STATE(711)] = 30629, - [SMALL_STATE(712)] = 30679, - [SMALL_STATE(713)] = 30729, - [SMALL_STATE(714)] = 30775, - [SMALL_STATE(715)] = 30825, - [SMALL_STATE(716)] = 30871, - [SMALL_STATE(717)] = 30917, - [SMALL_STATE(718)] = 30963, - [SMALL_STATE(719)] = 31009, - [SMALL_STATE(720)] = 31055, - [SMALL_STATE(721)] = 31101, - [SMALL_STATE(722)] = 31151, - [SMALL_STATE(723)] = 31201, - [SMALL_STATE(724)] = 31251, - [SMALL_STATE(725)] = 31301, - [SMALL_STATE(726)] = 31351, - [SMALL_STATE(727)] = 31397, - [SMALL_STATE(728)] = 31443, - [SMALL_STATE(729)] = 31489, - [SMALL_STATE(730)] = 31535, - [SMALL_STATE(731)] = 31581, - [SMALL_STATE(732)] = 31627, - [SMALL_STATE(733)] = 31673, - [SMALL_STATE(734)] = 31719, - [SMALL_STATE(735)] = 31769, - [SMALL_STATE(736)] = 31815, - [SMALL_STATE(737)] = 31861, - [SMALL_STATE(738)] = 31907, - [SMALL_STATE(739)] = 31953, - [SMALL_STATE(740)] = 31999, - [SMALL_STATE(741)] = 32045, - [SMALL_STATE(742)] = 32091, - [SMALL_STATE(743)] = 32141, - [SMALL_STATE(744)] = 32187, - [SMALL_STATE(745)] = 32233, - [SMALL_STATE(746)] = 32279, - [SMALL_STATE(747)] = 32325, - [SMALL_STATE(748)] = 32371, - [SMALL_STATE(749)] = 32417, - [SMALL_STATE(750)] = 32463, - [SMALL_STATE(751)] = 32509, - [SMALL_STATE(752)] = 32555, - [SMALL_STATE(753)] = 32601, - [SMALL_STATE(754)] = 32647, - [SMALL_STATE(755)] = 32693, - [SMALL_STATE(756)] = 32739, - [SMALL_STATE(757)] = 32785, - [SMALL_STATE(758)] = 32831, - [SMALL_STATE(759)] = 32877, - [SMALL_STATE(760)] = 32923, - [SMALL_STATE(761)] = 32969, - [SMALL_STATE(762)] = 33015, - [SMALL_STATE(763)] = 33061, - [SMALL_STATE(764)] = 33107, - [SMALL_STATE(765)] = 33153, - [SMALL_STATE(766)] = 33199, - [SMALL_STATE(767)] = 33245, - [SMALL_STATE(768)] = 33291, - [SMALL_STATE(769)] = 33337, - [SMALL_STATE(770)] = 33383, - [SMALL_STATE(771)] = 33429, - [SMALL_STATE(772)] = 33479, - [SMALL_STATE(773)] = 33525, - [SMALL_STATE(774)] = 33571, - [SMALL_STATE(775)] = 33617, - [SMALL_STATE(776)] = 33667, - [SMALL_STATE(777)] = 33717, - [SMALL_STATE(778)] = 33763, - [SMALL_STATE(779)] = 33809, - [SMALL_STATE(780)] = 33855, - [SMALL_STATE(781)] = 33901, - [SMALL_STATE(782)] = 33951, - [SMALL_STATE(783)] = 33997, - [SMALL_STATE(784)] = 34043, - [SMALL_STATE(785)] = 34089, - [SMALL_STATE(786)] = 34135, - [SMALL_STATE(787)] = 34181, - [SMALL_STATE(788)] = 34227, - [SMALL_STATE(789)] = 34273, - [SMALL_STATE(790)] = 34319, - [SMALL_STATE(791)] = 34365, - [SMALL_STATE(792)] = 34411, - [SMALL_STATE(793)] = 34457, - [SMALL_STATE(794)] = 34503, - [SMALL_STATE(795)] = 34549, - [SMALL_STATE(796)] = 34595, - [SMALL_STATE(797)] = 34641, - [SMALL_STATE(798)] = 34687, - [SMALL_STATE(799)] = 34733, - [SMALL_STATE(800)] = 34779, - [SMALL_STATE(801)] = 34825, - [SMALL_STATE(802)] = 34871, - [SMALL_STATE(803)] = 34917, - [SMALL_STATE(804)] = 34963, - [SMALL_STATE(805)] = 35009, - [SMALL_STATE(806)] = 35055, - [SMALL_STATE(807)] = 35101, - [SMALL_STATE(808)] = 35151, - [SMALL_STATE(809)] = 35197, - [SMALL_STATE(810)] = 35243, - [SMALL_STATE(811)] = 35289, - [SMALL_STATE(812)] = 35335, - [SMALL_STATE(813)] = 35385, - [SMALL_STATE(814)] = 35431, - [SMALL_STATE(815)] = 35477, - [SMALL_STATE(816)] = 35523, - [SMALL_STATE(817)] = 35569, - [SMALL_STATE(818)] = 35615, - [SMALL_STATE(819)] = 35661, - [SMALL_STATE(820)] = 35711, - [SMALL_STATE(821)] = 35757, - [SMALL_STATE(822)] = 35803, - [SMALL_STATE(823)] = 35849, - [SMALL_STATE(824)] = 35899, - [SMALL_STATE(825)] = 35949, - [SMALL_STATE(826)] = 35995, - [SMALL_STATE(827)] = 36041, - [SMALL_STATE(828)] = 36087, - [SMALL_STATE(829)] = 36133, - [SMALL_STATE(830)] = 36183, - [SMALL_STATE(831)] = 36229, - [SMALL_STATE(832)] = 36279, - [SMALL_STATE(833)] = 36325, - [SMALL_STATE(834)] = 36375, - [SMALL_STATE(835)] = 36425, - [SMALL_STATE(836)] = 36475, - [SMALL_STATE(837)] = 36521, - [SMALL_STATE(838)] = 36571, - [SMALL_STATE(839)] = 36621, - [SMALL_STATE(840)] = 36667, - [SMALL_STATE(841)] = 36717, - [SMALL_STATE(842)] = 36763, - [SMALL_STATE(843)] = 36808, - [SMALL_STATE(844)] = 36853, - [SMALL_STATE(845)] = 36898, - [SMALL_STATE(846)] = 36943, - [SMALL_STATE(847)] = 36988, - [SMALL_STATE(848)] = 37033, - [SMALL_STATE(849)] = 37078, - [SMALL_STATE(850)] = 37123, - [SMALL_STATE(851)] = 37168, - [SMALL_STATE(852)] = 37213, - [SMALL_STATE(853)] = 37258, - [SMALL_STATE(854)] = 37303, - [SMALL_STATE(855)] = 37348, - [SMALL_STATE(856)] = 37393, - [SMALL_STATE(857)] = 37438, - [SMALL_STATE(858)] = 37483, - [SMALL_STATE(859)] = 37528, - [SMALL_STATE(860)] = 37573, - [SMALL_STATE(861)] = 37618, - [SMALL_STATE(862)] = 37663, - [SMALL_STATE(863)] = 37708, - [SMALL_STATE(864)] = 37753, - [SMALL_STATE(865)] = 37798, - [SMALL_STATE(866)] = 37843, - [SMALL_STATE(867)] = 37888, - [SMALL_STATE(868)] = 37933, - [SMALL_STATE(869)] = 37978, - [SMALL_STATE(870)] = 38023, - [SMALL_STATE(871)] = 38068, - [SMALL_STATE(872)] = 38113, - [SMALL_STATE(873)] = 38158, - [SMALL_STATE(874)] = 38203, - [SMALL_STATE(875)] = 38248, - [SMALL_STATE(876)] = 38293, - [SMALL_STATE(877)] = 38338, - [SMALL_STATE(878)] = 38383, - [SMALL_STATE(879)] = 38432, - [SMALL_STATE(880)] = 38477, - [SMALL_STATE(881)] = 38522, - [SMALL_STATE(882)] = 38567, - [SMALL_STATE(883)] = 38626, - [SMALL_STATE(884)] = 38675, - [SMALL_STATE(885)] = 38720, - [SMALL_STATE(886)] = 38765, - [SMALL_STATE(887)] = 38810, - [SMALL_STATE(888)] = 38855, - [SMALL_STATE(889)] = 38900, - [SMALL_STATE(890)] = 38945, - [SMALL_STATE(891)] = 38990, - [SMALL_STATE(892)] = 39035, - [SMALL_STATE(893)] = 39080, - [SMALL_STATE(894)] = 39125, - [SMALL_STATE(895)] = 39170, - [SMALL_STATE(896)] = 39215, - [SMALL_STATE(897)] = 39260, - [SMALL_STATE(898)] = 39305, - [SMALL_STATE(899)] = 39350, - [SMALL_STATE(900)] = 39395, - [SMALL_STATE(901)] = 39440, - [SMALL_STATE(902)] = 39485, - [SMALL_STATE(903)] = 39530, - [SMALL_STATE(904)] = 39575, - [SMALL_STATE(905)] = 39620, - [SMALL_STATE(906)] = 39665, - [SMALL_STATE(907)] = 39710, - [SMALL_STATE(908)] = 39755, - [SMALL_STATE(909)] = 39800, - [SMALL_STATE(910)] = 39845, - [SMALL_STATE(911)] = 39890, - [SMALL_STATE(912)] = 39935, - [SMALL_STATE(913)] = 39980, - [SMALL_STATE(914)] = 40025, - [SMALL_STATE(915)] = 40070, - [SMALL_STATE(916)] = 40115, - [SMALL_STATE(917)] = 40160, - [SMALL_STATE(918)] = 40205, - [SMALL_STATE(919)] = 40250, - [SMALL_STATE(920)] = 40295, - [SMALL_STATE(921)] = 40340, - [SMALL_STATE(922)] = 40385, - [SMALL_STATE(923)] = 40430, - [SMALL_STATE(924)] = 40475, - [SMALL_STATE(925)] = 40520, - [SMALL_STATE(926)] = 40565, - [SMALL_STATE(927)] = 40610, - [SMALL_STATE(928)] = 40655, - [SMALL_STATE(929)] = 40704, - [SMALL_STATE(930)] = 40753, - [SMALL_STATE(931)] = 40798, - [SMALL_STATE(932)] = 40843, - [SMALL_STATE(933)] = 40888, - [SMALL_STATE(934)] = 40933, - [SMALL_STATE(935)] = 40978, - [SMALL_STATE(936)] = 41023, - [SMALL_STATE(937)] = 41068, - [SMALL_STATE(938)] = 41113, - [SMALL_STATE(939)] = 41158, - [SMALL_STATE(940)] = 41203, - [SMALL_STATE(941)] = 41248, - [SMALL_STATE(942)] = 41293, - [SMALL_STATE(943)] = 41338, - [SMALL_STATE(944)] = 41383, - [SMALL_STATE(945)] = 41428, - [SMALL_STATE(946)] = 41473, - [SMALL_STATE(947)] = 41518, - [SMALL_STATE(948)] = 41563, - [SMALL_STATE(949)] = 41608, - [SMALL_STATE(950)] = 41653, - [SMALL_STATE(951)] = 41698, - [SMALL_STATE(952)] = 41743, - [SMALL_STATE(953)] = 41788, - [SMALL_STATE(954)] = 41833, - [SMALL_STATE(955)] = 41882, - [SMALL_STATE(956)] = 41927, - [SMALL_STATE(957)] = 41972, - [SMALL_STATE(958)] = 42021, - [SMALL_STATE(959)] = 42066, - [SMALL_STATE(960)] = 42111, - [SMALL_STATE(961)] = 42160, - [SMALL_STATE(962)] = 42205, - [SMALL_STATE(963)] = 42254, - [SMALL_STATE(964)] = 42299, - [SMALL_STATE(965)] = 42356, - [SMALL_STATE(966)] = 42401, - [SMALL_STATE(967)] = 42450, - [SMALL_STATE(968)] = 42499, - [SMALL_STATE(969)] = 42544, - [SMALL_STATE(970)] = 42589, - [SMALL_STATE(971)] = 42634, - [SMALL_STATE(972)] = 42679, - [SMALL_STATE(973)] = 42724, - [SMALL_STATE(974)] = 42769, - [SMALL_STATE(975)] = 42814, - [SMALL_STATE(976)] = 42863, - [SMALL_STATE(977)] = 42908, - [SMALL_STATE(978)] = 42953, - [SMALL_STATE(979)] = 43002, - [SMALL_STATE(980)] = 43047, - [SMALL_STATE(981)] = 43092, - [SMALL_STATE(982)] = 43137, - [SMALL_STATE(983)] = 43182, - [SMALL_STATE(984)] = 43227, - [SMALL_STATE(985)] = 43272, - [SMALL_STATE(986)] = 43317, - [SMALL_STATE(987)] = 43362, - [SMALL_STATE(988)] = 43407, - [SMALL_STATE(989)] = 43452, - [SMALL_STATE(990)] = 43497, - [SMALL_STATE(991)] = 43542, - [SMALL_STATE(992)] = 43587, - [SMALL_STATE(993)] = 43632, - [SMALL_STATE(994)] = 43677, - [SMALL_STATE(995)] = 43722, - [SMALL_STATE(996)] = 43767, - [SMALL_STATE(997)] = 43812, - [SMALL_STATE(998)] = 43857, - [SMALL_STATE(999)] = 43902, - [SMALL_STATE(1000)] = 43947, - [SMALL_STATE(1001)] = 43991, - [SMALL_STATE(1002)] = 44035, - [SMALL_STATE(1003)] = 44079, - [SMALL_STATE(1004)] = 44123, - [SMALL_STATE(1005)] = 44167, - [SMALL_STATE(1006)] = 44223, - [SMALL_STATE(1007)] = 44267, - [SMALL_STATE(1008)] = 44323, - [SMALL_STATE(1009)] = 44367, - [SMALL_STATE(1010)] = 44411, - [SMALL_STATE(1011)] = 44484, - [SMALL_STATE(1012)] = 44557, - [SMALL_STATE(1013)] = 44612, - [SMALL_STATE(1014)] = 44685, - [SMALL_STATE(1015)] = 44758, - [SMALL_STATE(1016)] = 44831, - [SMALL_STATE(1017)] = 44904, - [SMALL_STATE(1018)] = 44977, - [SMALL_STATE(1019)] = 45050, - [SMALL_STATE(1020)] = 45123, - [SMALL_STATE(1021)] = 45175, - [SMALL_STATE(1022)] = 45230, - [SMALL_STATE(1023)] = 45302, - [SMALL_STATE(1024)] = 45374, - [SMALL_STATE(1025)] = 45446, - [SMALL_STATE(1026)] = 45520, - [SMALL_STATE(1027)] = 45592, - [SMALL_STATE(1028)] = 45664, - [SMALL_STATE(1029)] = 45736, - [SMALL_STATE(1030)] = 45808, - [SMALL_STATE(1031)] = 45880, - [SMALL_STATE(1032)] = 45952, - [SMALL_STATE(1033)] = 46024, - [SMALL_STATE(1034)] = 46096, - [SMALL_STATE(1035)] = 46168, - [SMALL_STATE(1036)] = 46240, - [SMALL_STATE(1037)] = 46312, - [SMALL_STATE(1038)] = 46384, - [SMALL_STATE(1039)] = 46456, - [SMALL_STATE(1040)] = 46528, - [SMALL_STATE(1041)] = 46600, - [SMALL_STATE(1042)] = 46672, - [SMALL_STATE(1043)] = 46744, - [SMALL_STATE(1044)] = 46816, - [SMALL_STATE(1045)] = 46888, - [SMALL_STATE(1046)] = 46960, - [SMALL_STATE(1047)] = 47032, - [SMALL_STATE(1048)] = 47104, - [SMALL_STATE(1049)] = 47176, - [SMALL_STATE(1050)] = 47248, - [SMALL_STATE(1051)] = 47320, - [SMALL_STATE(1052)] = 47392, - [SMALL_STATE(1053)] = 47464, - [SMALL_STATE(1054)] = 47536, - [SMALL_STATE(1055)] = 47608, - [SMALL_STATE(1056)] = 47680, - [SMALL_STATE(1057)] = 47752, - [SMALL_STATE(1058)] = 47824, - [SMALL_STATE(1059)] = 47896, - [SMALL_STATE(1060)] = 47968, - [SMALL_STATE(1061)] = 48040, - [SMALL_STATE(1062)] = 48112, - [SMALL_STATE(1063)] = 48184, - [SMALL_STATE(1064)] = 48256, - [SMALL_STATE(1065)] = 48328, - [SMALL_STATE(1066)] = 48400, - [SMALL_STATE(1067)] = 48472, - [SMALL_STATE(1068)] = 48544, - [SMALL_STATE(1069)] = 48616, - [SMALL_STATE(1070)] = 48688, - [SMALL_STATE(1071)] = 48760, - [SMALL_STATE(1072)] = 48832, - [SMALL_STATE(1073)] = 48904, - [SMALL_STATE(1074)] = 48976, - [SMALL_STATE(1075)] = 49048, - [SMALL_STATE(1076)] = 49120, - [SMALL_STATE(1077)] = 49192, - [SMALL_STATE(1078)] = 49264, - [SMALL_STATE(1079)] = 49336, - [SMALL_STATE(1080)] = 49408, - [SMALL_STATE(1081)] = 49480, - [SMALL_STATE(1082)] = 49552, - [SMALL_STATE(1083)] = 49624, - [SMALL_STATE(1084)] = 49696, - [SMALL_STATE(1085)] = 49768, - [SMALL_STATE(1086)] = 49840, - [SMALL_STATE(1087)] = 49912, - [SMALL_STATE(1088)] = 49984, - [SMALL_STATE(1089)] = 50056, - [SMALL_STATE(1090)] = 50128, - [SMALL_STATE(1091)] = 50200, - [SMALL_STATE(1092)] = 50272, - [SMALL_STATE(1093)] = 50344, - [SMALL_STATE(1094)] = 50416, - [SMALL_STATE(1095)] = 50488, - [SMALL_STATE(1096)] = 50560, - [SMALL_STATE(1097)] = 50632, - [SMALL_STATE(1098)] = 50704, - [SMALL_STATE(1099)] = 50776, - [SMALL_STATE(1100)] = 50848, - [SMALL_STATE(1101)] = 50920, - [SMALL_STATE(1102)] = 50992, - [SMALL_STATE(1103)] = 51064, - [SMALL_STATE(1104)] = 51136, - [SMALL_STATE(1105)] = 51208, - [SMALL_STATE(1106)] = 51280, - [SMALL_STATE(1107)] = 51352, - [SMALL_STATE(1108)] = 51424, - [SMALL_STATE(1109)] = 51496, - [SMALL_STATE(1110)] = 51568, - [SMALL_STATE(1111)] = 51640, - [SMALL_STATE(1112)] = 51712, - [SMALL_STATE(1113)] = 51784, - [SMALL_STATE(1114)] = 51856, - [SMALL_STATE(1115)] = 51928, - [SMALL_STATE(1116)] = 52000, - [SMALL_STATE(1117)] = 52072, - [SMALL_STATE(1118)] = 52144, - [SMALL_STATE(1119)] = 52216, - [SMALL_STATE(1120)] = 52288, - [SMALL_STATE(1121)] = 52360, - [SMALL_STATE(1122)] = 52432, - [SMALL_STATE(1123)] = 52504, - [SMALL_STATE(1124)] = 52576, - [SMALL_STATE(1125)] = 52648, - [SMALL_STATE(1126)] = 52720, - [SMALL_STATE(1127)] = 52792, - [SMALL_STATE(1128)] = 52864, - [SMALL_STATE(1129)] = 52936, - [SMALL_STATE(1130)] = 53008, - [SMALL_STATE(1131)] = 53080, - [SMALL_STATE(1132)] = 53152, - [SMALL_STATE(1133)] = 53224, - [SMALL_STATE(1134)] = 53296, - [SMALL_STATE(1135)] = 53368, - [SMALL_STATE(1136)] = 53440, - [SMALL_STATE(1137)] = 53512, - [SMALL_STATE(1138)] = 53584, - [SMALL_STATE(1139)] = 53656, - [SMALL_STATE(1140)] = 53728, - [SMALL_STATE(1141)] = 53800, - [SMALL_STATE(1142)] = 53872, - [SMALL_STATE(1143)] = 53944, - [SMALL_STATE(1144)] = 54016, - [SMALL_STATE(1145)] = 54088, - [SMALL_STATE(1146)] = 54160, - [SMALL_STATE(1147)] = 54232, - [SMALL_STATE(1148)] = 54304, - [SMALL_STATE(1149)] = 54376, - [SMALL_STATE(1150)] = 54448, - [SMALL_STATE(1151)] = 54520, - [SMALL_STATE(1152)] = 54592, - [SMALL_STATE(1153)] = 54664, - [SMALL_STATE(1154)] = 54736, - [SMALL_STATE(1155)] = 54808, - [SMALL_STATE(1156)] = 54880, - [SMALL_STATE(1157)] = 54952, - [SMALL_STATE(1158)] = 55024, - [SMALL_STATE(1159)] = 55096, - [SMALL_STATE(1160)] = 55168, - [SMALL_STATE(1161)] = 55240, - [SMALL_STATE(1162)] = 55312, - [SMALL_STATE(1163)] = 55386, - [SMALL_STATE(1164)] = 55458, - [SMALL_STATE(1165)] = 55530, - [SMALL_STATE(1166)] = 55602, - [SMALL_STATE(1167)] = 55674, - [SMALL_STATE(1168)] = 55746, - [SMALL_STATE(1169)] = 55818, - [SMALL_STATE(1170)] = 55890, - [SMALL_STATE(1171)] = 55962, - [SMALL_STATE(1172)] = 56034, - [SMALL_STATE(1173)] = 56106, - [SMALL_STATE(1174)] = 56178, - [SMALL_STATE(1175)] = 56250, - [SMALL_STATE(1176)] = 56322, - [SMALL_STATE(1177)] = 56394, - [SMALL_STATE(1178)] = 56466, - [SMALL_STATE(1179)] = 56538, - [SMALL_STATE(1180)] = 56610, - [SMALL_STATE(1181)] = 56682, - [SMALL_STATE(1182)] = 56754, - [SMALL_STATE(1183)] = 56826, - [SMALL_STATE(1184)] = 56898, - [SMALL_STATE(1185)] = 56970, - [SMALL_STATE(1186)] = 57042, - [SMALL_STATE(1187)] = 57114, - [SMALL_STATE(1188)] = 57186, - [SMALL_STATE(1189)] = 57258, - [SMALL_STATE(1190)] = 57330, - [SMALL_STATE(1191)] = 57402, - [SMALL_STATE(1192)] = 57474, - [SMALL_STATE(1193)] = 57546, - [SMALL_STATE(1194)] = 57618, - [SMALL_STATE(1195)] = 57690, - [SMALL_STATE(1196)] = 57762, - [SMALL_STATE(1197)] = 57834, - [SMALL_STATE(1198)] = 57906, - [SMALL_STATE(1199)] = 57978, - [SMALL_STATE(1200)] = 58050, - [SMALL_STATE(1201)] = 58122, - [SMALL_STATE(1202)] = 58194, - [SMALL_STATE(1203)] = 58266, - [SMALL_STATE(1204)] = 58338, - [SMALL_STATE(1205)] = 58410, - [SMALL_STATE(1206)] = 58482, - [SMALL_STATE(1207)] = 58554, - [SMALL_STATE(1208)] = 58626, - [SMALL_STATE(1209)] = 58698, - [SMALL_STATE(1210)] = 58770, - [SMALL_STATE(1211)] = 58842, - [SMALL_STATE(1212)] = 58914, - [SMALL_STATE(1213)] = 58986, - [SMALL_STATE(1214)] = 59058, - [SMALL_STATE(1215)] = 59130, - [SMALL_STATE(1216)] = 59202, - [SMALL_STATE(1217)] = 59274, - [SMALL_STATE(1218)] = 59346, - [SMALL_STATE(1219)] = 59418, - [SMALL_STATE(1220)] = 59490, - [SMALL_STATE(1221)] = 59562, - [SMALL_STATE(1222)] = 59634, - [SMALL_STATE(1223)] = 59706, - [SMALL_STATE(1224)] = 59778, - [SMALL_STATE(1225)] = 59850, - [SMALL_STATE(1226)] = 59922, - [SMALL_STATE(1227)] = 59994, - [SMALL_STATE(1228)] = 60066, - [SMALL_STATE(1229)] = 60138, - [SMALL_STATE(1230)] = 60210, - [SMALL_STATE(1231)] = 60282, - [SMALL_STATE(1232)] = 60354, - [SMALL_STATE(1233)] = 60426, - [SMALL_STATE(1234)] = 60498, - [SMALL_STATE(1235)] = 60570, - [SMALL_STATE(1236)] = 60642, - [SMALL_STATE(1237)] = 60714, - [SMALL_STATE(1238)] = 60786, - [SMALL_STATE(1239)] = 60858, - [SMALL_STATE(1240)] = 60930, - [SMALL_STATE(1241)] = 61002, - [SMALL_STATE(1242)] = 61074, - [SMALL_STATE(1243)] = 61146, - [SMALL_STATE(1244)] = 61218, - [SMALL_STATE(1245)] = 61290, - [SMALL_STATE(1246)] = 61362, - [SMALL_STATE(1247)] = 61434, - [SMALL_STATE(1248)] = 61506, - [SMALL_STATE(1249)] = 61578, - [SMALL_STATE(1250)] = 61650, - [SMALL_STATE(1251)] = 61722, - [SMALL_STATE(1252)] = 61794, - [SMALL_STATE(1253)] = 61866, - [SMALL_STATE(1254)] = 61938, - [SMALL_STATE(1255)] = 62010, - [SMALL_STATE(1256)] = 62082, - [SMALL_STATE(1257)] = 62154, - [SMALL_STATE(1258)] = 62226, - [SMALL_STATE(1259)] = 62298, - [SMALL_STATE(1260)] = 62370, - [SMALL_STATE(1261)] = 62442, - [SMALL_STATE(1262)] = 62514, - [SMALL_STATE(1263)] = 62586, - [SMALL_STATE(1264)] = 62658, - [SMALL_STATE(1265)] = 62730, - [SMALL_STATE(1266)] = 62804, - [SMALL_STATE(1267)] = 62876, - [SMALL_STATE(1268)] = 62950, - [SMALL_STATE(1269)] = 63024, - [SMALL_STATE(1270)] = 63098, - [SMALL_STATE(1271)] = 63172, - [SMALL_STATE(1272)] = 63246, - [SMALL_STATE(1273)] = 63320, - [SMALL_STATE(1274)] = 63394, - [SMALL_STATE(1275)] = 63468, - [SMALL_STATE(1276)] = 63542, - [SMALL_STATE(1277)] = 63616, - [SMALL_STATE(1278)] = 63688, - [SMALL_STATE(1279)] = 63760, - [SMALL_STATE(1280)] = 63832, - [SMALL_STATE(1281)] = 63904, - [SMALL_STATE(1282)] = 63976, - [SMALL_STATE(1283)] = 64050, - [SMALL_STATE(1284)] = 64124, - [SMALL_STATE(1285)] = 64198, - [SMALL_STATE(1286)] = 64272, - [SMALL_STATE(1287)] = 64344, - [SMALL_STATE(1288)] = 64413, - [SMALL_STATE(1289)] = 64482, - [SMALL_STATE(1290)] = 64551, - [SMALL_STATE(1291)] = 64620, - [SMALL_STATE(1292)] = 64689, - [SMALL_STATE(1293)] = 64758, - [SMALL_STATE(1294)] = 64827, - [SMALL_STATE(1295)] = 64896, - [SMALL_STATE(1296)] = 64965, - [SMALL_STATE(1297)] = 65036, - [SMALL_STATE(1298)] = 65105, - [SMALL_STATE(1299)] = 65174, - [SMALL_STATE(1300)] = 65243, - [SMALL_STATE(1301)] = 65312, - [SMALL_STATE(1302)] = 65381, - [SMALL_STATE(1303)] = 65450, - [SMALL_STATE(1304)] = 65519, - [SMALL_STATE(1305)] = 65588, - [SMALL_STATE(1306)] = 65657, - [SMALL_STATE(1307)] = 65726, - [SMALL_STATE(1308)] = 65795, - [SMALL_STATE(1309)] = 65864, - [SMALL_STATE(1310)] = 65933, - [SMALL_STATE(1311)] = 66002, - [SMALL_STATE(1312)] = 66071, - [SMALL_STATE(1313)] = 66140, - [SMALL_STATE(1314)] = 66209, - [SMALL_STATE(1315)] = 66278, - [SMALL_STATE(1316)] = 66347, - [SMALL_STATE(1317)] = 66416, - [SMALL_STATE(1318)] = 66485, - [SMALL_STATE(1319)] = 66554, - [SMALL_STATE(1320)] = 66623, - [SMALL_STATE(1321)] = 66692, - [SMALL_STATE(1322)] = 66761, - [SMALL_STATE(1323)] = 66830, - [SMALL_STATE(1324)] = 66899, - [SMALL_STATE(1325)] = 66968, - [SMALL_STATE(1326)] = 67037, - [SMALL_STATE(1327)] = 67106, - [SMALL_STATE(1328)] = 67175, - [SMALL_STATE(1329)] = 67244, - [SMALL_STATE(1330)] = 67313, - [SMALL_STATE(1331)] = 67382, - [SMALL_STATE(1332)] = 67451, - [SMALL_STATE(1333)] = 67520, - [SMALL_STATE(1334)] = 67589, - [SMALL_STATE(1335)] = 67658, - [SMALL_STATE(1336)] = 67727, - [SMALL_STATE(1337)] = 67796, - [SMALL_STATE(1338)] = 67865, - [SMALL_STATE(1339)] = 67934, - [SMALL_STATE(1340)] = 68003, - [SMALL_STATE(1341)] = 68072, - [SMALL_STATE(1342)] = 68143, - [SMALL_STATE(1343)] = 68212, - [SMALL_STATE(1344)] = 68281, - [SMALL_STATE(1345)] = 68350, - [SMALL_STATE(1346)] = 68419, - [SMALL_STATE(1347)] = 68488, - [SMALL_STATE(1348)] = 68557, - [SMALL_STATE(1349)] = 68626, - [SMALL_STATE(1350)] = 68695, - [SMALL_STATE(1351)] = 68764, - [SMALL_STATE(1352)] = 68833, - [SMALL_STATE(1353)] = 68904, - [SMALL_STATE(1354)] = 68973, - [SMALL_STATE(1355)] = 69042, - [SMALL_STATE(1356)] = 69111, - [SMALL_STATE(1357)] = 69180, - [SMALL_STATE(1358)] = 69249, - [SMALL_STATE(1359)] = 69318, - [SMALL_STATE(1360)] = 69387, - [SMALL_STATE(1361)] = 69456, - [SMALL_STATE(1362)] = 69525, - [SMALL_STATE(1363)] = 69594, - [SMALL_STATE(1364)] = 69663, - [SMALL_STATE(1365)] = 69732, - [SMALL_STATE(1366)] = 69801, - [SMALL_STATE(1367)] = 69870, - [SMALL_STATE(1368)] = 69939, - [SMALL_STATE(1369)] = 70008, - [SMALL_STATE(1370)] = 70077, - [SMALL_STATE(1371)] = 70146, - [SMALL_STATE(1372)] = 70215, - [SMALL_STATE(1373)] = 70284, - [SMALL_STATE(1374)] = 70353, - [SMALL_STATE(1375)] = 70422, - [SMALL_STATE(1376)] = 70491, - [SMALL_STATE(1377)] = 70560, - [SMALL_STATE(1378)] = 70629, - [SMALL_STATE(1379)] = 70698, - [SMALL_STATE(1380)] = 70767, - [SMALL_STATE(1381)] = 70836, - [SMALL_STATE(1382)] = 70905, - [SMALL_STATE(1383)] = 70974, - [SMALL_STATE(1384)] = 71043, - [SMALL_STATE(1385)] = 71112, - [SMALL_STATE(1386)] = 71181, - [SMALL_STATE(1387)] = 71250, - [SMALL_STATE(1388)] = 71319, - [SMALL_STATE(1389)] = 71388, - [SMALL_STATE(1390)] = 71457, - [SMALL_STATE(1391)] = 71526, - [SMALL_STATE(1392)] = 71595, - [SMALL_STATE(1393)] = 71664, - [SMALL_STATE(1394)] = 71733, - [SMALL_STATE(1395)] = 71802, - [SMALL_STATE(1396)] = 71871, - [SMALL_STATE(1397)] = 71940, - [SMALL_STATE(1398)] = 72009, - [SMALL_STATE(1399)] = 72078, - [SMALL_STATE(1400)] = 72147, - [SMALL_STATE(1401)] = 72216, - [SMALL_STATE(1402)] = 72285, - [SMALL_STATE(1403)] = 72354, - [SMALL_STATE(1404)] = 72423, - [SMALL_STATE(1405)] = 72492, - [SMALL_STATE(1406)] = 72561, - [SMALL_STATE(1407)] = 72630, - [SMALL_STATE(1408)] = 72699, - [SMALL_STATE(1409)] = 72768, - [SMALL_STATE(1410)] = 72837, - [SMALL_STATE(1411)] = 72906, - [SMALL_STATE(1412)] = 72975, - [SMALL_STATE(1413)] = 73044, - [SMALL_STATE(1414)] = 73113, - [SMALL_STATE(1415)] = 73184, - [SMALL_STATE(1416)] = 73253, - [SMALL_STATE(1417)] = 73322, - [SMALL_STATE(1418)] = 73391, - [SMALL_STATE(1419)] = 73460, - [SMALL_STATE(1420)] = 73529, - [SMALL_STATE(1421)] = 73598, - [SMALL_STATE(1422)] = 73667, - [SMALL_STATE(1423)] = 73736, - [SMALL_STATE(1424)] = 73805, - [SMALL_STATE(1425)] = 73874, - [SMALL_STATE(1426)] = 73943, - [SMALL_STATE(1427)] = 74012, - [SMALL_STATE(1428)] = 74081, - [SMALL_STATE(1429)] = 74150, - [SMALL_STATE(1430)] = 74219, - [SMALL_STATE(1431)] = 74288, - [SMALL_STATE(1432)] = 74357, - [SMALL_STATE(1433)] = 74426, - [SMALL_STATE(1434)] = 74495, - [SMALL_STATE(1435)] = 74564, - [SMALL_STATE(1436)] = 74633, - [SMALL_STATE(1437)] = 74702, - [SMALL_STATE(1438)] = 74771, - [SMALL_STATE(1439)] = 74840, - [SMALL_STATE(1440)] = 74909, - [SMALL_STATE(1441)] = 74978, - [SMALL_STATE(1442)] = 75047, - [SMALL_STATE(1443)] = 75116, - [SMALL_STATE(1444)] = 75185, - [SMALL_STATE(1445)] = 75254, - [SMALL_STATE(1446)] = 75323, - [SMALL_STATE(1447)] = 75392, - [SMALL_STATE(1448)] = 75461, - [SMALL_STATE(1449)] = 75530, - [SMALL_STATE(1450)] = 75599, - [SMALL_STATE(1451)] = 75668, - [SMALL_STATE(1452)] = 75737, - [SMALL_STATE(1453)] = 75806, - [SMALL_STATE(1454)] = 75875, - [SMALL_STATE(1455)] = 75944, - [SMALL_STATE(1456)] = 76013, - [SMALL_STATE(1457)] = 76082, - [SMALL_STATE(1458)] = 76151, - [SMALL_STATE(1459)] = 76220, - [SMALL_STATE(1460)] = 76289, - [SMALL_STATE(1461)] = 76358, - [SMALL_STATE(1462)] = 76427, - [SMALL_STATE(1463)] = 76496, - [SMALL_STATE(1464)] = 76565, - [SMALL_STATE(1465)] = 76634, - [SMALL_STATE(1466)] = 76703, - [SMALL_STATE(1467)] = 76772, - [SMALL_STATE(1468)] = 76841, - [SMALL_STATE(1469)] = 76910, - [SMALL_STATE(1470)] = 76979, - [SMALL_STATE(1471)] = 77048, - [SMALL_STATE(1472)] = 77117, - [SMALL_STATE(1473)] = 77186, - [SMALL_STATE(1474)] = 77255, - [SMALL_STATE(1475)] = 77324, - [SMALL_STATE(1476)] = 77393, - [SMALL_STATE(1477)] = 77462, - [SMALL_STATE(1478)] = 77531, - [SMALL_STATE(1479)] = 77600, - [SMALL_STATE(1480)] = 77669, - [SMALL_STATE(1481)] = 77738, - [SMALL_STATE(1482)] = 77807, - [SMALL_STATE(1483)] = 77876, - [SMALL_STATE(1484)] = 77945, - [SMALL_STATE(1485)] = 78014, - [SMALL_STATE(1486)] = 78083, - [SMALL_STATE(1487)] = 78152, - [SMALL_STATE(1488)] = 78221, - [SMALL_STATE(1489)] = 78292, - [SMALL_STATE(1490)] = 78361, - [SMALL_STATE(1491)] = 78430, - [SMALL_STATE(1492)] = 78499, - [SMALL_STATE(1493)] = 78568, - [SMALL_STATE(1494)] = 78637, - [SMALL_STATE(1495)] = 78708, - [SMALL_STATE(1496)] = 78777, - [SMALL_STATE(1497)] = 78846, - [SMALL_STATE(1498)] = 78915, - [SMALL_STATE(1499)] = 78984, - [SMALL_STATE(1500)] = 79053, - [SMALL_STATE(1501)] = 79122, - [SMALL_STATE(1502)] = 79191, - [SMALL_STATE(1503)] = 79260, - [SMALL_STATE(1504)] = 79329, - [SMALL_STATE(1505)] = 79398, - [SMALL_STATE(1506)] = 79467, - [SMALL_STATE(1507)] = 79536, - [SMALL_STATE(1508)] = 79605, - [SMALL_STATE(1509)] = 79676, - [SMALL_STATE(1510)] = 79745, - [SMALL_STATE(1511)] = 79814, - [SMALL_STATE(1512)] = 79883, - [SMALL_STATE(1513)] = 79952, - [SMALL_STATE(1514)] = 80021, - [SMALL_STATE(1515)] = 80090, - [SMALL_STATE(1516)] = 80159, - [SMALL_STATE(1517)] = 80228, - [SMALL_STATE(1518)] = 80297, - [SMALL_STATE(1519)] = 80366, - [SMALL_STATE(1520)] = 80435, - [SMALL_STATE(1521)] = 80504, - [SMALL_STATE(1522)] = 80573, - [SMALL_STATE(1523)] = 80642, - [SMALL_STATE(1524)] = 80711, - [SMALL_STATE(1525)] = 80780, - [SMALL_STATE(1526)] = 80849, - [SMALL_STATE(1527)] = 80918, - [SMALL_STATE(1528)] = 80987, - [SMALL_STATE(1529)] = 81056, - [SMALL_STATE(1530)] = 81125, - [SMALL_STATE(1531)] = 81194, - [SMALL_STATE(1532)] = 81263, - [SMALL_STATE(1533)] = 81332, - [SMALL_STATE(1534)] = 81401, - [SMALL_STATE(1535)] = 81470, - [SMALL_STATE(1536)] = 81539, - [SMALL_STATE(1537)] = 81608, - [SMALL_STATE(1538)] = 81677, - [SMALL_STATE(1539)] = 81746, - [SMALL_STATE(1540)] = 81815, - [SMALL_STATE(1541)] = 81884, - [SMALL_STATE(1542)] = 81953, - [SMALL_STATE(1543)] = 82022, - [SMALL_STATE(1544)] = 82091, - [SMALL_STATE(1545)] = 82160, - [SMALL_STATE(1546)] = 82229, - [SMALL_STATE(1547)] = 82298, - [SMALL_STATE(1548)] = 82367, - [SMALL_STATE(1549)] = 82436, - [SMALL_STATE(1550)] = 82505, - [SMALL_STATE(1551)] = 82574, - [SMALL_STATE(1552)] = 82643, - [SMALL_STATE(1553)] = 82712, - [SMALL_STATE(1554)] = 82781, - [SMALL_STATE(1555)] = 82850, - [SMALL_STATE(1556)] = 82919, - [SMALL_STATE(1557)] = 82988, - [SMALL_STATE(1558)] = 83057, - [SMALL_STATE(1559)] = 83126, - [SMALL_STATE(1560)] = 83195, - [SMALL_STATE(1561)] = 83266, - [SMALL_STATE(1562)] = 83335, - [SMALL_STATE(1563)] = 83404, - [SMALL_STATE(1564)] = 83473, - [SMALL_STATE(1565)] = 83542, - [SMALL_STATE(1566)] = 83613, - [SMALL_STATE(1567)] = 83682, - [SMALL_STATE(1568)] = 83751, - [SMALL_STATE(1569)] = 83820, - [SMALL_STATE(1570)] = 83889, - [SMALL_STATE(1571)] = 83958, - [SMALL_STATE(1572)] = 84027, - [SMALL_STATE(1573)] = 84096, - [SMALL_STATE(1574)] = 84165, - [SMALL_STATE(1575)] = 84234, - [SMALL_STATE(1576)] = 84303, - [SMALL_STATE(1577)] = 84372, - [SMALL_STATE(1578)] = 84441, - [SMALL_STATE(1579)] = 84510, - [SMALL_STATE(1580)] = 84579, - [SMALL_STATE(1581)] = 84648, - [SMALL_STATE(1582)] = 84717, - [SMALL_STATE(1583)] = 84786, - [SMALL_STATE(1584)] = 84855, - [SMALL_STATE(1585)] = 84924, - [SMALL_STATE(1586)] = 84993, - [SMALL_STATE(1587)] = 85062, - [SMALL_STATE(1588)] = 85131, - [SMALL_STATE(1589)] = 85200, - [SMALL_STATE(1590)] = 85269, - [SMALL_STATE(1591)] = 85338, - [SMALL_STATE(1592)] = 85407, - [SMALL_STATE(1593)] = 85476, - [SMALL_STATE(1594)] = 85545, - [SMALL_STATE(1595)] = 85614, - [SMALL_STATE(1596)] = 85683, - [SMALL_STATE(1597)] = 85752, - [SMALL_STATE(1598)] = 85821, - [SMALL_STATE(1599)] = 85890, - [SMALL_STATE(1600)] = 85959, - [SMALL_STATE(1601)] = 86028, - [SMALL_STATE(1602)] = 86097, - [SMALL_STATE(1603)] = 86166, - [SMALL_STATE(1604)] = 86235, - [SMALL_STATE(1605)] = 86304, - [SMALL_STATE(1606)] = 86373, - [SMALL_STATE(1607)] = 86442, - [SMALL_STATE(1608)] = 86511, - [SMALL_STATE(1609)] = 86580, - [SMALL_STATE(1610)] = 86649, - [SMALL_STATE(1611)] = 86718, - [SMALL_STATE(1612)] = 86787, - [SMALL_STATE(1613)] = 86856, - [SMALL_STATE(1614)] = 86925, - [SMALL_STATE(1615)] = 86994, - [SMALL_STATE(1616)] = 87063, - [SMALL_STATE(1617)] = 87132, - [SMALL_STATE(1618)] = 87201, - [SMALL_STATE(1619)] = 87270, - [SMALL_STATE(1620)] = 87339, - [SMALL_STATE(1621)] = 87408, - [SMALL_STATE(1622)] = 87477, - [SMALL_STATE(1623)] = 87546, - [SMALL_STATE(1624)] = 87615, - [SMALL_STATE(1625)] = 87684, - [SMALL_STATE(1626)] = 87753, - [SMALL_STATE(1627)] = 87822, - [SMALL_STATE(1628)] = 87891, - [SMALL_STATE(1629)] = 87960, - [SMALL_STATE(1630)] = 88029, - [SMALL_STATE(1631)] = 88098, - [SMALL_STATE(1632)] = 88167, - [SMALL_STATE(1633)] = 88236, - [SMALL_STATE(1634)] = 88305, - [SMALL_STATE(1635)] = 88374, - [SMALL_STATE(1636)] = 88443, - [SMALL_STATE(1637)] = 88514, - [SMALL_STATE(1638)] = 88583, - [SMALL_STATE(1639)] = 88652, - [SMALL_STATE(1640)] = 88721, - [SMALL_STATE(1641)] = 88790, - [SMALL_STATE(1642)] = 88859, - [SMALL_STATE(1643)] = 88928, - [SMALL_STATE(1644)] = 88997, - [SMALL_STATE(1645)] = 89066, - [SMALL_STATE(1646)] = 89135, - [SMALL_STATE(1647)] = 89204, - [SMALL_STATE(1648)] = 89273, - [SMALL_STATE(1649)] = 89342, - [SMALL_STATE(1650)] = 89411, - [SMALL_STATE(1651)] = 89480, - [SMALL_STATE(1652)] = 89549, - [SMALL_STATE(1653)] = 89618, - [SMALL_STATE(1654)] = 89687, - [SMALL_STATE(1655)] = 89756, - [SMALL_STATE(1656)] = 89825, - [SMALL_STATE(1657)] = 89894, - [SMALL_STATE(1658)] = 89963, - [SMALL_STATE(1659)] = 90032, - [SMALL_STATE(1660)] = 90101, - [SMALL_STATE(1661)] = 90170, - [SMALL_STATE(1662)] = 90239, - [SMALL_STATE(1663)] = 90308, - [SMALL_STATE(1664)] = 90377, - [SMALL_STATE(1665)] = 90446, - [SMALL_STATE(1666)] = 90515, - [SMALL_STATE(1667)] = 90584, - [SMALL_STATE(1668)] = 90653, - [SMALL_STATE(1669)] = 90722, - [SMALL_STATE(1670)] = 90791, - [SMALL_STATE(1671)] = 90860, - [SMALL_STATE(1672)] = 90929, - [SMALL_STATE(1673)] = 90998, - [SMALL_STATE(1674)] = 91067, - [SMALL_STATE(1675)] = 91136, - [SMALL_STATE(1676)] = 91205, - [SMALL_STATE(1677)] = 91274, - [SMALL_STATE(1678)] = 91343, - [SMALL_STATE(1679)] = 91412, - [SMALL_STATE(1680)] = 91481, - [SMALL_STATE(1681)] = 91550, - [SMALL_STATE(1682)] = 91619, - [SMALL_STATE(1683)] = 91688, - [SMALL_STATE(1684)] = 91757, - [SMALL_STATE(1685)] = 91826, - [SMALL_STATE(1686)] = 91895, - [SMALL_STATE(1687)] = 91964, - [SMALL_STATE(1688)] = 92033, - [SMALL_STATE(1689)] = 92102, - [SMALL_STATE(1690)] = 92171, - [SMALL_STATE(1691)] = 92240, - [SMALL_STATE(1692)] = 92309, - [SMALL_STATE(1693)] = 92378, - [SMALL_STATE(1694)] = 92447, - [SMALL_STATE(1695)] = 92516, - [SMALL_STATE(1696)] = 92585, - [SMALL_STATE(1697)] = 92654, - [SMALL_STATE(1698)] = 92723, - [SMALL_STATE(1699)] = 92792, - [SMALL_STATE(1700)] = 92861, - [SMALL_STATE(1701)] = 92930, - [SMALL_STATE(1702)] = 92999, - [SMALL_STATE(1703)] = 93068, - [SMALL_STATE(1704)] = 93137, - [SMALL_STATE(1705)] = 93206, - [SMALL_STATE(1706)] = 93275, - [SMALL_STATE(1707)] = 93344, - [SMALL_STATE(1708)] = 93413, - [SMALL_STATE(1709)] = 93482, - [SMALL_STATE(1710)] = 93551, - [SMALL_STATE(1711)] = 93620, - [SMALL_STATE(1712)] = 93689, - [SMALL_STATE(1713)] = 93758, - [SMALL_STATE(1714)] = 93827, - [SMALL_STATE(1715)] = 93896, - [SMALL_STATE(1716)] = 93965, - [SMALL_STATE(1717)] = 94034, - [SMALL_STATE(1718)] = 94103, - [SMALL_STATE(1719)] = 94172, - [SMALL_STATE(1720)] = 94241, - [SMALL_STATE(1721)] = 94310, - [SMALL_STATE(1722)] = 94379, - [SMALL_STATE(1723)] = 94448, - [SMALL_STATE(1724)] = 94517, - [SMALL_STATE(1725)] = 94586, - [SMALL_STATE(1726)] = 94655, - [SMALL_STATE(1727)] = 94724, - [SMALL_STATE(1728)] = 94793, - [SMALL_STATE(1729)] = 94862, - [SMALL_STATE(1730)] = 94931, - [SMALL_STATE(1731)] = 95000, - [SMALL_STATE(1732)] = 95069, - [SMALL_STATE(1733)] = 95138, - [SMALL_STATE(1734)] = 95207, - [SMALL_STATE(1735)] = 95276, - [SMALL_STATE(1736)] = 95345, - [SMALL_STATE(1737)] = 95414, - [SMALL_STATE(1738)] = 95483, - [SMALL_STATE(1739)] = 95552, - [SMALL_STATE(1740)] = 95621, - [SMALL_STATE(1741)] = 95690, - [SMALL_STATE(1742)] = 95759, - [SMALL_STATE(1743)] = 95828, - [SMALL_STATE(1744)] = 95897, - [SMALL_STATE(1745)] = 95966, - [SMALL_STATE(1746)] = 96035, - [SMALL_STATE(1747)] = 96104, - [SMALL_STATE(1748)] = 96173, - [SMALL_STATE(1749)] = 96242, - [SMALL_STATE(1750)] = 96311, - [SMALL_STATE(1751)] = 96380, - [SMALL_STATE(1752)] = 96449, - [SMALL_STATE(1753)] = 96518, - [SMALL_STATE(1754)] = 96587, - [SMALL_STATE(1755)] = 96656, - [SMALL_STATE(1756)] = 96725, - [SMALL_STATE(1757)] = 96794, - [SMALL_STATE(1758)] = 96863, - [SMALL_STATE(1759)] = 96932, - [SMALL_STATE(1760)] = 97001, - [SMALL_STATE(1761)] = 97070, - [SMALL_STATE(1762)] = 97139, - [SMALL_STATE(1763)] = 97208, - [SMALL_STATE(1764)] = 97277, - [SMALL_STATE(1765)] = 97346, - [SMALL_STATE(1766)] = 97415, - [SMALL_STATE(1767)] = 97484, - [SMALL_STATE(1768)] = 97553, - [SMALL_STATE(1769)] = 97622, - [SMALL_STATE(1770)] = 97691, - [SMALL_STATE(1771)] = 97762, - [SMALL_STATE(1772)] = 97831, - [SMALL_STATE(1773)] = 97902, - [SMALL_STATE(1774)] = 97973, - [SMALL_STATE(1775)] = 98042, - [SMALL_STATE(1776)] = 98111, - [SMALL_STATE(1777)] = 98182, - [SMALL_STATE(1778)] = 98253, - [SMALL_STATE(1779)] = 98324, - [SMALL_STATE(1780)] = 98393, - [SMALL_STATE(1781)] = 98462, - [SMALL_STATE(1782)] = 98533, - [SMALL_STATE(1783)] = 98604, - [SMALL_STATE(1784)] = 98675, - [SMALL_STATE(1785)] = 98746, - [SMALL_STATE(1786)] = 98817, - [SMALL_STATE(1787)] = 98888, - [SMALL_STATE(1788)] = 98957, - [SMALL_STATE(1789)] = 99026, - [SMALL_STATE(1790)] = 99095, - [SMALL_STATE(1791)] = 99166, - [SMALL_STATE(1792)] = 99237, - [SMALL_STATE(1793)] = 99308, - [SMALL_STATE(1794)] = 99377, - [SMALL_STATE(1795)] = 99446, - [SMALL_STATE(1796)] = 99499, - [SMALL_STATE(1797)] = 99568, - [SMALL_STATE(1798)] = 99639, - [SMALL_STATE(1799)] = 99710, - [SMALL_STATE(1800)] = 99781, - [SMALL_STATE(1801)] = 99850, - [SMALL_STATE(1802)] = 99921, - [SMALL_STATE(1803)] = 99974, - [SMALL_STATE(1804)] = 100045, - [SMALL_STATE(1805)] = 100114, - [SMALL_STATE(1806)] = 100185, - [SMALL_STATE(1807)] = 100254, - [SMALL_STATE(1808)] = 100325, - [SMALL_STATE(1809)] = 100394, - [SMALL_STATE(1810)] = 100463, - [SMALL_STATE(1811)] = 100532, - [SMALL_STATE(1812)] = 100601, - [SMALL_STATE(1813)] = 100672, - [SMALL_STATE(1814)] = 100741, - [SMALL_STATE(1815)] = 100810, - [SMALL_STATE(1816)] = 100879, - [SMALL_STATE(1817)] = 100948, - [SMALL_STATE(1818)] = 101017, - [SMALL_STATE(1819)] = 101086, - [SMALL_STATE(1820)] = 101138, - [SMALL_STATE(1821)] = 101189, - [SMALL_STATE(1822)] = 101229, - [SMALL_STATE(1823)] = 101269, - [SMALL_STATE(1824)] = 101309, - [SMALL_STATE(1825)] = 101349, - [SMALL_STATE(1826)] = 101389, - [SMALL_STATE(1827)] = 101437, - [SMALL_STATE(1828)] = 101474, - [SMALL_STATE(1829)] = 101513, - [SMALL_STATE(1830)] = 101548, - [SMALL_STATE(1831)] = 101599, - [SMALL_STATE(1832)] = 101638, - [SMALL_STATE(1833)] = 101677, - [SMALL_STATE(1834)] = 101738, - [SMALL_STATE(1835)] = 101773, - [SMALL_STATE(1836)] = 101808, - [SMALL_STATE(1837)] = 101843, - [SMALL_STATE(1838)] = 101878, - [SMALL_STATE(1839)] = 101913, - [SMALL_STATE(1840)] = 101948, - [SMALL_STATE(1841)] = 101983, - [SMALL_STATE(1842)] = 102018, - [SMALL_STATE(1843)] = 102053, - [SMALL_STATE(1844)] = 102088, - [SMALL_STATE(1845)] = 102149, - [SMALL_STATE(1846)] = 102210, - [SMALL_STATE(1847)] = 102245, - [SMALL_STATE(1848)] = 102284, - [SMALL_STATE(1849)] = 102345, - [SMALL_STATE(1850)] = 102406, - [SMALL_STATE(1851)] = 102467, - [SMALL_STATE(1852)] = 102502, - [SMALL_STATE(1853)] = 102537, - [SMALL_STATE(1854)] = 102572, - [SMALL_STATE(1855)] = 102617, - [SMALL_STATE(1856)] = 102652, - [SMALL_STATE(1857)] = 102687, - [SMALL_STATE(1858)] = 102722, - [SMALL_STATE(1859)] = 102757, - [SMALL_STATE(1860)] = 102792, - [SMALL_STATE(1861)] = 102827, - [SMALL_STATE(1862)] = 102866, - [SMALL_STATE(1863)] = 102901, - [SMALL_STATE(1864)] = 102936, - [SMALL_STATE(1865)] = 102975, - [SMALL_STATE(1866)] = 103036, - [SMALL_STATE(1867)] = 103071, - [SMALL_STATE(1868)] = 103122, - [SMALL_STATE(1869)] = 103157, - [SMALL_STATE(1870)] = 103192, - [SMALL_STATE(1871)] = 103227, - [SMALL_STATE(1872)] = 103262, - [SMALL_STATE(1873)] = 103307, - [SMALL_STATE(1874)] = 103342, - [SMALL_STATE(1875)] = 103377, - [SMALL_STATE(1876)] = 103412, - [SMALL_STATE(1877)] = 103447, - [SMALL_STATE(1878)] = 103482, - [SMALL_STATE(1879)] = 103546, - [SMALL_STATE(1880)] = 103582, - [SMALL_STATE(1881)] = 103618, - [SMALL_STATE(1882)] = 103682, - [SMALL_STATE(1883)] = 103718, - [SMALL_STATE(1884)] = 103754, - [SMALL_STATE(1885)] = 103790, - [SMALL_STATE(1886)] = 103826, - [SMALL_STATE(1887)] = 103862, - [SMALL_STATE(1888)] = 103898, - [SMALL_STATE(1889)] = 103934, - [SMALL_STATE(1890)] = 103970, - [SMALL_STATE(1891)] = 104034, - [SMALL_STATE(1892)] = 104084, - [SMALL_STATE(1893)] = 104148, - [SMALL_STATE(1894)] = 104184, - [SMALL_STATE(1895)] = 104220, - [SMALL_STATE(1896)] = 104264, - [SMALL_STATE(1897)] = 104300, - [SMALL_STATE(1898)] = 104336, - [SMALL_STATE(1899)] = 104400, - [SMALL_STATE(1900)] = 104464, - [SMALL_STATE(1901)] = 104500, - [SMALL_STATE(1902)] = 104536, - [SMALL_STATE(1903)] = 104572, - [SMALL_STATE(1904)] = 104622, - [SMALL_STATE(1905)] = 104658, - [SMALL_STATE(1906)] = 104696, - [SMALL_STATE(1907)] = 104732, - [SMALL_STATE(1908)] = 104766, - [SMALL_STATE(1909)] = 104802, - [SMALL_STATE(1910)] = 104840, - [SMALL_STATE(1911)] = 104876, - [SMALL_STATE(1912)] = 104912, - [SMALL_STATE(1913)] = 104948, - [SMALL_STATE(1914)] = 104984, - [SMALL_STATE(1915)] = 105020, - [SMALL_STATE(1916)] = 105056, - [SMALL_STATE(1917)] = 105090, - [SMALL_STATE(1918)] = 105134, - [SMALL_STATE(1919)] = 105170, - [SMALL_STATE(1920)] = 105208, - [SMALL_STATE(1921)] = 105244, - [SMALL_STATE(1922)] = 105280, - [SMALL_STATE(1923)] = 105318, - [SMALL_STATE(1924)] = 105354, - [SMALL_STATE(1925)] = 105390, - [SMALL_STATE(1926)] = 105434, - [SMALL_STATE(1927)] = 105470, - [SMALL_STATE(1928)] = 105514, - [SMALL_STATE(1929)] = 105550, - [SMALL_STATE(1930)] = 105609, - [SMALL_STATE(1931)] = 105668, - [SMALL_STATE(1932)] = 105727, - [SMALL_STATE(1933)] = 105760, - [SMALL_STATE(1934)] = 105819, - [SMALL_STATE(1935)] = 105878, - [SMALL_STATE(1936)] = 105937, - [SMALL_STATE(1937)] = 105974, - [SMALL_STATE(1938)] = 106011, - [SMALL_STATE(1939)] = 106070, - [SMALL_STATE(1940)] = 106107, - [SMALL_STATE(1941)] = 106156, - [SMALL_STATE(1942)] = 106215, - [SMALL_STATE(1943)] = 106274, - [SMALL_STATE(1944)] = 106323, - [SMALL_STATE(1945)] = 106382, - [SMALL_STATE(1946)] = 106441, - [SMALL_STATE(1947)] = 106488, - [SMALL_STATE(1948)] = 106547, - [SMALL_STATE(1949)] = 106606, - [SMALL_STATE(1950)] = 106665, - [SMALL_STATE(1951)] = 106724, - [SMALL_STATE(1952)] = 106783, - [SMALL_STATE(1953)] = 106826, - [SMALL_STATE(1954)] = 106875, - [SMALL_STATE(1955)] = 106912, - [SMALL_STATE(1956)] = 106961, - [SMALL_STATE(1957)] = 106998, - [SMALL_STATE(1958)] = 107035, - [SMALL_STATE(1959)] = 107094, - [SMALL_STATE(1960)] = 107153, - [SMALL_STATE(1961)] = 107202, - [SMALL_STATE(1962)] = 107245, - [SMALL_STATE(1963)] = 107278, - [SMALL_STATE(1964)] = 107315, - [SMALL_STATE(1965)] = 107352, - [SMALL_STATE(1966)] = 107387, - [SMALL_STATE(1967)] = 107436, - [SMALL_STATE(1968)] = 107471, - [SMALL_STATE(1969)] = 107508, - [SMALL_STATE(1970)] = 107567, - [SMALL_STATE(1971)] = 107604, - [SMALL_STATE(1972)] = 107637, - [SMALL_STATE(1973)] = 107674, - [SMALL_STATE(1974)] = 107711, - [SMALL_STATE(1975)] = 107748, - [SMALL_STATE(1976)] = 107807, - [SMALL_STATE(1977)] = 107840, - [SMALL_STATE(1978)] = 107899, - [SMALL_STATE(1979)] = 107936, - [SMALL_STATE(1980)] = 107995, - [SMALL_STATE(1981)] = 108054, - [SMALL_STATE(1982)] = 108113, - [SMALL_STATE(1983)] = 108169, - [SMALL_STATE(1984)] = 108205, - [SMALL_STATE(1985)] = 108237, - [SMALL_STATE(1986)] = 108269, - [SMALL_STATE(1987)] = 108301, - [SMALL_STATE(1988)] = 108337, - [SMALL_STATE(1989)] = 108369, - [SMALL_STATE(1990)] = 108401, - [SMALL_STATE(1991)] = 108433, - [SMALL_STATE(1992)] = 108465, - [SMALL_STATE(1993)] = 108497, - [SMALL_STATE(1994)] = 108529, - [SMALL_STATE(1995)] = 108585, - [SMALL_STATE(1996)] = 108641, - [SMALL_STATE(1997)] = 108677, - [SMALL_STATE(1998)] = 108733, - [SMALL_STATE(1999)] = 108769, - [SMALL_STATE(2000)] = 108805, - [SMALL_STATE(2001)] = 108837, - [SMALL_STATE(2002)] = 108869, - [SMALL_STATE(2003)] = 108925, - [SMALL_STATE(2004)] = 108981, - [SMALL_STATE(2005)] = 109013, - [SMALL_STATE(2006)] = 109045, - [SMALL_STATE(2007)] = 109081, - [SMALL_STATE(2008)] = 109127, - [SMALL_STATE(2009)] = 109183, - [SMALL_STATE(2010)] = 109239, - [SMALL_STATE(2011)] = 109285, - [SMALL_STATE(2012)] = 109317, - [SMALL_STATE(2013)] = 109353, - [SMALL_STATE(2014)] = 109385, - [SMALL_STATE(2015)] = 109421, - [SMALL_STATE(2016)] = 109455, - [SMALL_STATE(2017)] = 109511, - [SMALL_STATE(2018)] = 109543, - [SMALL_STATE(2019)] = 109599, - [SMALL_STATE(2020)] = 109633, - [SMALL_STATE(2021)] = 109689, - [SMALL_STATE(2022)] = 109745, - [SMALL_STATE(2023)] = 109781, - [SMALL_STATE(2024)] = 109837, - [SMALL_STATE(2025)] = 109873, - [SMALL_STATE(2026)] = 109907, - [SMALL_STATE(2027)] = 109963, - [SMALL_STATE(2028)] = 109995, - [SMALL_STATE(2029)] = 110027, - [SMALL_STATE(2030)] = 110059, - [SMALL_STATE(2031)] = 110091, - [SMALL_STATE(2032)] = 110123, - [SMALL_STATE(2033)] = 110159, - [SMALL_STATE(2034)] = 110193, - [SMALL_STATE(2035)] = 110249, - [SMALL_STATE(2036)] = 110281, - [SMALL_STATE(2037)] = 110313, - [SMALL_STATE(2038)] = 110345, - [SMALL_STATE(2039)] = 110401, - [SMALL_STATE(2040)] = 110435, - [SMALL_STATE(2041)] = 110467, - [SMALL_STATE(2042)] = 110523, - [SMALL_STATE(2043)] = 110579, - [SMALL_STATE(2044)] = 110611, - [SMALL_STATE(2045)] = 110657, - [SMALL_STATE(2046)] = 110713, - [SMALL_STATE(2047)] = 110769, - [SMALL_STATE(2048)] = 110805, - [SMALL_STATE(2049)] = 110841, - [SMALL_STATE(2050)] = 110873, - [SMALL_STATE(2051)] = 110909, - [SMALL_STATE(2052)] = 110945, - [SMALL_STATE(2053)] = 110977, - [SMALL_STATE(2054)] = 111009, - [SMALL_STATE(2055)] = 111041, - [SMALL_STATE(2056)] = 111073, - [SMALL_STATE(2057)] = 111105, - [SMALL_STATE(2058)] = 111137, - [SMALL_STATE(2059)] = 111172, - [SMALL_STATE(2060)] = 111203, - [SMALL_STATE(2061)] = 111234, - [SMALL_STATE(2062)] = 111265, - [SMALL_STATE(2063)] = 111320, - [SMALL_STATE(2064)] = 111351, - [SMALL_STATE(2065)] = 111382, - [SMALL_STATE(2066)] = 111413, - [SMALL_STATE(2067)] = 111468, - [SMALL_STATE(2068)] = 111499, - [SMALL_STATE(2069)] = 111530, - [SMALL_STATE(2070)] = 111561, - [SMALL_STATE(2071)] = 111616, - [SMALL_STATE(2072)] = 111647, - [SMALL_STATE(2073)] = 111678, - [SMALL_STATE(2074)] = 111709, - [SMALL_STATE(2075)] = 111740, - [SMALL_STATE(2076)] = 111771, - [SMALL_STATE(2077)] = 111826, - [SMALL_STATE(2078)] = 111857, - [SMALL_STATE(2079)] = 111888, - [SMALL_STATE(2080)] = 111919, - [SMALL_STATE(2081)] = 111950, - [SMALL_STATE(2082)] = 111981, - [SMALL_STATE(2083)] = 112012, - [SMALL_STATE(2084)] = 112043, - [SMALL_STATE(2085)] = 112074, - [SMALL_STATE(2086)] = 112129, - [SMALL_STATE(2087)] = 112160, - [SMALL_STATE(2088)] = 112191, - [SMALL_STATE(2089)] = 112222, - [SMALL_STATE(2090)] = 112253, - [SMALL_STATE(2091)] = 112284, - [SMALL_STATE(2092)] = 112315, - [SMALL_STATE(2093)] = 112346, - [SMALL_STATE(2094)] = 112377, - [SMALL_STATE(2095)] = 112408, - [SMALL_STATE(2096)] = 112463, - [SMALL_STATE(2097)] = 112494, - [SMALL_STATE(2098)] = 112549, - [SMALL_STATE(2099)] = 112604, - [SMALL_STATE(2100)] = 112659, - [SMALL_STATE(2101)] = 112714, - [SMALL_STATE(2102)] = 112745, - [SMALL_STATE(2103)] = 112800, - [SMALL_STATE(2104)] = 112831, - [SMALL_STATE(2105)] = 112862, - [SMALL_STATE(2106)] = 112893, - [SMALL_STATE(2107)] = 112924, - [SMALL_STATE(2108)] = 112959, - [SMALL_STATE(2109)] = 113014, - [SMALL_STATE(2110)] = 113045, - [SMALL_STATE(2111)] = 113076, - [SMALL_STATE(2112)] = 113131, - [SMALL_STATE(2113)] = 113162, - [SMALL_STATE(2114)] = 113193, - [SMALL_STATE(2115)] = 113224, - [SMALL_STATE(2116)] = 113255, - [SMALL_STATE(2117)] = 113310, - [SMALL_STATE(2118)] = 113341, - [SMALL_STATE(2119)] = 113372, - [SMALL_STATE(2120)] = 113403, - [SMALL_STATE(2121)] = 113458, - [SMALL_STATE(2122)] = 113489, - [SMALL_STATE(2123)] = 113520, - [SMALL_STATE(2124)] = 113555, - [SMALL_STATE(2125)] = 113590, - [SMALL_STATE(2126)] = 113645, - [SMALL_STATE(2127)] = 113676, - [SMALL_STATE(2128)] = 113707, - [SMALL_STATE(2129)] = 113738, - [SMALL_STATE(2130)] = 113769, - [SMALL_STATE(2131)] = 113800, - [SMALL_STATE(2132)] = 113855, - [SMALL_STATE(2133)] = 113886, - [SMALL_STATE(2134)] = 113917, - [SMALL_STATE(2135)] = 113948, - [SMALL_STATE(2136)] = 113979, - [SMALL_STATE(2137)] = 114010, - [SMALL_STATE(2138)] = 114041, - [SMALL_STATE(2139)] = 114096, - [SMALL_STATE(2140)] = 114127, - [SMALL_STATE(2141)] = 114182, - [SMALL_STATE(2142)] = 114213, - [SMALL_STATE(2143)] = 114268, - [SMALL_STATE(2144)] = 114303, - [SMALL_STATE(2145)] = 114358, - [SMALL_STATE(2146)] = 114393, - [SMALL_STATE(2147)] = 114428, - [SMALL_STATE(2148)] = 114483, - [SMALL_STATE(2149)] = 114514, - [SMALL_STATE(2150)] = 114569, - [SMALL_STATE(2151)] = 114624, - [SMALL_STATE(2152)] = 114679, - [SMALL_STATE(2153)] = 114710, - [SMALL_STATE(2154)] = 114765, - [SMALL_STATE(2155)] = 114820, - [SMALL_STATE(2156)] = 114851, - [SMALL_STATE(2157)] = 114882, - [SMALL_STATE(2158)] = 114913, - [SMALL_STATE(2159)] = 114944, - [SMALL_STATE(2160)] = 114979, - [SMALL_STATE(2161)] = 115010, - [SMALL_STATE(2162)] = 115041, - [SMALL_STATE(2163)] = 115072, - [SMALL_STATE(2164)] = 115127, - [SMALL_STATE(2165)] = 115158, - [SMALL_STATE(2166)] = 115189, - [SMALL_STATE(2167)] = 115220, - [SMALL_STATE(2168)] = 115251, - [SMALL_STATE(2169)] = 115306, - [SMALL_STATE(2170)] = 115337, - [SMALL_STATE(2171)] = 115392, - [SMALL_STATE(2172)] = 115423, - [SMALL_STATE(2173)] = 115454, - [SMALL_STATE(2174)] = 115485, - [SMALL_STATE(2175)] = 115540, - [SMALL_STATE(2176)] = 115571, - [SMALL_STATE(2177)] = 115602, - [SMALL_STATE(2178)] = 115633, - [SMALL_STATE(2179)] = 115664, - [SMALL_STATE(2180)] = 115695, - [SMALL_STATE(2181)] = 115726, - [SMALL_STATE(2182)] = 115757, - [SMALL_STATE(2183)] = 115788, - [SMALL_STATE(2184)] = 115819, - [SMALL_STATE(2185)] = 115850, - [SMALL_STATE(2186)] = 115881, - [SMALL_STATE(2187)] = 115936, - [SMALL_STATE(2188)] = 115967, - [SMALL_STATE(2189)] = 115998, - [SMALL_STATE(2190)] = 116029, - [SMALL_STATE(2191)] = 116060, - [SMALL_STATE(2192)] = 116091, - [SMALL_STATE(2193)] = 116122, - [SMALL_STATE(2194)] = 116153, - [SMALL_STATE(2195)] = 116184, - [SMALL_STATE(2196)] = 116239, - [SMALL_STATE(2197)] = 116270, - [SMALL_STATE(2198)] = 116301, - [SMALL_STATE(2199)] = 116332, - [SMALL_STATE(2200)] = 116363, - [SMALL_STATE(2201)] = 116394, - [SMALL_STATE(2202)] = 116425, - [SMALL_STATE(2203)] = 116456, - [SMALL_STATE(2204)] = 116511, - [SMALL_STATE(2205)] = 116566, - [SMALL_STATE(2206)] = 116621, - [SMALL_STATE(2207)] = 116676, - [SMALL_STATE(2208)] = 116731, - [SMALL_STATE(2209)] = 116786, - [SMALL_STATE(2210)] = 116817, - [SMALL_STATE(2211)] = 116872, - [SMALL_STATE(2212)] = 116927, - [SMALL_STATE(2213)] = 116958, - [SMALL_STATE(2214)] = 117013, - [SMALL_STATE(2215)] = 117068, - [SMALL_STATE(2216)] = 117123, - [SMALL_STATE(2217)] = 117178, - [SMALL_STATE(2218)] = 117233, - [SMALL_STATE(2219)] = 117288, - [SMALL_STATE(2220)] = 117343, - [SMALL_STATE(2221)] = 117378, - [SMALL_STATE(2222)] = 117433, - [SMALL_STATE(2223)] = 117464, - [SMALL_STATE(2224)] = 117499, - [SMALL_STATE(2225)] = 117534, - [SMALL_STATE(2226)] = 117589, - [SMALL_STATE(2227)] = 117644, - [SMALL_STATE(2228)] = 117699, - [SMALL_STATE(2229)] = 117754, - [SMALL_STATE(2230)] = 117809, - [SMALL_STATE(2231)] = 117844, - [SMALL_STATE(2232)] = 117879, - [SMALL_STATE(2233)] = 117910, - [SMALL_STATE(2234)] = 117941, - [SMALL_STATE(2235)] = 117972, - [SMALL_STATE(2236)] = 118007, - [SMALL_STATE(2237)] = 118062, - [SMALL_STATE(2238)] = 118093, - [SMALL_STATE(2239)] = 118124, - [SMALL_STATE(2240)] = 118179, - [SMALL_STATE(2241)] = 118234, - [SMALL_STATE(2242)] = 118269, - [SMALL_STATE(2243)] = 118304, - [SMALL_STATE(2244)] = 118339, - [SMALL_STATE(2245)] = 118394, - [SMALL_STATE(2246)] = 118449, - [SMALL_STATE(2247)] = 118480, - [SMALL_STATE(2248)] = 118511, - [SMALL_STATE(2249)] = 118542, - [SMALL_STATE(2250)] = 118573, - [SMALL_STATE(2251)] = 118604, - [SMALL_STATE(2252)] = 118635, - [SMALL_STATE(2253)] = 118690, - [SMALL_STATE(2254)] = 118721, - [SMALL_STATE(2255)] = 118752, - [SMALL_STATE(2256)] = 118807, - [SMALL_STATE(2257)] = 118860, - [SMALL_STATE(2258)] = 118915, - [SMALL_STATE(2259)] = 118968, - [SMALL_STATE(2260)] = 119001, - [SMALL_STATE(2261)] = 119056, - [SMALL_STATE(2262)] = 119111, - [SMALL_STATE(2263)] = 119142, - [SMALL_STATE(2264)] = 119173, - [SMALL_STATE(2265)] = 119204, - [SMALL_STATE(2266)] = 119235, - [SMALL_STATE(2267)] = 119266, - [SMALL_STATE(2268)] = 119297, - [SMALL_STATE(2269)] = 119330, - [SMALL_STATE(2270)] = 119361, - [SMALL_STATE(2271)] = 119392, - [SMALL_STATE(2272)] = 119423, - [SMALL_STATE(2273)] = 119454, - [SMALL_STATE(2274)] = 119485, - [SMALL_STATE(2275)] = 119516, - [SMALL_STATE(2276)] = 119547, - [SMALL_STATE(2277)] = 119578, - [SMALL_STATE(2278)] = 119609, - [SMALL_STATE(2279)] = 119640, - [SMALL_STATE(2280)] = 119671, - [SMALL_STATE(2281)] = 119702, - [SMALL_STATE(2282)] = 119733, - [SMALL_STATE(2283)] = 119788, - [SMALL_STATE(2284)] = 119843, - [SMALL_STATE(2285)] = 119896, - [SMALL_STATE(2286)] = 119949, - [SMALL_STATE(2287)] = 119980, - [SMALL_STATE(2288)] = 120011, - [SMALL_STATE(2289)] = 120064, - [SMALL_STATE(2290)] = 120117, - [SMALL_STATE(2291)] = 120148, - [SMALL_STATE(2292)] = 120178, - [SMALL_STATE(2293)] = 120212, - [SMALL_STATE(2294)] = 120242, - [SMALL_STATE(2295)] = 120272, - [SMALL_STATE(2296)] = 120302, - [SMALL_STATE(2297)] = 120332, - [SMALL_STATE(2298)] = 120362, - [SMALL_STATE(2299)] = 120392, - [SMALL_STATE(2300)] = 120426, - [SMALL_STATE(2301)] = 120456, - [SMALL_STATE(2302)] = 120486, - [SMALL_STATE(2303)] = 120516, - [SMALL_STATE(2304)] = 120546, - [SMALL_STATE(2305)] = 120576, - [SMALL_STATE(2306)] = 120606, - [SMALL_STATE(2307)] = 120636, - [SMALL_STATE(2308)] = 120666, - [SMALL_STATE(2309)] = 120700, - [SMALL_STATE(2310)] = 120730, - [SMALL_STATE(2311)] = 120760, - [SMALL_STATE(2312)] = 120790, - [SMALL_STATE(2313)] = 120842, - [SMALL_STATE(2314)] = 120872, - [SMALL_STATE(2315)] = 120902, - [SMALL_STATE(2316)] = 120932, - [SMALL_STATE(2317)] = 120962, - [SMALL_STATE(2318)] = 120992, - [SMALL_STATE(2319)] = 121022, - [SMALL_STATE(2320)] = 121052, - [SMALL_STATE(2321)] = 121082, - [SMALL_STATE(2322)] = 121112, - [SMALL_STATE(2323)] = 121146, - [SMALL_STATE(2324)] = 121176, - [SMALL_STATE(2325)] = 121228, - [SMALL_STATE(2326)] = 121258, - [SMALL_STATE(2327)] = 121288, - [SMALL_STATE(2328)] = 121318, - [SMALL_STATE(2329)] = 121370, - [SMALL_STATE(2330)] = 121400, - [SMALL_STATE(2331)] = 121430, - [SMALL_STATE(2332)] = 121460, - [SMALL_STATE(2333)] = 121490, - [SMALL_STATE(2334)] = 121520, - [SMALL_STATE(2335)] = 121572, - [SMALL_STATE(2336)] = 121608, - [SMALL_STATE(2337)] = 121660, - [SMALL_STATE(2338)] = 121690, - [SMALL_STATE(2339)] = 121720, - [SMALL_STATE(2340)] = 121750, - [SMALL_STATE(2341)] = 121802, - [SMALL_STATE(2342)] = 121854, - [SMALL_STATE(2343)] = 121884, - [SMALL_STATE(2344)] = 121918, - [SMALL_STATE(2345)] = 121948, - [SMALL_STATE(2346)] = 121978, - [SMALL_STATE(2347)] = 122012, - [SMALL_STATE(2348)] = 122042, - [SMALL_STATE(2349)] = 122072, - [SMALL_STATE(2350)] = 122102, - [SMALL_STATE(2351)] = 122130, - [SMALL_STATE(2352)] = 122164, - [SMALL_STATE(2353)] = 122194, - [SMALL_STATE(2354)] = 122246, - [SMALL_STATE(2355)] = 122274, - [SMALL_STATE(2356)] = 122302, - [SMALL_STATE(2357)] = 122330, - [SMALL_STATE(2358)] = 122382, - [SMALL_STATE(2359)] = 122418, - [SMALL_STATE(2360)] = 122470, - [SMALL_STATE(2361)] = 122504, - [SMALL_STATE(2362)] = 122534, - [SMALL_STATE(2363)] = 122564, - [SMALL_STATE(2364)] = 122594, - [SMALL_STATE(2365)] = 122630, - [SMALL_STATE(2366)] = 122660, - [SMALL_STATE(2367)] = 122690, - [SMALL_STATE(2368)] = 122720, - [SMALL_STATE(2369)] = 122748, - [SMALL_STATE(2370)] = 122778, - [SMALL_STATE(2371)] = 122808, - [SMALL_STATE(2372)] = 122838, - [SMALL_STATE(2373)] = 122868, - [SMALL_STATE(2374)] = 122904, - [SMALL_STATE(2375)] = 122934, - [SMALL_STATE(2376)] = 122964, - [SMALL_STATE(2377)] = 122994, - [SMALL_STATE(2378)] = 123024, - [SMALL_STATE(2379)] = 123054, - [SMALL_STATE(2380)] = 123090, - [SMALL_STATE(2381)] = 123120, - [SMALL_STATE(2382)] = 123150, - [SMALL_STATE(2383)] = 123180, - [SMALL_STATE(2384)] = 123210, - [SMALL_STATE(2385)] = 123240, - [SMALL_STATE(2386)] = 123270, - [SMALL_STATE(2387)] = 123300, - [SMALL_STATE(2388)] = 123330, - [SMALL_STATE(2389)] = 123382, - [SMALL_STATE(2390)] = 123412, - [SMALL_STATE(2391)] = 123464, - [SMALL_STATE(2392)] = 123494, - [SMALL_STATE(2393)] = 123524, - [SMALL_STATE(2394)] = 123554, - [SMALL_STATE(2395)] = 123584, - [SMALL_STATE(2396)] = 123614, - [SMALL_STATE(2397)] = 123644, - [SMALL_STATE(2398)] = 123674, - [SMALL_STATE(2399)] = 123704, - [SMALL_STATE(2400)] = 123756, - [SMALL_STATE(2401)] = 123808, - [SMALL_STATE(2402)] = 123860, - [SMALL_STATE(2403)] = 123890, - [SMALL_STATE(2404)] = 123920, - [SMALL_STATE(2405)] = 123950, - [SMALL_STATE(2406)] = 123980, - [SMALL_STATE(2407)] = 124010, - [SMALL_STATE(2408)] = 124040, - [SMALL_STATE(2409)] = 124070, - [SMALL_STATE(2410)] = 124122, - [SMALL_STATE(2411)] = 124152, - [SMALL_STATE(2412)] = 124182, - [SMALL_STATE(2413)] = 124212, - [SMALL_STATE(2414)] = 124242, - [SMALL_STATE(2415)] = 124272, - [SMALL_STATE(2416)] = 124302, - [SMALL_STATE(2417)] = 124354, - [SMALL_STATE(2418)] = 124384, - [SMALL_STATE(2419)] = 124436, - [SMALL_STATE(2420)] = 124466, - [SMALL_STATE(2421)] = 124496, - [SMALL_STATE(2422)] = 124526, - [SMALL_STATE(2423)] = 124556, - [SMALL_STATE(2424)] = 124586, - [SMALL_STATE(2425)] = 124638, - [SMALL_STATE(2426)] = 124668, - [SMALL_STATE(2427)] = 124698, - [SMALL_STATE(2428)] = 124750, - [SMALL_STATE(2429)] = 124780, - [SMALL_STATE(2430)] = 124810, - [SMALL_STATE(2431)] = 124862, - [SMALL_STATE(2432)] = 124914, - [SMALL_STATE(2433)] = 124966, - [SMALL_STATE(2434)] = 125018, - [SMALL_STATE(2435)] = 125070, - [SMALL_STATE(2436)] = 125100, - [SMALL_STATE(2437)] = 125152, - [SMALL_STATE(2438)] = 125204, - [SMALL_STATE(2439)] = 125234, - [SMALL_STATE(2440)] = 125264, - [SMALL_STATE(2441)] = 125316, - [SMALL_STATE(2442)] = 125368, - [SMALL_STATE(2443)] = 125420, - [SMALL_STATE(2444)] = 125472, - [SMALL_STATE(2445)] = 125524, - [SMALL_STATE(2446)] = 125576, - [SMALL_STATE(2447)] = 125628, - [SMALL_STATE(2448)] = 125680, - [SMALL_STATE(2449)] = 125732, - [SMALL_STATE(2450)] = 125784, - [SMALL_STATE(2451)] = 125836, - [SMALL_STATE(2452)] = 125888, - [SMALL_STATE(2453)] = 125918, - [SMALL_STATE(2454)] = 125970, - [SMALL_STATE(2455)] = 126022, - [SMALL_STATE(2456)] = 126074, - [SMALL_STATE(2457)] = 126126, - [SMALL_STATE(2458)] = 126178, - [SMALL_STATE(2459)] = 126230, - [SMALL_STATE(2460)] = 126282, - [SMALL_STATE(2461)] = 126312, - [SMALL_STATE(2462)] = 126342, - [SMALL_STATE(2463)] = 126372, - [SMALL_STATE(2464)] = 126408, - [SMALL_STATE(2465)] = 126444, - [SMALL_STATE(2466)] = 126474, - [SMALL_STATE(2467)] = 126502, - [SMALL_STATE(2468)] = 126532, - [SMALL_STATE(2469)] = 126562, - [SMALL_STATE(2470)] = 126598, - [SMALL_STATE(2471)] = 126634, - [SMALL_STATE(2472)] = 126686, - [SMALL_STATE(2473)] = 126722, - [SMALL_STATE(2474)] = 126774, - [SMALL_STATE(2475)] = 126826, - [SMALL_STATE(2476)] = 126855, - [SMALL_STATE(2477)] = 126884, - [SMALL_STATE(2478)] = 126913, - [SMALL_STATE(2479)] = 126942, - [SMALL_STATE(2480)] = 126971, - [SMALL_STATE(2481)] = 127000, - [SMALL_STATE(2482)] = 127029, - [SMALL_STATE(2483)] = 127058, - [SMALL_STATE(2484)] = 127091, - [SMALL_STATE(2485)] = 127120, - [SMALL_STATE(2486)] = 127149, - [SMALL_STATE(2487)] = 127178, - [SMALL_STATE(2488)] = 127207, - [SMALL_STATE(2489)] = 127236, - [SMALL_STATE(2490)] = 127265, - [SMALL_STATE(2491)] = 127298, - [SMALL_STATE(2492)] = 127327, - [SMALL_STATE(2493)] = 127356, - [SMALL_STATE(2494)] = 127385, - [SMALL_STATE(2495)] = 127414, - [SMALL_STATE(2496)] = 127443, - [SMALL_STATE(2497)] = 127472, - [SMALL_STATE(2498)] = 127501, - [SMALL_STATE(2499)] = 127530, - [SMALL_STATE(2500)] = 127559, - [SMALL_STATE(2501)] = 127588, - [SMALL_STATE(2502)] = 127617, - [SMALL_STATE(2503)] = 127646, - [SMALL_STATE(2504)] = 127675, - [SMALL_STATE(2505)] = 127704, - [SMALL_STATE(2506)] = 127733, - [SMALL_STATE(2507)] = 127762, - [SMALL_STATE(2508)] = 127795, - [SMALL_STATE(2509)] = 127824, - [SMALL_STATE(2510)] = 127857, - [SMALL_STATE(2511)] = 127886, - [SMALL_STATE(2512)] = 127915, - [SMALL_STATE(2513)] = 127944, - [SMALL_STATE(2514)] = 127977, - [SMALL_STATE(2515)] = 128006, - [SMALL_STATE(2516)] = 128035, - [SMALL_STATE(2517)] = 128064, - [SMALL_STATE(2518)] = 128097, - [SMALL_STATE(2519)] = 128130, - [SMALL_STATE(2520)] = 128163, - [SMALL_STATE(2521)] = 128192, - [SMALL_STATE(2522)] = 128221, - [SMALL_STATE(2523)] = 128270, - [SMALL_STATE(2524)] = 128299, - [SMALL_STATE(2525)] = 128332, - [SMALL_STATE(2526)] = 128361, - [SMALL_STATE(2527)] = 128390, - [SMALL_STATE(2528)] = 128419, - [SMALL_STATE(2529)] = 128448, - [SMALL_STATE(2530)] = 128477, - [SMALL_STATE(2531)] = 128506, - [SMALL_STATE(2532)] = 128535, - [SMALL_STATE(2533)] = 128564, - [SMALL_STATE(2534)] = 128593, - [SMALL_STATE(2535)] = 128626, - [SMALL_STATE(2536)] = 128655, - [SMALL_STATE(2537)] = 128684, - [SMALL_STATE(2538)] = 128713, - [SMALL_STATE(2539)] = 128742, - [SMALL_STATE(2540)] = 128771, - [SMALL_STATE(2541)] = 128800, - [SMALL_STATE(2542)] = 128829, - [SMALL_STATE(2543)] = 128858, - [SMALL_STATE(2544)] = 128887, - [SMALL_STATE(2545)] = 128916, - [SMALL_STATE(2546)] = 128945, - [SMALL_STATE(2547)] = 128974, - [SMALL_STATE(2548)] = 129003, - [SMALL_STATE(2549)] = 129032, - [SMALL_STATE(2550)] = 129061, - [SMALL_STATE(2551)] = 129090, - [SMALL_STATE(2552)] = 129119, - [SMALL_STATE(2553)] = 129148, - [SMALL_STATE(2554)] = 129177, - [SMALL_STATE(2555)] = 129206, - [SMALL_STATE(2556)] = 129235, - [SMALL_STATE(2557)] = 129264, - [SMALL_STATE(2558)] = 129293, - [SMALL_STATE(2559)] = 129322, - [SMALL_STATE(2560)] = 129351, - [SMALL_STATE(2561)] = 129380, - [SMALL_STATE(2562)] = 129409, - [SMALL_STATE(2563)] = 129438, - [SMALL_STATE(2564)] = 129467, - [SMALL_STATE(2565)] = 129516, - [SMALL_STATE(2566)] = 129545, - [SMALL_STATE(2567)] = 129574, - [SMALL_STATE(2568)] = 129603, - [SMALL_STATE(2569)] = 129632, - [SMALL_STATE(2570)] = 129660, - [SMALL_STATE(2571)] = 129688, - [SMALL_STATE(2572)] = 129732, - [SMALL_STATE(2573)] = 129776, - [SMALL_STATE(2574)] = 129804, - [SMALL_STATE(2575)] = 129832, - [SMALL_STATE(2576)] = 129860, - [SMALL_STATE(2577)] = 129888, - [SMALL_STATE(2578)] = 129932, - [SMALL_STATE(2579)] = 129960, - [SMALL_STATE(2580)] = 129988, - [SMALL_STATE(2581)] = 130032, - [SMALL_STATE(2582)] = 130076, - [SMALL_STATE(2583)] = 130104, - [SMALL_STATE(2584)] = 130132, - [SMALL_STATE(2585)] = 130160, - [SMALL_STATE(2586)] = 130188, - [SMALL_STATE(2587)] = 130216, - [SMALL_STATE(2588)] = 130244, - [SMALL_STATE(2589)] = 130272, - [SMALL_STATE(2590)] = 130300, - [SMALL_STATE(2591)] = 130328, - [SMALL_STATE(2592)] = 130356, - [SMALL_STATE(2593)] = 130384, - [SMALL_STATE(2594)] = 130412, - [SMALL_STATE(2595)] = 130440, - [SMALL_STATE(2596)] = 130468, - [SMALL_STATE(2597)] = 130496, - [SMALL_STATE(2598)] = 130524, - [SMALL_STATE(2599)] = 130552, - [SMALL_STATE(2600)] = 130596, - [SMALL_STATE(2601)] = 130624, - [SMALL_STATE(2602)] = 130668, - [SMALL_STATE(2603)] = 130712, - [SMALL_STATE(2604)] = 130756, - [SMALL_STATE(2605)] = 130800, - [SMALL_STATE(2606)] = 130844, - [SMALL_STATE(2607)] = 130888, - [SMALL_STATE(2608)] = 130932, - [SMALL_STATE(2609)] = 130976, - [SMALL_STATE(2610)] = 131020, - [SMALL_STATE(2611)] = 131064, - [SMALL_STATE(2612)] = 131108, - [SMALL_STATE(2613)] = 131152, - [SMALL_STATE(2614)] = 131196, - [SMALL_STATE(2615)] = 131240, - [SMALL_STATE(2616)] = 131284, - [SMALL_STATE(2617)] = 131328, - [SMALL_STATE(2618)] = 131372, - [SMALL_STATE(2619)] = 131416, - [SMALL_STATE(2620)] = 131460, - [SMALL_STATE(2621)] = 131504, - [SMALL_STATE(2622)] = 131548, - [SMALL_STATE(2623)] = 131592, - [SMALL_STATE(2624)] = 131636, - [SMALL_STATE(2625)] = 131680, - [SMALL_STATE(2626)] = 131724, - [SMALL_STATE(2627)] = 131768, - [SMALL_STATE(2628)] = 131804, - [SMALL_STATE(2629)] = 131832, - [SMALL_STATE(2630)] = 131876, - [SMALL_STATE(2631)] = 131904, - [SMALL_STATE(2632)] = 131932, - [SMALL_STATE(2633)] = 131976, - [SMALL_STATE(2634)] = 132020, - [SMALL_STATE(2635)] = 132048, - [SMALL_STATE(2636)] = 132092, - [SMALL_STATE(2637)] = 132136, - [SMALL_STATE(2638)] = 132180, - [SMALL_STATE(2639)] = 132224, - [SMALL_STATE(2640)] = 132268, - [SMALL_STATE(2641)] = 132312, - [SMALL_STATE(2642)] = 132356, - [SMALL_STATE(2643)] = 132400, - [SMALL_STATE(2644)] = 132428, - [SMALL_STATE(2645)] = 132472, - [SMALL_STATE(2646)] = 132500, - [SMALL_STATE(2647)] = 132544, - [SMALL_STATE(2648)] = 132588, - [SMALL_STATE(2649)] = 132632, - [SMALL_STATE(2650)] = 132676, - [SMALL_STATE(2651)] = 132720, - [SMALL_STATE(2652)] = 132764, - [SMALL_STATE(2653)] = 132808, - [SMALL_STATE(2654)] = 132852, - [SMALL_STATE(2655)] = 132896, - [SMALL_STATE(2656)] = 132940, - [SMALL_STATE(2657)] = 132984, - [SMALL_STATE(2658)] = 133028, - [SMALL_STATE(2659)] = 133072, - [SMALL_STATE(2660)] = 133116, - [SMALL_STATE(2661)] = 133160, - [SMALL_STATE(2662)] = 133204, - [SMALL_STATE(2663)] = 133248, - [SMALL_STATE(2664)] = 133292, - [SMALL_STATE(2665)] = 133320, - [SMALL_STATE(2666)] = 133355, - [SMALL_STATE(2667)] = 133390, - [SMALL_STATE(2668)] = 133425, - [SMALL_STATE(2669)] = 133456, - [SMALL_STATE(2670)] = 133487, - [SMALL_STATE(2671)] = 133514, - [SMALL_STATE(2672)] = 133549, - [SMALL_STATE(2673)] = 133584, - [SMALL_STATE(2674)] = 133619, - [SMALL_STATE(2675)] = 133654, - [SMALL_STATE(2676)] = 133689, - [SMALL_STATE(2677)] = 133724, - [SMALL_STATE(2678)] = 133759, - [SMALL_STATE(2679)] = 133786, - [SMALL_STATE(2680)] = 133821, - [SMALL_STATE(2681)] = 133856, - [SMALL_STATE(2682)] = 133891, - [SMALL_STATE(2683)] = 133926, - [SMALL_STATE(2684)] = 133961, - [SMALL_STATE(2685)] = 133988, - [SMALL_STATE(2686)] = 134023, - [SMALL_STATE(2687)] = 134058, - [SMALL_STATE(2688)] = 134085, - [SMALL_STATE(2689)] = 134112, - [SMALL_STATE(2690)] = 134151, - [SMALL_STATE(2691)] = 134186, - [SMALL_STATE(2692)] = 134221, - [SMALL_STATE(2693)] = 134256, - [SMALL_STATE(2694)] = 134291, - [SMALL_STATE(2695)] = 134326, - [SMALL_STATE(2696)] = 134357, - [SMALL_STATE(2697)] = 134384, - [SMALL_STATE(2698)] = 134411, - [SMALL_STATE(2699)] = 134438, - [SMALL_STATE(2700)] = 134473, - [SMALL_STATE(2701)] = 134508, - [SMALL_STATE(2702)] = 134543, - [SMALL_STATE(2703)] = 134570, - [SMALL_STATE(2704)] = 134605, - [SMALL_STATE(2705)] = 134640, - [SMALL_STATE(2706)] = 134675, - [SMALL_STATE(2707)] = 134702, - [SMALL_STATE(2708)] = 134737, - [SMALL_STATE(2709)] = 134764, - [SMALL_STATE(2710)] = 134799, - [SMALL_STATE(2711)] = 134834, - [SMALL_STATE(2712)] = 134869, - [SMALL_STATE(2713)] = 134904, - [SMALL_STATE(2714)] = 134931, - [SMALL_STATE(2715)] = 134962, - [SMALL_STATE(2716)] = 134992, - [SMALL_STATE(2717)] = 135018, - [SMALL_STATE(2718)] = 135044, - [SMALL_STATE(2719)] = 135070, - [SMALL_STATE(2720)] = 135096, - [SMALL_STATE(2721)] = 135122, - [SMALL_STATE(2722)] = 135148, - [SMALL_STATE(2723)] = 135174, - [SMALL_STATE(2724)] = 135200, - [SMALL_STATE(2725)] = 135226, - [SMALL_STATE(2726)] = 135252, - [SMALL_STATE(2727)] = 135278, - [SMALL_STATE(2728)] = 135304, - [SMALL_STATE(2729)] = 135330, - [SMALL_STATE(2730)] = 135356, - [SMALL_STATE(2731)] = 135382, - [SMALL_STATE(2732)] = 135408, - [SMALL_STATE(2733)] = 135434, - [SMALL_STATE(2734)] = 135460, - [SMALL_STATE(2735)] = 135486, - [SMALL_STATE(2736)] = 135512, - [SMALL_STATE(2737)] = 135542, - [SMALL_STATE(2738)] = 135568, - [SMALL_STATE(2739)] = 135594, - [SMALL_STATE(2740)] = 135620, - [SMALL_STATE(2741)] = 135646, - [SMALL_STATE(2742)] = 135672, - [SMALL_STATE(2743)] = 135698, - [SMALL_STATE(2744)] = 135724, - [SMALL_STATE(2745)] = 135750, - [SMALL_STATE(2746)] = 135776, - [SMALL_STATE(2747)] = 135802, - [SMALL_STATE(2748)] = 135828, - [SMALL_STATE(2749)] = 135854, - [SMALL_STATE(2750)] = 135880, - [SMALL_STATE(2751)] = 135916, - [SMALL_STATE(2752)] = 135944, - [SMALL_STATE(2753)] = 135980, - [SMALL_STATE(2754)] = 136008, - [SMALL_STATE(2755)] = 136036, - [SMALL_STATE(2756)] = 136064, - [SMALL_STATE(2757)] = 136087, - [SMALL_STATE(2758)] = 136110, - [SMALL_STATE(2759)] = 136133, - [SMALL_STATE(2760)] = 136156, - [SMALL_STATE(2761)] = 136179, - [SMALL_STATE(2762)] = 136206, - [SMALL_STATE(2763)] = 136229, - [SMALL_STATE(2764)] = 136252, - [SMALL_STATE(2765)] = 136275, - [SMALL_STATE(2766)] = 136298, - [SMALL_STATE(2767)] = 136321, - [SMALL_STATE(2768)] = 136344, - [SMALL_STATE(2769)] = 136367, - [SMALL_STATE(2770)] = 136390, - [SMALL_STATE(2771)] = 136413, - [SMALL_STATE(2772)] = 136436, - [SMALL_STATE(2773)] = 136459, - [SMALL_STATE(2774)] = 136482, - [SMALL_STATE(2775)] = 136505, - [SMALL_STATE(2776)] = 136528, - [SMALL_STATE(2777)] = 136551, - [SMALL_STATE(2778)] = 136574, - [SMALL_STATE(2779)] = 136597, - [SMALL_STATE(2780)] = 136620, - [SMALL_STATE(2781)] = 136643, - [SMALL_STATE(2782)] = 136666, - [SMALL_STATE(2783)] = 136689, - [SMALL_STATE(2784)] = 136712, - [SMALL_STATE(2785)] = 136739, - [SMALL_STATE(2786)] = 136762, - [SMALL_STATE(2787)] = 136797, - [SMALL_STATE(2788)] = 136820, - [SMALL_STATE(2789)] = 136843, - [SMALL_STATE(2790)] = 136878, - [SMALL_STATE(2791)] = 136901, - [SMALL_STATE(2792)] = 136924, - [SMALL_STATE(2793)] = 136947, - [SMALL_STATE(2794)] = 136979, - [SMALL_STATE(2795)] = 137011, - [SMALL_STATE(2796)] = 137043, - [SMALL_STATE(2797)] = 137075, - [SMALL_STATE(2798)] = 137107, - [SMALL_STATE(2799)] = 137139, - [SMALL_STATE(2800)] = 137171, - [SMALL_STATE(2801)] = 137203, - [SMALL_STATE(2802)] = 137235, - [SMALL_STATE(2803)] = 137267, - [SMALL_STATE(2804)] = 137299, - [SMALL_STATE(2805)] = 137331, - [SMALL_STATE(2806)] = 137363, - [SMALL_STATE(2807)] = 137395, - [SMALL_STATE(2808)] = 137427, - [SMALL_STATE(2809)] = 137451, - [SMALL_STATE(2810)] = 137483, - [SMALL_STATE(2811)] = 137515, - [SMALL_STATE(2812)] = 137547, - [SMALL_STATE(2813)] = 137579, - [SMALL_STATE(2814)] = 137603, - [SMALL_STATE(2815)] = 137635, - [SMALL_STATE(2816)] = 137667, - [SMALL_STATE(2817)] = 137699, - [SMALL_STATE(2818)] = 137731, - [SMALL_STATE(2819)] = 137763, - [SMALL_STATE(2820)] = 137795, - [SMALL_STATE(2821)] = 137827, - [SMALL_STATE(2822)] = 137859, - [SMALL_STATE(2823)] = 137891, - [SMALL_STATE(2824)] = 137923, - [SMALL_STATE(2825)] = 137955, - [SMALL_STATE(2826)] = 137987, - [SMALL_STATE(2827)] = 138019, - [SMALL_STATE(2828)] = 138043, - [SMALL_STATE(2829)] = 138075, - [SMALL_STATE(2830)] = 138107, - [SMALL_STATE(2831)] = 138139, - [SMALL_STATE(2832)] = 138163, - [SMALL_STATE(2833)] = 138195, - [SMALL_STATE(2834)] = 138227, - [SMALL_STATE(2835)] = 138259, - [SMALL_STATE(2836)] = 138291, - [SMALL_STATE(2837)] = 138323, - [SMALL_STATE(2838)] = 138355, - [SMALL_STATE(2839)] = 138387, - [SMALL_STATE(2840)] = 138419, - [SMALL_STATE(2841)] = 138443, - [SMALL_STATE(2842)] = 138475, - [SMALL_STATE(2843)] = 138507, - [SMALL_STATE(2844)] = 138539, - [SMALL_STATE(2845)] = 138571, - [SMALL_STATE(2846)] = 138603, - [SMALL_STATE(2847)] = 138635, - [SMALL_STATE(2848)] = 138667, - [SMALL_STATE(2849)] = 138699, - [SMALL_STATE(2850)] = 138731, - [SMALL_STATE(2851)] = 138755, - [SMALL_STATE(2852)] = 138779, - [SMALL_STATE(2853)] = 138811, - [SMALL_STATE(2854)] = 138843, - [SMALL_STATE(2855)] = 138875, - [SMALL_STATE(2856)] = 138907, - [SMALL_STATE(2857)] = 138939, - [SMALL_STATE(2858)] = 138963, - [SMALL_STATE(2859)] = 138995, - [SMALL_STATE(2860)] = 139027, - [SMALL_STATE(2861)] = 139059, - [SMALL_STATE(2862)] = 139086, - [SMALL_STATE(2863)] = 139113, - [SMALL_STATE(2864)] = 139140, - [SMALL_STATE(2865)] = 139167, - [SMALL_STATE(2866)] = 139194, - [SMALL_STATE(2867)] = 139221, - [SMALL_STATE(2868)] = 139248, - [SMALL_STATE(2869)] = 139275, - [SMALL_STATE(2870)] = 139302, - [SMALL_STATE(2871)] = 139323, - [SMALL_STATE(2872)] = 139350, - [SMALL_STATE(2873)] = 139371, - [SMALL_STATE(2874)] = 139392, - [SMALL_STATE(2875)] = 139413, - [SMALL_STATE(2876)] = 139440, - [SMALL_STATE(2877)] = 139461, - [SMALL_STATE(2878)] = 139482, - [SMALL_STATE(2879)] = 139509, - [SMALL_STATE(2880)] = 139536, - [SMALL_STATE(2881)] = 139563, - [SMALL_STATE(2882)] = 139590, - [SMALL_STATE(2883)] = 139617, - [SMALL_STATE(2884)] = 139644, - [SMALL_STATE(2885)] = 139671, - [SMALL_STATE(2886)] = 139698, - [SMALL_STATE(2887)] = 139725, - [SMALL_STATE(2888)] = 139752, - [SMALL_STATE(2889)] = 139779, - [SMALL_STATE(2890)] = 139806, - [SMALL_STATE(2891)] = 139833, - [SMALL_STATE(2892)] = 139854, - [SMALL_STATE(2893)] = 139881, - [SMALL_STATE(2894)] = 139902, - [SMALL_STATE(2895)] = 139923, - [SMALL_STATE(2896)] = 139944, - [SMALL_STATE(2897)] = 139971, - [SMALL_STATE(2898)] = 139998, - [SMALL_STATE(2899)] = 140025, - [SMALL_STATE(2900)] = 140052, - [SMALL_STATE(2901)] = 140079, - [SMALL_STATE(2902)] = 140106, - [SMALL_STATE(2903)] = 140133, - [SMALL_STATE(2904)] = 140160, - [SMALL_STATE(2905)] = 140187, - [SMALL_STATE(2906)] = 140214, - [SMALL_STATE(2907)] = 140241, - [SMALL_STATE(2908)] = 140268, - [SMALL_STATE(2909)] = 140295, - [SMALL_STATE(2910)] = 140316, - [SMALL_STATE(2911)] = 140337, - [SMALL_STATE(2912)] = 140358, - [SMALL_STATE(2913)] = 140385, - [SMALL_STATE(2914)] = 140412, - [SMALL_STATE(2915)] = 140439, - [SMALL_STATE(2916)] = 140460, - [SMALL_STATE(2917)] = 140487, - [SMALL_STATE(2918)] = 140514, - [SMALL_STATE(2919)] = 140541, - [SMALL_STATE(2920)] = 140562, - [SMALL_STATE(2921)] = 140583, - [SMALL_STATE(2922)] = 140610, - [SMALL_STATE(2923)] = 140631, - [SMALL_STATE(2924)] = 140658, - [SMALL_STATE(2925)] = 140679, - [SMALL_STATE(2926)] = 140706, - [SMALL_STATE(2927)] = 140727, - [SMALL_STATE(2928)] = 140748, - [SMALL_STATE(2929)] = 140775, - [SMALL_STATE(2930)] = 140802, - [SMALL_STATE(2931)] = 140823, - [SMALL_STATE(2932)] = 140850, - [SMALL_STATE(2933)] = 140877, - [SMALL_STATE(2934)] = 140904, - [SMALL_STATE(2935)] = 140931, - [SMALL_STATE(2936)] = 140958, - [SMALL_STATE(2937)] = 140985, - [SMALL_STATE(2938)] = 141006, - [SMALL_STATE(2939)] = 141033, - [SMALL_STATE(2940)] = 141060, - [SMALL_STATE(2941)] = 141087, - [SMALL_STATE(2942)] = 141115, - [SMALL_STATE(2943)] = 141143, - [SMALL_STATE(2944)] = 141167, - [SMALL_STATE(2945)] = 141195, - [SMALL_STATE(2946)] = 141223, - [SMALL_STATE(2947)] = 141251, - [SMALL_STATE(2948)] = 141279, - [SMALL_STATE(2949)] = 141307, - [SMALL_STATE(2950)] = 141335, - [SMALL_STATE(2951)] = 141363, - [SMALL_STATE(2952)] = 141391, - [SMALL_STATE(2953)] = 141419, - [SMALL_STATE(2954)] = 141447, - [SMALL_STATE(2955)] = 141475, - [SMALL_STATE(2956)] = 141503, - [SMALL_STATE(2957)] = 141531, - [SMALL_STATE(2958)] = 141559, - [SMALL_STATE(2959)] = 141587, - [SMALL_STATE(2960)] = 141615, - [SMALL_STATE(2961)] = 141643, - [SMALL_STATE(2962)] = 141671, - [SMALL_STATE(2963)] = 141699, - [SMALL_STATE(2964)] = 141727, - [SMALL_STATE(2965)] = 141755, - [SMALL_STATE(2966)] = 141783, - [SMALL_STATE(2967)] = 141811, - [SMALL_STATE(2968)] = 141839, - [SMALL_STATE(2969)] = 141867, - [SMALL_STATE(2970)] = 141895, - [SMALL_STATE(2971)] = 141923, - [SMALL_STATE(2972)] = 141951, - [SMALL_STATE(2973)] = 141979, - [SMALL_STATE(2974)] = 142012, - [SMALL_STATE(2975)] = 142045, - [SMALL_STATE(2976)] = 142078, - [SMALL_STATE(2977)] = 142111, - [SMALL_STATE(2978)] = 142144, - [SMALL_STATE(2979)] = 142177, - [SMALL_STATE(2980)] = 142210, - [SMALL_STATE(2981)] = 142243, - [SMALL_STATE(2982)] = 142276, - [SMALL_STATE(2983)] = 142309, - [SMALL_STATE(2984)] = 142342, - [SMALL_STATE(2985)] = 142375, - [SMALL_STATE(2986)] = 142408, - [SMALL_STATE(2987)] = 142441, - [SMALL_STATE(2988)] = 142474, - [SMALL_STATE(2989)] = 142507, - [SMALL_STATE(2990)] = 142540, - [SMALL_STATE(2991)] = 142573, - [SMALL_STATE(2992)] = 142606, - [SMALL_STATE(2993)] = 142639, - [SMALL_STATE(2994)] = 142672, - [SMALL_STATE(2995)] = 142705, - [SMALL_STATE(2996)] = 142738, - [SMALL_STATE(2997)] = 142771, - [SMALL_STATE(2998)] = 142804, - [SMALL_STATE(2999)] = 142837, - [SMALL_STATE(3000)] = 142868, - [SMALL_STATE(3001)] = 142901, - [SMALL_STATE(3002)] = 142934, - [SMALL_STATE(3003)] = 142967, - [SMALL_STATE(3004)] = 143000, - [SMALL_STATE(3005)] = 143031, - [SMALL_STATE(3006)] = 143064, - [SMALL_STATE(3007)] = 143097, - [SMALL_STATE(3008)] = 143130, - [SMALL_STATE(3009)] = 143163, - [SMALL_STATE(3010)] = 143196, - [SMALL_STATE(3011)] = 143227, - [SMALL_STATE(3012)] = 143260, - [SMALL_STATE(3013)] = 143291, - [SMALL_STATE(3014)] = 143324, - [SMALL_STATE(3015)] = 143357, - [SMALL_STATE(3016)] = 143390, - [SMALL_STATE(3017)] = 143423, - [SMALL_STATE(3018)] = 143456, - [SMALL_STATE(3019)] = 143489, - [SMALL_STATE(3020)] = 143522, - [SMALL_STATE(3021)] = 143553, - [SMALL_STATE(3022)] = 143586, - [SMALL_STATE(3023)] = 143619, - [SMALL_STATE(3024)] = 143652, - [SMALL_STATE(3025)] = 143685, - [SMALL_STATE(3026)] = 143708, - [SMALL_STATE(3027)] = 143741, - [SMALL_STATE(3028)] = 143774, - [SMALL_STATE(3029)] = 143805, - [SMALL_STATE(3030)] = 143838, - [SMALL_STATE(3031)] = 143871, - [SMALL_STATE(3032)] = 143902, - [SMALL_STATE(3033)] = 143935, - [SMALL_STATE(3034)] = 143968, - [SMALL_STATE(3035)] = 144001, - [SMALL_STATE(3036)] = 144034, - [SMALL_STATE(3037)] = 144067, - [SMALL_STATE(3038)] = 144100, - [SMALL_STATE(3039)] = 144133, - [SMALL_STATE(3040)] = 144166, - [SMALL_STATE(3041)] = 144182, - [SMALL_STATE(3042)] = 144198, - [SMALL_STATE(3043)] = 144214, - [SMALL_STATE(3044)] = 144230, - [SMALL_STATE(3045)] = 144246, - [SMALL_STATE(3046)] = 144262, - [SMALL_STATE(3047)] = 144278, - [SMALL_STATE(3048)] = 144294, - [SMALL_STATE(3049)] = 144310, - [SMALL_STATE(3050)] = 144334, - [SMALL_STATE(3051)] = 144350, - [SMALL_STATE(3052)] = 144366, - [SMALL_STATE(3053)] = 144382, - [SMALL_STATE(3054)] = 144406, - [SMALL_STATE(3055)] = 144430, - [SMALL_STATE(3056)] = 144446, - [SMALL_STATE(3057)] = 144462, - [SMALL_STATE(3058)] = 144478, - [SMALL_STATE(3059)] = 144494, - [SMALL_STATE(3060)] = 144518, - [SMALL_STATE(3061)] = 144542, - [SMALL_STATE(3062)] = 144566, - [SMALL_STATE(3063)] = 144582, - [SMALL_STATE(3064)] = 144598, - [SMALL_STATE(3065)] = 144622, - [SMALL_STATE(3066)] = 144638, - [SMALL_STATE(3067)] = 144654, - [SMALL_STATE(3068)] = 144678, - [SMALL_STATE(3069)] = 144698, - [SMALL_STATE(3070)] = 144714, - [SMALL_STATE(3071)] = 144738, - [SMALL_STATE(3072)] = 144754, - [SMALL_STATE(3073)] = 144770, - [SMALL_STATE(3074)] = 144786, - [SMALL_STATE(3075)] = 144802, - [SMALL_STATE(3076)] = 144818, - [SMALL_STATE(3077)] = 144834, - [SMALL_STATE(3078)] = 144850, - [SMALL_STATE(3079)] = 144866, - [SMALL_STATE(3080)] = 144882, - [SMALL_STATE(3081)] = 144898, - [SMALL_STATE(3082)] = 144914, - [SMALL_STATE(3083)] = 144930, - [SMALL_STATE(3084)] = 144945, - [SMALL_STATE(3085)] = 144964, - [SMALL_STATE(3086)] = 144979, - [SMALL_STATE(3087)] = 144996, - [SMALL_STATE(3088)] = 145017, - [SMALL_STATE(3089)] = 145032, - [SMALL_STATE(3090)] = 145045, - [SMALL_STATE(3091)] = 145058, - [SMALL_STATE(3092)] = 145073, - [SMALL_STATE(3093)] = 145090, - [SMALL_STATE(3094)] = 145105, - [SMALL_STATE(3095)] = 145120, - [SMALL_STATE(3096)] = 145135, - [SMALL_STATE(3097)] = 145150, - [SMALL_STATE(3098)] = 145165, - [SMALL_STATE(3099)] = 145180, - [SMALL_STATE(3100)] = 145195, - [SMALL_STATE(3101)] = 145210, - [SMALL_STATE(3102)] = 145225, - [SMALL_STATE(3103)] = 145240, - [SMALL_STATE(3104)] = 145261, - [SMALL_STATE(3105)] = 145276, - [SMALL_STATE(3106)] = 145291, - [SMALL_STATE(3107)] = 145306, - [SMALL_STATE(3108)] = 145321, - [SMALL_STATE(3109)] = 145336, - [SMALL_STATE(3110)] = 145351, - [SMALL_STATE(3111)] = 145366, - [SMALL_STATE(3112)] = 145381, - [SMALL_STATE(3113)] = 145396, - [SMALL_STATE(3114)] = 145411, - [SMALL_STATE(3115)] = 145426, - [SMALL_STATE(3116)] = 145441, - [SMALL_STATE(3117)] = 145456, - [SMALL_STATE(3118)] = 145471, - [SMALL_STATE(3119)] = 145490, - [SMALL_STATE(3120)] = 145509, - [SMALL_STATE(3121)] = 145530, - [SMALL_STATE(3122)] = 145551, - [SMALL_STATE(3123)] = 145572, - [SMALL_STATE(3124)] = 145593, - [SMALL_STATE(3125)] = 145608, - [SMALL_STATE(3126)] = 145622, - [SMALL_STATE(3127)] = 145636, - [SMALL_STATE(3128)] = 145650, - [SMALL_STATE(3129)] = 145664, - [SMALL_STATE(3130)] = 145684, - [SMALL_STATE(3131)] = 145704, - [SMALL_STATE(3132)] = 145718, - [SMALL_STATE(3133)] = 145738, - [SMALL_STATE(3134)] = 145758, - [SMALL_STATE(3135)] = 145772, - [SMALL_STATE(3136)] = 145786, - [SMALL_STATE(3137)] = 145800, - [SMALL_STATE(3138)] = 145814, - [SMALL_STATE(3139)] = 145828, - [SMALL_STATE(3140)] = 145842, - [SMALL_STATE(3141)] = 145856, - [SMALL_STATE(3142)] = 145870, - [SMALL_STATE(3143)] = 145884, - [SMALL_STATE(3144)] = 145900, - [SMALL_STATE(3145)] = 145914, - [SMALL_STATE(3146)] = 145928, - [SMALL_STATE(3147)] = 145942, - [SMALL_STATE(3148)] = 145956, - [SMALL_STATE(3149)] = 145970, - [SMALL_STATE(3150)] = 145984, - [SMALL_STATE(3151)] = 146000, - [SMALL_STATE(3152)] = 146014, - [SMALL_STATE(3153)] = 146028, - [SMALL_STATE(3154)] = 146042, - [SMALL_STATE(3155)] = 146056, - [SMALL_STATE(3156)] = 146070, - [SMALL_STATE(3157)] = 146084, - [SMALL_STATE(3158)] = 146098, - [SMALL_STATE(3159)] = 146112, - [SMALL_STATE(3160)] = 146126, - [SMALL_STATE(3161)] = 146146, - [SMALL_STATE(3162)] = 146160, - [SMALL_STATE(3163)] = 146174, - [SMALL_STATE(3164)] = 146188, - [SMALL_STATE(3165)] = 146202, - [SMALL_STATE(3166)] = 146216, - [SMALL_STATE(3167)] = 146230, - [SMALL_STATE(3168)] = 146250, - [SMALL_STATE(3169)] = 146264, - [SMALL_STATE(3170)] = 146279, - [SMALL_STATE(3171)] = 146294, - [SMALL_STATE(3172)] = 146309, - [SMALL_STATE(3173)] = 146324, - [SMALL_STATE(3174)] = 146339, - [SMALL_STATE(3175)] = 146354, - [SMALL_STATE(3176)] = 146371, - [SMALL_STATE(3177)] = 146388, - [SMALL_STATE(3178)] = 146407, - [SMALL_STATE(3179)] = 146424, - [SMALL_STATE(3180)] = 146437, - [SMALL_STATE(3181)] = 146450, - [SMALL_STATE(3182)] = 146467, - [SMALL_STATE(3183)] = 146486, - [SMALL_STATE(3184)] = 146501, - [SMALL_STATE(3185)] = 146518, - [SMALL_STATE(3186)] = 146535, - [SMALL_STATE(3187)] = 146552, - [SMALL_STATE(3188)] = 146569, - [SMALL_STATE(3189)] = 146586, - [SMALL_STATE(3190)] = 146603, - [SMALL_STATE(3191)] = 146620, - [SMALL_STATE(3192)] = 146635, - [SMALL_STATE(3193)] = 146652, - [SMALL_STATE(3194)] = 146667, - [SMALL_STATE(3195)] = 146684, - [SMALL_STATE(3196)] = 146701, - [SMALL_STATE(3197)] = 146718, - [SMALL_STATE(3198)] = 146731, - [SMALL_STATE(3199)] = 146748, - [SMALL_STATE(3200)] = 146765, - [SMALL_STATE(3201)] = 146782, - [SMALL_STATE(3202)] = 146799, - [SMALL_STATE(3203)] = 146814, - [SMALL_STATE(3204)] = 146827, - [SMALL_STATE(3205)] = 146846, - [SMALL_STATE(3206)] = 146861, - [SMALL_STATE(3207)] = 146876, - [SMALL_STATE(3208)] = 146893, - [SMALL_STATE(3209)] = 146910, - [SMALL_STATE(3210)] = 146925, - [SMALL_STATE(3211)] = 146942, - [SMALL_STATE(3212)] = 146959, - [SMALL_STATE(3213)] = 146974, - [SMALL_STATE(3214)] = 146989, - [SMALL_STATE(3215)] = 147008, - [SMALL_STATE(3216)] = 147023, - [SMALL_STATE(3217)] = 147038, - [SMALL_STATE(3218)] = 147055, - [SMALL_STATE(3219)] = 147069, - [SMALL_STATE(3220)] = 147081, - [SMALL_STATE(3221)] = 147093, - [SMALL_STATE(3222)] = 147105, - [SMALL_STATE(3223)] = 147119, - [SMALL_STATE(3224)] = 147133, - [SMALL_STATE(3225)] = 147147, - [SMALL_STATE(3226)] = 147161, - [SMALL_STATE(3227)] = 147175, - [SMALL_STATE(3228)] = 147191, - [SMALL_STATE(3229)] = 147205, - [SMALL_STATE(3230)] = 147219, - [SMALL_STATE(3231)] = 147233, - [SMALL_STATE(3232)] = 147249, - [SMALL_STATE(3233)] = 147263, - [SMALL_STATE(3234)] = 147275, - [SMALL_STATE(3235)] = 147289, - [SMALL_STATE(3236)] = 147303, - [SMALL_STATE(3237)] = 147317, - [SMALL_STATE(3238)] = 147331, - [SMALL_STATE(3239)] = 147345, - [SMALL_STATE(3240)] = 147359, - [SMALL_STATE(3241)] = 147373, - [SMALL_STATE(3242)] = 147387, - [SMALL_STATE(3243)] = 147401, - [SMALL_STATE(3244)] = 147413, - [SMALL_STATE(3245)] = 147427, - [SMALL_STATE(3246)] = 147439, - [SMALL_STATE(3247)] = 147453, - [SMALL_STATE(3248)] = 147467, - [SMALL_STATE(3249)] = 147481, - [SMALL_STATE(3250)] = 147497, - [SMALL_STATE(3251)] = 147511, - [SMALL_STATE(3252)] = 147525, - [SMALL_STATE(3253)] = 147541, - [SMALL_STATE(3254)] = 147555, - [SMALL_STATE(3255)] = 147569, - [SMALL_STATE(3256)] = 147583, - [SMALL_STATE(3257)] = 147597, - [SMALL_STATE(3258)] = 147609, - [SMALL_STATE(3259)] = 147625, - [SMALL_STATE(3260)] = 147641, - [SMALL_STATE(3261)] = 147655, - [SMALL_STATE(3262)] = 147667, - [SMALL_STATE(3263)] = 147680, - [SMALL_STATE(3264)] = 147693, - [SMALL_STATE(3265)] = 147706, - [SMALL_STATE(3266)] = 147719, - [SMALL_STATE(3267)] = 147732, - [SMALL_STATE(3268)] = 147745, - [SMALL_STATE(3269)] = 147758, - [SMALL_STATE(3270)] = 147771, - [SMALL_STATE(3271)] = 147784, - [SMALL_STATE(3272)] = 147797, - [SMALL_STATE(3273)] = 147810, - [SMALL_STATE(3274)] = 147823, - [SMALL_STATE(3275)] = 147836, - [SMALL_STATE(3276)] = 147849, - [SMALL_STATE(3277)] = 147862, - [SMALL_STATE(3278)] = 147875, - [SMALL_STATE(3279)] = 147888, - [SMALL_STATE(3280)] = 147901, - [SMALL_STATE(3281)] = 147914, - [SMALL_STATE(3282)] = 147927, - [SMALL_STATE(3283)] = 147940, - [SMALL_STATE(3284)] = 147953, - [SMALL_STATE(3285)] = 147966, - [SMALL_STATE(3286)] = 147979, - [SMALL_STATE(3287)] = 147990, - [SMALL_STATE(3288)] = 148003, - [SMALL_STATE(3289)] = 148016, - [SMALL_STATE(3290)] = 148029, - [SMALL_STATE(3291)] = 148042, - [SMALL_STATE(3292)] = 148055, - [SMALL_STATE(3293)] = 148068, - [SMALL_STATE(3294)] = 148081, - [SMALL_STATE(3295)] = 148094, - [SMALL_STATE(3296)] = 148107, - [SMALL_STATE(3297)] = 148120, - [SMALL_STATE(3298)] = 148133, - [SMALL_STATE(3299)] = 148146, - [SMALL_STATE(3300)] = 148159, - [SMALL_STATE(3301)] = 148170, - [SMALL_STATE(3302)] = 148183, - [SMALL_STATE(3303)] = 148196, - [SMALL_STATE(3304)] = 148209, - [SMALL_STATE(3305)] = 148222, - [SMALL_STATE(3306)] = 148235, - [SMALL_STATE(3307)] = 148248, - [SMALL_STATE(3308)] = 148261, - [SMALL_STATE(3309)] = 148274, - [SMALL_STATE(3310)] = 148287, - [SMALL_STATE(3311)] = 148300, - [SMALL_STATE(3312)] = 148313, - [SMALL_STATE(3313)] = 148326, - [SMALL_STATE(3314)] = 148339, - [SMALL_STATE(3315)] = 148350, - [SMALL_STATE(3316)] = 148363, - [SMALL_STATE(3317)] = 148376, - [SMALL_STATE(3318)] = 148389, - [SMALL_STATE(3319)] = 148402, - [SMALL_STATE(3320)] = 148415, - [SMALL_STATE(3321)] = 148428, - [SMALL_STATE(3322)] = 148441, - [SMALL_STATE(3323)] = 148454, - [SMALL_STATE(3324)] = 148467, - [SMALL_STATE(3325)] = 148480, - [SMALL_STATE(3326)] = 148493, - [SMALL_STATE(3327)] = 148506, - [SMALL_STATE(3328)] = 148519, - [SMALL_STATE(3329)] = 148532, - [SMALL_STATE(3330)] = 148545, - [SMALL_STATE(3331)] = 148558, - [SMALL_STATE(3332)] = 148571, - [SMALL_STATE(3333)] = 148584, - [SMALL_STATE(3334)] = 148597, - [SMALL_STATE(3335)] = 148610, - [SMALL_STATE(3336)] = 148623, - [SMALL_STATE(3337)] = 148636, - [SMALL_STATE(3338)] = 148649, - [SMALL_STATE(3339)] = 148662, - [SMALL_STATE(3340)] = 148675, - [SMALL_STATE(3341)] = 148688, - [SMALL_STATE(3342)] = 148701, - [SMALL_STATE(3343)] = 148714, - [SMALL_STATE(3344)] = 148727, - [SMALL_STATE(3345)] = 148740, - [SMALL_STATE(3346)] = 148753, - [SMALL_STATE(3347)] = 148766, - [SMALL_STATE(3348)] = 148779, - [SMALL_STATE(3349)] = 148792, - [SMALL_STATE(3350)] = 148805, - [SMALL_STATE(3351)] = 148818, - [SMALL_STATE(3352)] = 148831, - [SMALL_STATE(3353)] = 148844, - [SMALL_STATE(3354)] = 148857, - [SMALL_STATE(3355)] = 148870, - [SMALL_STATE(3356)] = 148883, - [SMALL_STATE(3357)] = 148896, - [SMALL_STATE(3358)] = 148909, - [SMALL_STATE(3359)] = 148922, - [SMALL_STATE(3360)] = 148935, - [SMALL_STATE(3361)] = 148948, - [SMALL_STATE(3362)] = 148961, - [SMALL_STATE(3363)] = 148974, - [SMALL_STATE(3364)] = 148987, - [SMALL_STATE(3365)] = 149000, - [SMALL_STATE(3366)] = 149013, - [SMALL_STATE(3367)] = 149026, - [SMALL_STATE(3368)] = 149039, - [SMALL_STATE(3369)] = 149052, - [SMALL_STATE(3370)] = 149065, - [SMALL_STATE(3371)] = 149078, - [SMALL_STATE(3372)] = 149091, - [SMALL_STATE(3373)] = 149104, - [SMALL_STATE(3374)] = 149117, - [SMALL_STATE(3375)] = 149130, - [SMALL_STATE(3376)] = 149143, - [SMALL_STATE(3377)] = 149156, - [SMALL_STATE(3378)] = 149169, - [SMALL_STATE(3379)] = 149182, - [SMALL_STATE(3380)] = 149193, - [SMALL_STATE(3381)] = 149204, - [SMALL_STATE(3382)] = 149217, - [SMALL_STATE(3383)] = 149230, - [SMALL_STATE(3384)] = 149243, - [SMALL_STATE(3385)] = 149256, - [SMALL_STATE(3386)] = 149269, - [SMALL_STATE(3387)] = 149282, - [SMALL_STATE(3388)] = 149295, - [SMALL_STATE(3389)] = 149308, - [SMALL_STATE(3390)] = 149321, - [SMALL_STATE(3391)] = 149334, - [SMALL_STATE(3392)] = 149347, - [SMALL_STATE(3393)] = 149360, - [SMALL_STATE(3394)] = 149371, - [SMALL_STATE(3395)] = 149382, - [SMALL_STATE(3396)] = 149395, - [SMALL_STATE(3397)] = 149408, - [SMALL_STATE(3398)] = 149421, - [SMALL_STATE(3399)] = 149434, - [SMALL_STATE(3400)] = 149447, - [SMALL_STATE(3401)] = 149460, - [SMALL_STATE(3402)] = 149473, - [SMALL_STATE(3403)] = 149486, - [SMALL_STATE(3404)] = 149499, - [SMALL_STATE(3405)] = 149512, - [SMALL_STATE(3406)] = 149525, - [SMALL_STATE(3407)] = 149538, - [SMALL_STATE(3408)] = 149549, - [SMALL_STATE(3409)] = 149562, - [SMALL_STATE(3410)] = 149575, - [SMALL_STATE(3411)] = 149588, - [SMALL_STATE(3412)] = 149601, - [SMALL_STATE(3413)] = 149612, - [SMALL_STATE(3414)] = 149625, - [SMALL_STATE(3415)] = 149638, - [SMALL_STATE(3416)] = 149651, - [SMALL_STATE(3417)] = 149662, - [SMALL_STATE(3418)] = 149675, - [SMALL_STATE(3419)] = 149688, - [SMALL_STATE(3420)] = 149701, - [SMALL_STATE(3421)] = 149714, - [SMALL_STATE(3422)] = 149725, - [SMALL_STATE(3423)] = 149738, - [SMALL_STATE(3424)] = 149749, - [SMALL_STATE(3425)] = 149762, - [SMALL_STATE(3426)] = 149773, - [SMALL_STATE(3427)] = 149786, - [SMALL_STATE(3428)] = 149799, - [SMALL_STATE(3429)] = 149812, - [SMALL_STATE(3430)] = 149825, - [SMALL_STATE(3431)] = 149838, - [SMALL_STATE(3432)] = 149851, - [SMALL_STATE(3433)] = 149864, - [SMALL_STATE(3434)] = 149877, - [SMALL_STATE(3435)] = 149890, - [SMALL_STATE(3436)] = 149903, - [SMALL_STATE(3437)] = 149916, - [SMALL_STATE(3438)] = 149929, - [SMALL_STATE(3439)] = 149942, - [SMALL_STATE(3440)] = 149955, - [SMALL_STATE(3441)] = 149968, - [SMALL_STATE(3442)] = 149981, - [SMALL_STATE(3443)] = 149994, - [SMALL_STATE(3444)] = 150007, - [SMALL_STATE(3445)] = 150020, - [SMALL_STATE(3446)] = 150033, - [SMALL_STATE(3447)] = 150046, - [SMALL_STATE(3448)] = 150059, - [SMALL_STATE(3449)] = 150072, - [SMALL_STATE(3450)] = 150085, - [SMALL_STATE(3451)] = 150098, - [SMALL_STATE(3452)] = 150111, - [SMALL_STATE(3453)] = 150124, - [SMALL_STATE(3454)] = 150137, - [SMALL_STATE(3455)] = 150150, - [SMALL_STATE(3456)] = 150163, - [SMALL_STATE(3457)] = 150176, - [SMALL_STATE(3458)] = 150189, - [SMALL_STATE(3459)] = 150202, - [SMALL_STATE(3460)] = 150215, - [SMALL_STATE(3461)] = 150228, - [SMALL_STATE(3462)] = 150241, - [SMALL_STATE(3463)] = 150254, - [SMALL_STATE(3464)] = 150267, - [SMALL_STATE(3465)] = 150280, - [SMALL_STATE(3466)] = 150293, - [SMALL_STATE(3467)] = 150306, - [SMALL_STATE(3468)] = 150319, - [SMALL_STATE(3469)] = 150332, - [SMALL_STATE(3470)] = 150345, - [SMALL_STATE(3471)] = 150356, - [SMALL_STATE(3472)] = 150369, - [SMALL_STATE(3473)] = 150380, - [SMALL_STATE(3474)] = 150393, - [SMALL_STATE(3475)] = 150406, - [SMALL_STATE(3476)] = 150419, - [SMALL_STATE(3477)] = 150432, - [SMALL_STATE(3478)] = 150445, - [SMALL_STATE(3479)] = 150458, - [SMALL_STATE(3480)] = 150471, - [SMALL_STATE(3481)] = 150484, - [SMALL_STATE(3482)] = 150494, - [SMALL_STATE(3483)] = 150504, - [SMALL_STATE(3484)] = 150512, - [SMALL_STATE(3485)] = 150520, - [SMALL_STATE(3486)] = 150528, - [SMALL_STATE(3487)] = 150538, - [SMALL_STATE(3488)] = 150546, - [SMALL_STATE(3489)] = 150554, - [SMALL_STATE(3490)] = 150562, - [SMALL_STATE(3491)] = 150572, - [SMALL_STATE(3492)] = 150580, - [SMALL_STATE(3493)] = 150588, - [SMALL_STATE(3494)] = 150596, - [SMALL_STATE(3495)] = 150604, - [SMALL_STATE(3496)] = 150612, - [SMALL_STATE(3497)] = 150620, - [SMALL_STATE(3498)] = 150628, - [SMALL_STATE(3499)] = 150636, - [SMALL_STATE(3500)] = 150644, - [SMALL_STATE(3501)] = 150652, - [SMALL_STATE(3502)] = 150660, - [SMALL_STATE(3503)] = 150670, - [SMALL_STATE(3504)] = 150680, - [SMALL_STATE(3505)] = 150688, - [SMALL_STATE(3506)] = 150696, - [SMALL_STATE(3507)] = 150704, - [SMALL_STATE(3508)] = 150712, - [SMALL_STATE(3509)] = 150720, - [SMALL_STATE(3510)] = 150728, - [SMALL_STATE(3511)] = 150736, - [SMALL_STATE(3512)] = 150744, - [SMALL_STATE(3513)] = 150754, - [SMALL_STATE(3514)] = 150762, - [SMALL_STATE(3515)] = 150770, - [SMALL_STATE(3516)] = 150778, - [SMALL_STATE(3517)] = 150786, - [SMALL_STATE(3518)] = 150794, - [SMALL_STATE(3519)] = 150804, - [SMALL_STATE(3520)] = 150812, - [SMALL_STATE(3521)] = 150820, - [SMALL_STATE(3522)] = 150828, - [SMALL_STATE(3523)] = 150838, - [SMALL_STATE(3524)] = 150848, - [SMALL_STATE(3525)] = 150856, - [SMALL_STATE(3526)] = 150864, - [SMALL_STATE(3527)] = 150874, - [SMALL_STATE(3528)] = 150884, - [SMALL_STATE(3529)] = 150892, - [SMALL_STATE(3530)] = 150902, - [SMALL_STATE(3531)] = 150912, - [SMALL_STATE(3532)] = 150920, - [SMALL_STATE(3533)] = 150930, - [SMALL_STATE(3534)] = 150940, - [SMALL_STATE(3535)] = 150948, - [SMALL_STATE(3536)] = 150958, - [SMALL_STATE(3537)] = 150968, - [SMALL_STATE(3538)] = 150978, - [SMALL_STATE(3539)] = 150986, - [SMALL_STATE(3540)] = 150996, - [SMALL_STATE(3541)] = 151006, - [SMALL_STATE(3542)] = 151014, - [SMALL_STATE(3543)] = 151024, - [SMALL_STATE(3544)] = 151034, - [SMALL_STATE(3545)] = 151044, - [SMALL_STATE(3546)] = 151054, - [SMALL_STATE(3547)] = 151064, - [SMALL_STATE(3548)] = 151074, - [SMALL_STATE(3549)] = 151084, - [SMALL_STATE(3550)] = 151094, - [SMALL_STATE(3551)] = 151104, - [SMALL_STATE(3552)] = 151114, - [SMALL_STATE(3553)] = 151124, - [SMALL_STATE(3554)] = 151134, - [SMALL_STATE(3555)] = 151144, - [SMALL_STATE(3556)] = 151154, - [SMALL_STATE(3557)] = 151164, - [SMALL_STATE(3558)] = 151174, - [SMALL_STATE(3559)] = 151184, - [SMALL_STATE(3560)] = 151194, - [SMALL_STATE(3561)] = 151204, - [SMALL_STATE(3562)] = 151214, - [SMALL_STATE(3563)] = 151224, - [SMALL_STATE(3564)] = 151234, - [SMALL_STATE(3565)] = 151244, - [SMALL_STATE(3566)] = 151254, - [SMALL_STATE(3567)] = 151264, - [SMALL_STATE(3568)] = 151274, - [SMALL_STATE(3569)] = 151284, - [SMALL_STATE(3570)] = 151294, - [SMALL_STATE(3571)] = 151304, - [SMALL_STATE(3572)] = 151314, - [SMALL_STATE(3573)] = 151324, - [SMALL_STATE(3574)] = 151334, - [SMALL_STATE(3575)] = 151344, - [SMALL_STATE(3576)] = 151354, - [SMALL_STATE(3577)] = 151364, - [SMALL_STATE(3578)] = 151374, - [SMALL_STATE(3579)] = 151384, - [SMALL_STATE(3580)] = 151394, - [SMALL_STATE(3581)] = 151404, - [SMALL_STATE(3582)] = 151414, - [SMALL_STATE(3583)] = 151424, - [SMALL_STATE(3584)] = 151434, - [SMALL_STATE(3585)] = 151444, - [SMALL_STATE(3586)] = 151454, - [SMALL_STATE(3587)] = 151464, - [SMALL_STATE(3588)] = 151474, - [SMALL_STATE(3589)] = 151484, - [SMALL_STATE(3590)] = 151494, - [SMALL_STATE(3591)] = 151504, - [SMALL_STATE(3592)] = 151514, - [SMALL_STATE(3593)] = 151524, - [SMALL_STATE(3594)] = 151534, - [SMALL_STATE(3595)] = 151544, - [SMALL_STATE(3596)] = 151554, - [SMALL_STATE(3597)] = 151564, - [SMALL_STATE(3598)] = 151572, - [SMALL_STATE(3599)] = 151580, - [SMALL_STATE(3600)] = 151588, - [SMALL_STATE(3601)] = 151598, - [SMALL_STATE(3602)] = 151606, - [SMALL_STATE(3603)] = 151616, - [SMALL_STATE(3604)] = 151626, - [SMALL_STATE(3605)] = 151634, - [SMALL_STATE(3606)] = 151644, - [SMALL_STATE(3607)] = 151652, - [SMALL_STATE(3608)] = 151662, - [SMALL_STATE(3609)] = 151672, - [SMALL_STATE(3610)] = 151679, - [SMALL_STATE(3611)] = 151686, - [SMALL_STATE(3612)] = 151693, - [SMALL_STATE(3613)] = 151700, - [SMALL_STATE(3614)] = 151707, - [SMALL_STATE(3615)] = 151714, - [SMALL_STATE(3616)] = 151721, - [SMALL_STATE(3617)] = 151728, - [SMALL_STATE(3618)] = 151735, - [SMALL_STATE(3619)] = 151742, - [SMALL_STATE(3620)] = 151749, - [SMALL_STATE(3621)] = 151756, - [SMALL_STATE(3622)] = 151763, - [SMALL_STATE(3623)] = 151770, - [SMALL_STATE(3624)] = 151777, - [SMALL_STATE(3625)] = 151784, - [SMALL_STATE(3626)] = 151791, - [SMALL_STATE(3627)] = 151798, - [SMALL_STATE(3628)] = 151805, - [SMALL_STATE(3629)] = 151812, - [SMALL_STATE(3630)] = 151819, - [SMALL_STATE(3631)] = 151826, - [SMALL_STATE(3632)] = 151833, - [SMALL_STATE(3633)] = 151840, - [SMALL_STATE(3634)] = 151847, - [SMALL_STATE(3635)] = 151854, - [SMALL_STATE(3636)] = 151861, - [SMALL_STATE(3637)] = 151868, - [SMALL_STATE(3638)] = 151875, - [SMALL_STATE(3639)] = 151882, - [SMALL_STATE(3640)] = 151889, - [SMALL_STATE(3641)] = 151896, - [SMALL_STATE(3642)] = 151903, - [SMALL_STATE(3643)] = 151910, - [SMALL_STATE(3644)] = 151917, - [SMALL_STATE(3645)] = 151924, - [SMALL_STATE(3646)] = 151931, - [SMALL_STATE(3647)] = 151938, - [SMALL_STATE(3648)] = 151945, - [SMALL_STATE(3649)] = 151952, - [SMALL_STATE(3650)] = 151959, - [SMALL_STATE(3651)] = 151966, - [SMALL_STATE(3652)] = 151973, - [SMALL_STATE(3653)] = 151980, - [SMALL_STATE(3654)] = 151987, - [SMALL_STATE(3655)] = 151994, - [SMALL_STATE(3656)] = 152001, - [SMALL_STATE(3657)] = 152008, - [SMALL_STATE(3658)] = 152015, - [SMALL_STATE(3659)] = 152022, - [SMALL_STATE(3660)] = 152029, - [SMALL_STATE(3661)] = 152036, - [SMALL_STATE(3662)] = 152043, - [SMALL_STATE(3663)] = 152050, - [SMALL_STATE(3664)] = 152057, - [SMALL_STATE(3665)] = 152064, - [SMALL_STATE(3666)] = 152071, - [SMALL_STATE(3667)] = 152078, - [SMALL_STATE(3668)] = 152085, - [SMALL_STATE(3669)] = 152092, - [SMALL_STATE(3670)] = 152099, - [SMALL_STATE(3671)] = 152106, - [SMALL_STATE(3672)] = 152113, - [SMALL_STATE(3673)] = 152120, - [SMALL_STATE(3674)] = 152127, - [SMALL_STATE(3675)] = 152134, - [SMALL_STATE(3676)] = 152141, - [SMALL_STATE(3677)] = 152148, - [SMALL_STATE(3678)] = 152155, - [SMALL_STATE(3679)] = 152162, - [SMALL_STATE(3680)] = 152169, - [SMALL_STATE(3681)] = 152176, - [SMALL_STATE(3682)] = 152183, - [SMALL_STATE(3683)] = 152190, - [SMALL_STATE(3684)] = 152197, - [SMALL_STATE(3685)] = 152204, - [SMALL_STATE(3686)] = 152211, - [SMALL_STATE(3687)] = 152218, - [SMALL_STATE(3688)] = 152225, - [SMALL_STATE(3689)] = 152232, - [SMALL_STATE(3690)] = 152239, - [SMALL_STATE(3691)] = 152246, - [SMALL_STATE(3692)] = 152253, - [SMALL_STATE(3693)] = 152260, - [SMALL_STATE(3694)] = 152267, - [SMALL_STATE(3695)] = 152274, - [SMALL_STATE(3696)] = 152281, - [SMALL_STATE(3697)] = 152288, - [SMALL_STATE(3698)] = 152295, - [SMALL_STATE(3699)] = 152302, - [SMALL_STATE(3700)] = 152309, - [SMALL_STATE(3701)] = 152316, - [SMALL_STATE(3702)] = 152323, - [SMALL_STATE(3703)] = 152330, - [SMALL_STATE(3704)] = 152337, - [SMALL_STATE(3705)] = 152344, - [SMALL_STATE(3706)] = 152351, - [SMALL_STATE(3707)] = 152358, - [SMALL_STATE(3708)] = 152365, - [SMALL_STATE(3709)] = 152372, - [SMALL_STATE(3710)] = 152379, - [SMALL_STATE(3711)] = 152386, - [SMALL_STATE(3712)] = 152393, - [SMALL_STATE(3713)] = 152400, - [SMALL_STATE(3714)] = 152407, - [SMALL_STATE(3715)] = 152414, - [SMALL_STATE(3716)] = 152421, - [SMALL_STATE(3717)] = 152428, - [SMALL_STATE(3718)] = 152435, - [SMALL_STATE(3719)] = 152442, - [SMALL_STATE(3720)] = 152449, - [SMALL_STATE(3721)] = 152456, - [SMALL_STATE(3722)] = 152463, - [SMALL_STATE(3723)] = 152470, - [SMALL_STATE(3724)] = 152477, - [SMALL_STATE(3725)] = 152484, - [SMALL_STATE(3726)] = 152491, - [SMALL_STATE(3727)] = 152498, - [SMALL_STATE(3728)] = 152505, - [SMALL_STATE(3729)] = 152512, - [SMALL_STATE(3730)] = 152519, - [SMALL_STATE(3731)] = 152526, - [SMALL_STATE(3732)] = 152533, - [SMALL_STATE(3733)] = 152540, - [SMALL_STATE(3734)] = 152547, - [SMALL_STATE(3735)] = 152554, - [SMALL_STATE(3736)] = 152561, - [SMALL_STATE(3737)] = 152568, - [SMALL_STATE(3738)] = 152575, - [SMALL_STATE(3739)] = 152582, - [SMALL_STATE(3740)] = 152589, - [SMALL_STATE(3741)] = 152596, - [SMALL_STATE(3742)] = 152603, - [SMALL_STATE(3743)] = 152610, - [SMALL_STATE(3744)] = 152617, - [SMALL_STATE(3745)] = 152624, - [SMALL_STATE(3746)] = 152631, - [SMALL_STATE(3747)] = 152638, - [SMALL_STATE(3748)] = 152645, - [SMALL_STATE(3749)] = 152652, - [SMALL_STATE(3750)] = 152659, - [SMALL_STATE(3751)] = 152666, - [SMALL_STATE(3752)] = 152673, - [SMALL_STATE(3753)] = 152680, - [SMALL_STATE(3754)] = 152687, - [SMALL_STATE(3755)] = 152694, - [SMALL_STATE(3756)] = 152701, - [SMALL_STATE(3757)] = 152708, - [SMALL_STATE(3758)] = 152715, - [SMALL_STATE(3759)] = 152722, - [SMALL_STATE(3760)] = 152729, - [SMALL_STATE(3761)] = 152736, - [SMALL_STATE(3762)] = 152743, - [SMALL_STATE(3763)] = 152750, - [SMALL_STATE(3764)] = 152757, - [SMALL_STATE(3765)] = 152764, - [SMALL_STATE(3766)] = 152771, - [SMALL_STATE(3767)] = 152778, - [SMALL_STATE(3768)] = 152785, - [SMALL_STATE(3769)] = 152792, - [SMALL_STATE(3770)] = 152799, - [SMALL_STATE(3771)] = 152806, - [SMALL_STATE(3772)] = 152813, - [SMALL_STATE(3773)] = 152820, - [SMALL_STATE(3774)] = 152827, - [SMALL_STATE(3775)] = 152834, - [SMALL_STATE(3776)] = 152841, - [SMALL_STATE(3777)] = 152848, - [SMALL_STATE(3778)] = 152855, - [SMALL_STATE(3779)] = 152862, - [SMALL_STATE(3780)] = 152869, - [SMALL_STATE(3781)] = 152876, - [SMALL_STATE(3782)] = 152883, - [SMALL_STATE(3783)] = 152890, - [SMALL_STATE(3784)] = 152897, - [SMALL_STATE(3785)] = 152904, - [SMALL_STATE(3786)] = 152911, - [SMALL_STATE(3787)] = 152918, - [SMALL_STATE(3788)] = 152925, - [SMALL_STATE(3789)] = 152932, - [SMALL_STATE(3790)] = 152939, - [SMALL_STATE(3791)] = 152946, - [SMALL_STATE(3792)] = 152953, - [SMALL_STATE(3793)] = 152960, - [SMALL_STATE(3794)] = 152967, - [SMALL_STATE(3795)] = 152974, - [SMALL_STATE(3796)] = 152981, - [SMALL_STATE(3797)] = 152988, - [SMALL_STATE(3798)] = 152995, - [SMALL_STATE(3799)] = 153002, - [SMALL_STATE(3800)] = 153009, - [SMALL_STATE(3801)] = 153016, - [SMALL_STATE(3802)] = 153023, - [SMALL_STATE(3803)] = 153030, - [SMALL_STATE(3804)] = 153037, - [SMALL_STATE(3805)] = 153044, - [SMALL_STATE(3806)] = 153051, - [SMALL_STATE(3807)] = 153058, - [SMALL_STATE(3808)] = 153065, - [SMALL_STATE(3809)] = 153072, - [SMALL_STATE(3810)] = 153079, - [SMALL_STATE(3811)] = 153086, - [SMALL_STATE(3812)] = 153093, - [SMALL_STATE(3813)] = 153100, - [SMALL_STATE(3814)] = 153107, - [SMALL_STATE(3815)] = 153114, - [SMALL_STATE(3816)] = 153121, - [SMALL_STATE(3817)] = 153128, - [SMALL_STATE(3818)] = 153135, - [SMALL_STATE(3819)] = 153142, - [SMALL_STATE(3820)] = 153149, - [SMALL_STATE(3821)] = 153156, - [SMALL_STATE(3822)] = 153163, - [SMALL_STATE(3823)] = 153170, - [SMALL_STATE(3824)] = 153177, - [SMALL_STATE(3825)] = 153184, - [SMALL_STATE(3826)] = 153191, - [SMALL_STATE(3827)] = 153198, - [SMALL_STATE(3828)] = 153205, + [SMALL_STATE(476)] = 0, + [SMALL_STATE(477)] = 125, + [SMALL_STATE(478)] = 244, + [SMALL_STATE(479)] = 369, + [SMALL_STATE(480)] = 488, + [SMALL_STATE(481)] = 607, + [SMALL_STATE(482)] = 732, + [SMALL_STATE(483)] = 857, + [SMALL_STATE(484)] = 976, + [SMALL_STATE(485)] = 1095, + [SMALL_STATE(486)] = 1214, + [SMALL_STATE(487)] = 1334, + [SMALL_STATE(488)] = 1456, + [SMALL_STATE(489)] = 1576, + [SMALL_STATE(490)] = 1697, + [SMALL_STATE(491)] = 1816, + [SMALL_STATE(492)] = 1935, + [SMALL_STATE(493)] = 2056, + [SMALL_STATE(494)] = 2175, + [SMALL_STATE(495)] = 2294, + [SMALL_STATE(496)] = 2369, + [SMALL_STATE(497)] = 2444, + [SMALL_STATE(498)] = 2553, + [SMALL_STATE(499)] = 2668, + [SMALL_STATE(500)] = 2789, + [SMALL_STATE(501)] = 2904, + [SMALL_STATE(502)] = 3025, + [SMALL_STATE(503)] = 3097, + [SMALL_STATE(504)] = 3171, + [SMALL_STATE(505)] = 3239, + [SMALL_STATE(506)] = 3313, + [SMALL_STATE(507)] = 3387, + [SMALL_STATE(508)] = 3461, + [SMALL_STATE(509)] = 3535, + [SMALL_STATE(510)] = 3609, + [SMALL_STATE(511)] = 3681, + [SMALL_STATE(512)] = 3789, + [SMALL_STATE(513)] = 3897, + [SMALL_STATE(514)] = 4034, + [SMALL_STATE(515)] = 4143, + [SMALL_STATE(516)] = 4280, + [SMALL_STATE(517)] = 4353, + [SMALL_STATE(518)] = 4424, + [SMALL_STATE(519)] = 4561, + [SMALL_STATE(520)] = 4670, + [SMALL_STATE(521)] = 4779, + [SMALL_STATE(522)] = 4852, + [SMALL_STATE(523)] = 4989, + [SMALL_STATE(524)] = 5062, + [SMALL_STATE(525)] = 5135, + [SMALL_STATE(526)] = 5250, + [SMALL_STATE(527)] = 5387, + [SMALL_STATE(528)] = 5458, + [SMALL_STATE(529)] = 5573, + [SMALL_STATE(530)] = 5650, + [SMALL_STATE(531)] = 5758, + [SMALL_STATE(532)] = 5866, + [SMALL_STATE(533)] = 5972, + [SMALL_STATE(534)] = 6078, + [SMALL_STATE(535)] = 6184, + [SMALL_STATE(536)] = 6292, + [SMALL_STATE(537)] = 6400, + [SMALL_STATE(538)] = 6476, + [SMALL_STATE(539)] = 6584, + [SMALL_STATE(540)] = 6692, + [SMALL_STATE(541)] = 6768, + [SMALL_STATE(542)] = 6844, + [SMALL_STATE(543)] = 6920, + [SMALL_STATE(544)] = 6996, + [SMALL_STATE(545)] = 7101, + [SMALL_STATE(546)] = 7206, + [SMALL_STATE(547)] = 7319, + [SMALL_STATE(548)] = 7432, + [SMALL_STATE(549)] = 7551, + [SMALL_STATE(550)] = 7626, + [SMALL_STATE(551)] = 7745, + [SMALL_STATE(552)] = 7850, + [SMALL_STATE(553)] = 7955, + [SMALL_STATE(554)] = 8060, + [SMALL_STATE(555)] = 8135, + [SMALL_STATE(556)] = 8210, + [SMALL_STATE(557)] = 8315, + [SMALL_STATE(558)] = 8420, + [SMALL_STATE(559)] = 8495, + [SMALL_STATE(560)] = 8608, + [SMALL_STATE(561)] = 8683, + [SMALL_STATE(562)] = 8758, + [SMALL_STATE(563)] = 8863, + [SMALL_STATE(564)] = 8968, + [SMALL_STATE(565)] = 9073, + [SMALL_STATE(566)] = 9178, + [SMALL_STATE(567)] = 9282, + [SMALL_STATE(568)] = 9386, + [SMALL_STATE(569)] = 9506, + [SMALL_STATE(570)] = 9626, + [SMALL_STATE(571)] = 9730, + [SMALL_STATE(572)] = 9834, + [SMALL_STATE(573)] = 9954, + [SMALL_STATE(574)] = 10074, + [SMALL_STATE(575)] = 10178, + [SMALL_STATE(576)] = 10282, + [SMALL_STATE(577)] = 10402, + [SMALL_STATE(578)] = 10506, + [SMALL_STATE(579)] = 10626, + [SMALL_STATE(580)] = 10730, + [SMALL_STATE(581)] = 10794, + [SMALL_STATE(582)] = 10914, + [SMALL_STATE(583)] = 11018, + [SMALL_STATE(584)] = 11138, + [SMALL_STATE(585)] = 11242, + [SMALL_STATE(586)] = 11346, + [SMALL_STATE(587)] = 11450, + [SMALL_STATE(588)] = 11554, + [SMALL_STATE(589)] = 11618, + [SMALL_STATE(590)] = 11722, + [SMALL_STATE(591)] = 11842, + [SMALL_STATE(592)] = 11962, + [SMALL_STATE(593)] = 12035, + [SMALL_STATE(594)] = 12100, + [SMALL_STATE(595)] = 12213, + [SMALL_STATE(596)] = 12282, + [SMALL_STATE(597)] = 12385, + [SMALL_STATE(598)] = 12488, + [SMALL_STATE(599)] = 12591, + [SMALL_STATE(600)] = 12692, + [SMALL_STATE(601)] = 12793, + [SMALL_STATE(602)] = 12906, + [SMALL_STATE(603)] = 13009, + [SMALL_STATE(604)] = 13124, + [SMALL_STATE(605)] = 13189, + [SMALL_STATE(606)] = 13262, + [SMALL_STATE(607)] = 13365, + [SMALL_STATE(608)] = 13434, + [SMALL_STATE(609)] = 13502, + [SMALL_STATE(610)] = 13604, + [SMALL_STATE(611)] = 13688, + [SMALL_STATE(612)] = 13772, + [SMALL_STATE(613)] = 13844, + [SMALL_STATE(614)] = 13912, + [SMALL_STATE(615)] = 14012, + [SMALL_STATE(616)] = 14112, + [SMALL_STATE(617)] = 14180, + [SMALL_STATE(618)] = 14280, + [SMALL_STATE(619)] = 14352, + [SMALL_STATE(620)] = 14428, + [SMALL_STATE(621)] = 14528, + [SMALL_STATE(622)] = 14606, + [SMALL_STATE(623)] = 14678, + [SMALL_STATE(624)] = 14750, + [SMALL_STATE(625)] = 14822, + [SMALL_STATE(626)] = 14890, + [SMALL_STATE(627)] = 14989, + [SMALL_STATE(628)] = 15072, + [SMALL_STATE(629)] = 15139, + [SMALL_STATE(630)] = 15258, + [SMALL_STATE(631)] = 15333, + [SMALL_STATE(632)] = 15452, + [SMALL_STATE(633)] = 15519, + [SMALL_STATE(634)] = 15604, + [SMALL_STATE(635)] = 15675, + [SMALL_STATE(636)] = 15794, + [SMALL_STATE(637)] = 15877, + [SMALL_STATE(638)] = 15948, + [SMALL_STATE(639)] = 16067, + [SMALL_STATE(640)] = 16186, + [SMALL_STATE(641)] = 16271, + [SMALL_STATE(642)] = 16348, + [SMALL_STATE(643)] = 16423, + [SMALL_STATE(644)] = 16500, + [SMALL_STATE(645)] = 16599, + [SMALL_STATE(646)] = 16671, + [SMALL_STATE(647)] = 16737, + [SMALL_STATE(648)] = 16803, + [SMALL_STATE(649)] = 16903, + [SMALL_STATE(650)] = 16969, + [SMALL_STATE(651)] = 17035, + [SMALL_STATE(652)] = 17101, + [SMALL_STATE(653)] = 17167, + [SMALL_STATE(654)] = 17271, + [SMALL_STATE(655)] = 17375, + [SMALL_STATE(656)] = 17441, + [SMALL_STATE(657)] = 17507, + [SMALL_STATE(658)] = 17607, + [SMALL_STATE(659)] = 17711, + [SMALL_STATE(660)] = 17779, + [SMALL_STATE(661)] = 17845, + [SMALL_STATE(662)] = 17945, + [SMALL_STATE(663)] = 18017, + [SMALL_STATE(664)] = 18083, + [SMALL_STATE(665)] = 18142, + [SMALL_STATE(666)] = 18207, + [SMALL_STATE(667)] = 18306, + [SMALL_STATE(668)] = 18371, + [SMALL_STATE(669)] = 18430, + [SMALL_STATE(670)] = 18501, + [SMALL_STATE(671)] = 18560, + [SMALL_STATE(672)] = 18659, + [SMALL_STATE(673)] = 18758, + [SMALL_STATE(674)] = 18823, + [SMALL_STATE(675)] = 18902, + [SMALL_STATE(676)] = 18967, + [SMALL_STATE(677)] = 19032, + [SMALL_STATE(678)] = 19097, + [SMALL_STATE(679)] = 19162, + [SMALL_STATE(680)] = 19221, + [SMALL_STATE(681)] = 19286, + [SMALL_STATE(682)] = 19351, + [SMALL_STATE(683)] = 19416, + [SMALL_STATE(684)] = 19481, + [SMALL_STATE(685)] = 19580, + [SMALL_STATE(686)] = 19645, + [SMALL_STATE(687)] = 19716, + [SMALL_STATE(688)] = 19775, + [SMALL_STATE(689)] = 19834, + [SMALL_STATE(690)] = 19913, + [SMALL_STATE(691)] = 19980, + [SMALL_STATE(692)] = 20055, + [SMALL_STATE(693)] = 20120, + [SMALL_STATE(694)] = 20179, + [SMALL_STATE(695)] = 20244, + [SMALL_STATE(696)] = 20303, + [SMALL_STATE(697)] = 20362, + [SMALL_STATE(698)] = 20443, + [SMALL_STATE(699)] = 20514, + [SMALL_STATE(700)] = 20587, + [SMALL_STATE(701)] = 20652, + [SMALL_STATE(702)] = 20717, + [SMALL_STATE(703)] = 20782, + [SMALL_STATE(704)] = 20847, + [SMALL_STATE(705)] = 20926, + [SMALL_STATE(706)] = 21025, + [SMALL_STATE(707)] = 21090, + [SMALL_STATE(708)] = 21189, + [SMALL_STATE(709)] = 21248, + [SMALL_STATE(710)] = 21313, + [SMALL_STATE(711)] = 21412, + [SMALL_STATE(712)] = 21471, + [SMALL_STATE(713)] = 21536, + [SMALL_STATE(714)] = 21595, + [SMALL_STATE(715)] = 21654, + [SMALL_STATE(716)] = 21713, + [SMALL_STATE(717)] = 21772, + [SMALL_STATE(718)] = 21831, + [SMALL_STATE(719)] = 21898, + [SMALL_STATE(720)] = 21957, + [SMALL_STATE(721)] = 22016, + [SMALL_STATE(722)] = 22081, + [SMALL_STATE(723)] = 22146, + [SMALL_STATE(724)] = 22211, + [SMALL_STATE(725)] = 22270, + [SMALL_STATE(726)] = 22329, + [SMALL_STATE(727)] = 22394, + [SMALL_STATE(728)] = 22475, + [SMALL_STATE(729)] = 22540, + [SMALL_STATE(730)] = 22599, + [SMALL_STATE(731)] = 22658, + [SMALL_STATE(732)] = 22717, + [SMALL_STATE(733)] = 22776, + [SMALL_STATE(734)] = 22835, + [SMALL_STATE(735)] = 22900, + [SMALL_STATE(736)] = 22965, + [SMALL_STATE(737)] = 23024, + [SMALL_STATE(738)] = 23089, + [SMALL_STATE(739)] = 23154, + [SMALL_STATE(740)] = 23213, + [SMALL_STATE(741)] = 23278, + [SMALL_STATE(742)] = 23337, + [SMALL_STATE(743)] = 23396, + [SMALL_STATE(744)] = 23455, + [SMALL_STATE(745)] = 23514, + [SMALL_STATE(746)] = 23573, + [SMALL_STATE(747)] = 23638, + [SMALL_STATE(748)] = 23703, + [SMALL_STATE(749)] = 23768, + [SMALL_STATE(750)] = 23827, + [SMALL_STATE(751)] = 23886, + [SMALL_STATE(752)] = 23945, + [SMALL_STATE(753)] = 24004, + [SMALL_STATE(754)] = 24063, + [SMALL_STATE(755)] = 24122, + [SMALL_STATE(756)] = 24187, + [SMALL_STATE(757)] = 24246, + [SMALL_STATE(758)] = 24311, + [SMALL_STATE(759)] = 24376, + [SMALL_STATE(760)] = 24475, + [SMALL_STATE(761)] = 24534, + [SMALL_STATE(762)] = 24592, + [SMALL_STATE(763)] = 24654, + [SMALL_STATE(764)] = 24718, + [SMALL_STATE(765)] = 24782, + [SMALL_STATE(766)] = 24846, + [SMALL_STATE(767)] = 24910, + [SMALL_STATE(768)] = 24974, + [SMALL_STATE(769)] = 25038, + [SMALL_STATE(770)] = 25102, + [SMALL_STATE(771)] = 25166, + [SMALL_STATE(772)] = 25224, + [SMALL_STATE(773)] = 25282, + [SMALL_STATE(774)] = 25344, + [SMALL_STATE(775)] = 25402, + [SMALL_STATE(776)] = 25460, + [SMALL_STATE(777)] = 25518, + [SMALL_STATE(778)] = 25576, + [SMALL_STATE(779)] = 25634, + [SMALL_STATE(780)] = 25692, + [SMALL_STATE(781)] = 25750, + [SMALL_STATE(782)] = 25808, + [SMALL_STATE(783)] = 25866, + [SMALL_STATE(784)] = 25924, + [SMALL_STATE(785)] = 25982, + [SMALL_STATE(786)] = 26040, + [SMALL_STATE(787)] = 26098, + [SMALL_STATE(788)] = 26156, + [SMALL_STATE(789)] = 26218, + [SMALL_STATE(790)] = 26276, + [SMALL_STATE(791)] = 26334, + [SMALL_STATE(792)] = 26392, + [SMALL_STATE(793)] = 26450, + [SMALL_STATE(794)] = 26508, + [SMALL_STATE(795)] = 26566, + [SMALL_STATE(796)] = 26624, + [SMALL_STATE(797)] = 26682, + [SMALL_STATE(798)] = 26746, + [SMALL_STATE(799)] = 26804, + [SMALL_STATE(800)] = 26862, + [SMALL_STATE(801)] = 26920, + [SMALL_STATE(802)] = 26984, + [SMALL_STATE(803)] = 27042, + [SMALL_STATE(804)] = 27100, + [SMALL_STATE(805)] = 27158, + [SMALL_STATE(806)] = 27216, + [SMALL_STATE(807)] = 27280, + [SMALL_STATE(808)] = 27338, + [SMALL_STATE(809)] = 27396, + [SMALL_STATE(810)] = 27460, + [SMALL_STATE(811)] = 27518, + [SMALL_STATE(812)] = 27576, + [SMALL_STATE(813)] = 27634, + [SMALL_STATE(814)] = 27692, + [SMALL_STATE(815)] = 27756, + [SMALL_STATE(816)] = 27814, + [SMALL_STATE(817)] = 27872, + [SMALL_STATE(818)] = 27930, + [SMALL_STATE(819)] = 27988, + [SMALL_STATE(820)] = 28052, + [SMALL_STATE(821)] = 28110, + [SMALL_STATE(822)] = 28174, + [SMALL_STATE(823)] = 28232, + [SMALL_STATE(824)] = 28290, + [SMALL_STATE(825)] = 28354, + [SMALL_STATE(826)] = 28412, + [SMALL_STATE(827)] = 28470, + [SMALL_STATE(828)] = 28528, + [SMALL_STATE(829)] = 28586, + [SMALL_STATE(830)] = 28644, + [SMALL_STATE(831)] = 28702, + [SMALL_STATE(832)] = 28760, + [SMALL_STATE(833)] = 28824, + [SMALL_STATE(834)] = 28888, + [SMALL_STATE(835)] = 28952, + [SMALL_STATE(836)] = 29010, + [SMALL_STATE(837)] = 29068, + [SMALL_STATE(838)] = 29126, + [SMALL_STATE(839)] = 29184, + [SMALL_STATE(840)] = 29242, + [SMALL_STATE(841)] = 29300, + [SMALL_STATE(842)] = 29358, + [SMALL_STATE(843)] = 29416, + [SMALL_STATE(844)] = 29474, + [SMALL_STATE(845)] = 29532, + [SMALL_STATE(846)] = 29590, + [SMALL_STATE(847)] = 29648, + [SMALL_STATE(848)] = 29706, + [SMALL_STATE(849)] = 29764, + [SMALL_STATE(850)] = 29828, + [SMALL_STATE(851)] = 29886, + [SMALL_STATE(852)] = 29944, + [SMALL_STATE(853)] = 30002, + [SMALL_STATE(854)] = 30060, + [SMALL_STATE(855)] = 30118, + [SMALL_STATE(856)] = 30176, + [SMALL_STATE(857)] = 30234, + [SMALL_STATE(858)] = 30292, + [SMALL_STATE(859)] = 30350, + [SMALL_STATE(860)] = 30408, + [SMALL_STATE(861)] = 30466, + [SMALL_STATE(862)] = 30524, + [SMALL_STATE(863)] = 30582, + [SMALL_STATE(864)] = 30640, + [SMALL_STATE(865)] = 30698, + [SMALL_STATE(866)] = 30756, + [SMALL_STATE(867)] = 30814, + [SMALL_STATE(868)] = 30872, + [SMALL_STATE(869)] = 30930, + [SMALL_STATE(870)] = 30988, + [SMALL_STATE(871)] = 31046, + [SMALL_STATE(872)] = 31104, + [SMALL_STATE(873)] = 31168, + [SMALL_STATE(874)] = 31232, + [SMALL_STATE(875)] = 31296, + [SMALL_STATE(876)] = 31360, + [SMALL_STATE(877)] = 31424, + [SMALL_STATE(878)] = 31482, + [SMALL_STATE(879)] = 31540, + [SMALL_STATE(880)] = 31604, + [SMALL_STATE(881)] = 31668, + [SMALL_STATE(882)] = 31766, + [SMALL_STATE(883)] = 31864, + [SMALL_STATE(884)] = 31922, + [SMALL_STATE(885)] = 31980, + [SMALL_STATE(886)] = 32044, + [SMALL_STATE(887)] = 32102, + [SMALL_STATE(888)] = 32160, + [SMALL_STATE(889)] = 32218, + [SMALL_STATE(890)] = 32276, + [SMALL_STATE(891)] = 32334, + [SMALL_STATE(892)] = 32392, + [SMALL_STATE(893)] = 32450, + [SMALL_STATE(894)] = 32508, + [SMALL_STATE(895)] = 32566, + [SMALL_STATE(896)] = 32624, + [SMALL_STATE(897)] = 32682, + [SMALL_STATE(898)] = 32740, + [SMALL_STATE(899)] = 32798, + [SMALL_STATE(900)] = 32856, + [SMALL_STATE(901)] = 32914, + [SMALL_STATE(902)] = 32972, + [SMALL_STATE(903)] = 33030, + [SMALL_STATE(904)] = 33088, + [SMALL_STATE(905)] = 33152, + [SMALL_STATE(906)] = 33216, + [SMALL_STATE(907)] = 33278, + [SMALL_STATE(908)] = 33340, + [SMALL_STATE(909)] = 33404, + [SMALL_STATE(910)] = 33468, + [SMALL_STATE(911)] = 33532, + [SMALL_STATE(912)] = 33630, + [SMALL_STATE(913)] = 33728, + [SMALL_STATE(914)] = 33826, + [SMALL_STATE(915)] = 33884, + [SMALL_STATE(916)] = 33982, + [SMALL_STATE(917)] = 34080, + [SMALL_STATE(918)] = 34138, + [SMALL_STATE(919)] = 34196, + [SMALL_STATE(920)] = 34254, + [SMALL_STATE(921)] = 34312, + [SMALL_STATE(922)] = 34370, + [SMALL_STATE(923)] = 34432, + [SMALL_STATE(924)] = 34490, + [SMALL_STATE(925)] = 34548, + [SMALL_STATE(926)] = 34606, + [SMALL_STATE(927)] = 34670, + [SMALL_STATE(928)] = 34728, + [SMALL_STATE(929)] = 34793, + [SMALL_STATE(930)] = 34854, + [SMALL_STATE(931)] = 34911, + [SMALL_STATE(932)] = 34968, + [SMALL_STATE(933)] = 35025, + [SMALL_STATE(934)] = 35082, + [SMALL_STATE(935)] = 35139, + [SMALL_STATE(936)] = 35196, + [SMALL_STATE(937)] = 35253, + [SMALL_STATE(938)] = 35316, + [SMALL_STATE(939)] = 35373, + [SMALL_STATE(940)] = 35430, + [SMALL_STATE(941)] = 35487, + [SMALL_STATE(942)] = 35548, + [SMALL_STATE(943)] = 35611, + [SMALL_STATE(944)] = 35668, + [SMALL_STATE(945)] = 35725, + [SMALL_STATE(946)] = 35782, + [SMALL_STATE(947)] = 35839, + [SMALL_STATE(948)] = 35900, + [SMALL_STATE(949)] = 35957, + [SMALL_STATE(950)] = 36014, + [SMALL_STATE(951)] = 36071, + [SMALL_STATE(952)] = 36128, + [SMALL_STATE(953)] = 36189, + [SMALL_STATE(954)] = 36246, + [SMALL_STATE(955)] = 36307, + [SMALL_STATE(956)] = 36364, + [SMALL_STATE(957)] = 36425, + [SMALL_STATE(958)] = 36488, + [SMALL_STATE(959)] = 36551, + [SMALL_STATE(960)] = 36608, + [SMALL_STATE(961)] = 36665, + [SMALL_STATE(962)] = 36722, + [SMALL_STATE(963)] = 36779, + [SMALL_STATE(964)] = 36836, + [SMALL_STATE(965)] = 36893, + [SMALL_STATE(966)] = 36950, + [SMALL_STATE(967)] = 37007, + [SMALL_STATE(968)] = 37064, + [SMALL_STATE(969)] = 37121, + [SMALL_STATE(970)] = 37178, + [SMALL_STATE(971)] = 37235, + [SMALL_STATE(972)] = 37292, + [SMALL_STATE(973)] = 37349, + [SMALL_STATE(974)] = 37410, + [SMALL_STATE(975)] = 37471, + [SMALL_STATE(976)] = 37532, + [SMALL_STATE(977)] = 37589, + [SMALL_STATE(978)] = 37646, + [SMALL_STATE(979)] = 37703, + [SMALL_STATE(980)] = 37760, + [SMALL_STATE(981)] = 37817, + [SMALL_STATE(982)] = 37874, + [SMALL_STATE(983)] = 37931, + [SMALL_STATE(984)] = 37988, + [SMALL_STATE(985)] = 38045, + [SMALL_STATE(986)] = 38102, + [SMALL_STATE(987)] = 38159, + [SMALL_STATE(988)] = 38220, + [SMALL_STATE(989)] = 38277, + [SMALL_STATE(990)] = 38392, + [SMALL_STATE(991)] = 38507, + [SMALL_STATE(992)] = 38622, + [SMALL_STATE(993)] = 38679, + [SMALL_STATE(994)] = 38794, + [SMALL_STATE(995)] = 38855, + [SMALL_STATE(996)] = 38912, + [SMALL_STATE(997)] = 38973, + [SMALL_STATE(998)] = 39030, + [SMALL_STATE(999)] = 39145, + [SMALL_STATE(1000)] = 39206, + [SMALL_STATE(1001)] = 39267, + [SMALL_STATE(1002)] = 39328, + [SMALL_STATE(1003)] = 39385, + [SMALL_STATE(1004)] = 39442, + [SMALL_STATE(1005)] = 39499, + [SMALL_STATE(1006)] = 39556, + [SMALL_STATE(1007)] = 39613, + [SMALL_STATE(1008)] = 39670, + [SMALL_STATE(1009)] = 39727, + [SMALL_STATE(1010)] = 39784, + [SMALL_STATE(1011)] = 39841, + [SMALL_STATE(1012)] = 39898, + [SMALL_STATE(1013)] = 39955, + [SMALL_STATE(1014)] = 40012, + [SMALL_STATE(1015)] = 40069, + [SMALL_STATE(1016)] = 40126, + [SMALL_STATE(1017)] = 40183, + [SMALL_STATE(1018)] = 40240, + [SMALL_STATE(1019)] = 40297, + [SMALL_STATE(1020)] = 40354, + [SMALL_STATE(1021)] = 40411, + [SMALL_STATE(1022)] = 40468, + [SMALL_STATE(1023)] = 40565, + [SMALL_STATE(1024)] = 40622, + [SMALL_STATE(1025)] = 40719, + [SMALL_STATE(1026)] = 40780, + [SMALL_STATE(1027)] = 40837, + [SMALL_STATE(1028)] = 40894, + [SMALL_STATE(1029)] = 40951, + [SMALL_STATE(1030)] = 41012, + [SMALL_STATE(1031)] = 41073, + [SMALL_STATE(1032)] = 41134, + [SMALL_STATE(1033)] = 41191, + [SMALL_STATE(1034)] = 41248, + [SMALL_STATE(1035)] = 41305, + [SMALL_STATE(1036)] = 41374, + [SMALL_STATE(1037)] = 41431, + [SMALL_STATE(1038)] = 41488, + [SMALL_STATE(1039)] = 41545, + [SMALL_STATE(1040)] = 41602, + [SMALL_STATE(1041)] = 41659, + [SMALL_STATE(1042)] = 41716, + [SMALL_STATE(1043)] = 41777, + [SMALL_STATE(1044)] = 41838, + [SMALL_STATE(1045)] = 41895, + [SMALL_STATE(1046)] = 41952, + [SMALL_STATE(1047)] = 42013, + [SMALL_STATE(1048)] = 42074, + [SMALL_STATE(1049)] = 42131, + [SMALL_STATE(1050)] = 42192, + [SMALL_STATE(1051)] = 42253, + [SMALL_STATE(1052)] = 42368, + [SMALL_STATE(1053)] = 42430, + [SMALL_STATE(1054)] = 42490, + [SMALL_STATE(1055)] = 42546, + [SMALL_STATE(1056)] = 42602, + [SMALL_STATE(1057)] = 42658, + [SMALL_STATE(1058)] = 42714, + [SMALL_STATE(1059)] = 42776, + [SMALL_STATE(1060)] = 42836, + [SMALL_STATE(1061)] = 42896, + [SMALL_STATE(1062)] = 42958, + [SMALL_STATE(1063)] = 43018, + [SMALL_STATE(1064)] = 43078, + [SMALL_STATE(1065)] = 43152, + [SMALL_STATE(1066)] = 43226, + [SMALL_STATE(1067)] = 43288, + [SMALL_STATE(1068)] = 43348, + [SMALL_STATE(1069)] = 43404, + [SMALL_STATE(1070)] = 43468, + [SMALL_STATE(1071)] = 43532, + [SMALL_STATE(1072)] = 43592, + [SMALL_STATE(1073)] = 43652, + [SMALL_STATE(1074)] = 43708, + [SMALL_STATE(1075)] = 43768, + [SMALL_STATE(1076)] = 43828, + [SMALL_STATE(1077)] = 43896, + [SMALL_STATE(1078)] = 43952, + [SMALL_STATE(1079)] = 44012, + [SMALL_STATE(1080)] = 44074, + [SMALL_STATE(1081)] = 44134, + [SMALL_STATE(1082)] = 44190, + [SMALL_STATE(1083)] = 44246, + [SMALL_STATE(1084)] = 44302, + [SMALL_STATE(1085)] = 44358, + [SMALL_STATE(1086)] = 44454, + [SMALL_STATE(1087)] = 44516, + [SMALL_STATE(1088)] = 44576, + [SMALL_STATE(1089)] = 44632, + [SMALL_STATE(1090)] = 44694, + [SMALL_STATE(1091)] = 44754, + [SMALL_STATE(1092)] = 44810, + [SMALL_STATE(1093)] = 44872, + [SMALL_STATE(1094)] = 44932, + [SMALL_STATE(1095)] = 44988, + [SMALL_STATE(1096)] = 45044, + [SMALL_STATE(1097)] = 45100, + [SMALL_STATE(1098)] = 45156, + [SMALL_STATE(1099)] = 45212, + [SMALL_STATE(1100)] = 45268, + [SMALL_STATE(1101)] = 45328, + [SMALL_STATE(1102)] = 45388, + [SMALL_STATE(1103)] = 45444, + [SMALL_STATE(1104)] = 45504, + [SMALL_STATE(1105)] = 45566, + [SMALL_STATE(1106)] = 45626, + [SMALL_STATE(1107)] = 45682, + [SMALL_STATE(1108)] = 45738, + [SMALL_STATE(1109)] = 45794, + [SMALL_STATE(1110)] = 45856, + [SMALL_STATE(1111)] = 45916, + [SMALL_STATE(1112)] = 46012, + [SMALL_STATE(1113)] = 46068, + [SMALL_STATE(1114)] = 46128, + [SMALL_STATE(1115)] = 46188, + [SMALL_STATE(1116)] = 46284, + [SMALL_STATE(1117)] = 46344, + [SMALL_STATE(1118)] = 46440, + [SMALL_STATE(1119)] = 46496, + [SMALL_STATE(1120)] = 46552, + [SMALL_STATE(1121)] = 46612, + [SMALL_STATE(1122)] = 46680, + [SMALL_STATE(1123)] = 46736, + [SMALL_STATE(1124)] = 46792, + [SMALL_STATE(1125)] = 46848, + [SMALL_STATE(1126)] = 46904, + [SMALL_STATE(1127)] = 46960, + [SMALL_STATE(1128)] = 47016, + [SMALL_STATE(1129)] = 47084, + [SMALL_STATE(1130)] = 47146, + [SMALL_STATE(1131)] = 47202, + [SMALL_STATE(1132)] = 47258, + [SMALL_STATE(1133)] = 47314, + [SMALL_STATE(1134)] = 47370, + [SMALL_STATE(1135)] = 47426, + [SMALL_STATE(1136)] = 47482, + [SMALL_STATE(1137)] = 47544, + [SMALL_STATE(1138)] = 47600, + [SMALL_STATE(1139)] = 47656, + [SMALL_STATE(1140)] = 47716, + [SMALL_STATE(1141)] = 47772, + [SMALL_STATE(1142)] = 47828, + [SMALL_STATE(1143)] = 47884, + [SMALL_STATE(1144)] = 47946, + [SMALL_STATE(1145)] = 48006, + [SMALL_STATE(1146)] = 48068, + [SMALL_STATE(1147)] = 48128, + [SMALL_STATE(1148)] = 48196, + [SMALL_STATE(1149)] = 48251, + [SMALL_STATE(1150)] = 48306, + [SMALL_STATE(1151)] = 48361, + [SMALL_STATE(1152)] = 48422, + [SMALL_STATE(1153)] = 48477, + [SMALL_STATE(1154)] = 48532, + [SMALL_STATE(1155)] = 48587, + [SMALL_STATE(1156)] = 48642, + [SMALL_STATE(1157)] = 48697, + [SMALL_STATE(1158)] = 48752, + [SMALL_STATE(1159)] = 48807, + [SMALL_STATE(1160)] = 48862, + [SMALL_STATE(1161)] = 48921, + [SMALL_STATE(1162)] = 48982, + [SMALL_STATE(1163)] = 49091, + [SMALL_STATE(1164)] = 49146, + [SMALL_STATE(1165)] = 49201, + [SMALL_STATE(1166)] = 49256, + [SMALL_STATE(1167)] = 49311, + [SMALL_STATE(1168)] = 49366, + [SMALL_STATE(1169)] = 49421, + [SMALL_STATE(1170)] = 49476, + [SMALL_STATE(1171)] = 49531, + [SMALL_STATE(1172)] = 49592, + [SMALL_STATE(1173)] = 49647, + [SMALL_STATE(1174)] = 49708, + [SMALL_STATE(1175)] = 49763, + [SMALL_STATE(1176)] = 49818, + [SMALL_STATE(1177)] = 49873, + [SMALL_STATE(1178)] = 49982, + [SMALL_STATE(1179)] = 50037, + [SMALL_STATE(1180)] = 50092, + [SMALL_STATE(1181)] = 50147, + [SMALL_STATE(1182)] = 50202, + [SMALL_STATE(1183)] = 50257, + [SMALL_STATE(1184)] = 50312, + [SMALL_STATE(1185)] = 50367, + [SMALL_STATE(1186)] = 50422, + [SMALL_STATE(1187)] = 50483, + [SMALL_STATE(1188)] = 50544, + [SMALL_STATE(1189)] = 50611, + [SMALL_STATE(1190)] = 50666, + [SMALL_STATE(1191)] = 50739, + [SMALL_STATE(1192)] = 50800, + [SMALL_STATE(1193)] = 50855, + [SMALL_STATE(1194)] = 50922, + [SMALL_STATE(1195)] = 50977, + [SMALL_STATE(1196)] = 51032, + [SMALL_STATE(1197)] = 51127, + [SMALL_STATE(1198)] = 51236, + [SMALL_STATE(1199)] = 51331, + [SMALL_STATE(1200)] = 51386, + [SMALL_STATE(1201)] = 51445, + [SMALL_STATE(1202)] = 51508, + [SMALL_STATE(1203)] = 51563, + [SMALL_STATE(1204)] = 51626, + [SMALL_STATE(1205)] = 51681, + [SMALL_STATE(1206)] = 51736, + [SMALL_STATE(1207)] = 51791, + [SMALL_STATE(1208)] = 51846, + [SMALL_STATE(1209)] = 51901, + [SMALL_STATE(1210)] = 51962, + [SMALL_STATE(1211)] = 52017, + [SMALL_STATE(1212)] = 52072, + [SMALL_STATE(1213)] = 52127, + [SMALL_STATE(1214)] = 52182, + [SMALL_STATE(1215)] = 52237, + [SMALL_STATE(1216)] = 52298, + [SMALL_STATE(1217)] = 52353, + [SMALL_STATE(1218)] = 52408, + [SMALL_STATE(1219)] = 52463, + [SMALL_STATE(1220)] = 52518, + [SMALL_STATE(1221)] = 52593, + [SMALL_STATE(1222)] = 52702, + [SMALL_STATE(1223)] = 52757, + [SMALL_STATE(1224)] = 52812, + [SMALL_STATE(1225)] = 52867, + [SMALL_STATE(1226)] = 52928, + [SMALL_STATE(1227)] = 52983, + [SMALL_STATE(1228)] = 53038, + [SMALL_STATE(1229)] = 53093, + [SMALL_STATE(1230)] = 53148, + [SMALL_STATE(1231)] = 53203, + [SMALL_STATE(1232)] = 53258, + [SMALL_STATE(1233)] = 53313, + [SMALL_STATE(1234)] = 53368, + [SMALL_STATE(1235)] = 53423, + [SMALL_STATE(1236)] = 53478, + [SMALL_STATE(1237)] = 53533, + [SMALL_STATE(1238)] = 53588, + [SMALL_STATE(1239)] = 53643, + [SMALL_STATE(1240)] = 53704, + [SMALL_STATE(1241)] = 53759, + [SMALL_STATE(1242)] = 53820, + [SMALL_STATE(1243)] = 53929, + [SMALL_STATE(1244)] = 53984, + [SMALL_STATE(1245)] = 54039, + [SMALL_STATE(1246)] = 54094, + [SMALL_STATE(1247)] = 54153, + [SMALL_STATE(1248)] = 54208, + [SMALL_STATE(1249)] = 54263, + [SMALL_STATE(1250)] = 54326, + [SMALL_STATE(1251)] = 54381, + [SMALL_STATE(1252)] = 54436, + [SMALL_STATE(1253)] = 54491, + [SMALL_STATE(1254)] = 54546, + [SMALL_STATE(1255)] = 54601, + [SMALL_STATE(1256)] = 54662, + [SMALL_STATE(1257)] = 54717, + [SMALL_STATE(1258)] = 54776, + [SMALL_STATE(1259)] = 54831, + [SMALL_STATE(1260)] = 54886, + [SMALL_STATE(1261)] = 54947, + [SMALL_STATE(1262)] = 55002, + [SMALL_STATE(1263)] = 55057, + [SMALL_STATE(1264)] = 55120, + [SMALL_STATE(1265)] = 55189, + [SMALL_STATE(1266)] = 55256, + [SMALL_STATE(1267)] = 55311, + [SMALL_STATE(1268)] = 55366, + [SMALL_STATE(1269)] = 55421, + [SMALL_STATE(1270)] = 55487, + [SMALL_STATE(1271)] = 55541, + [SMALL_STATE(1272)] = 55595, + [SMALL_STATE(1273)] = 55649, + [SMALL_STATE(1274)] = 55703, + [SMALL_STATE(1275)] = 55757, + [SMALL_STATE(1276)] = 55811, + [SMALL_STATE(1277)] = 55865, + [SMALL_STATE(1278)] = 55919, + [SMALL_STATE(1279)] = 55973, + [SMALL_STATE(1280)] = 56027, + [SMALL_STATE(1281)] = 56081, + [SMALL_STATE(1282)] = 56135, + [SMALL_STATE(1283)] = 56189, + [SMALL_STATE(1284)] = 56295, + [SMALL_STATE(1285)] = 56353, + [SMALL_STATE(1286)] = 56413, + [SMALL_STATE(1287)] = 56467, + [SMALL_STATE(1288)] = 56521, + [SMALL_STATE(1289)] = 56575, + [SMALL_STATE(1290)] = 56629, + [SMALL_STATE(1291)] = 56683, + [SMALL_STATE(1292)] = 56737, + [SMALL_STATE(1293)] = 56791, + [SMALL_STATE(1294)] = 56845, + [SMALL_STATE(1295)] = 56899, + [SMALL_STATE(1296)] = 56953, + [SMALL_STATE(1297)] = 57007, + [SMALL_STATE(1298)] = 57071, + [SMALL_STATE(1299)] = 57177, + [SMALL_STATE(1300)] = 57283, + [SMALL_STATE(1301)] = 57347, + [SMALL_STATE(1302)] = 57401, + [SMALL_STATE(1303)] = 57465, + [SMALL_STATE(1304)] = 57531, + [SMALL_STATE(1305)] = 57595, + [SMALL_STATE(1306)] = 57649, + [SMALL_STATE(1307)] = 57713, + [SMALL_STATE(1308)] = 57767, + [SMALL_STATE(1309)] = 57827, + [SMALL_STATE(1310)] = 57891, + [SMALL_STATE(1311)] = 57945, + [SMALL_STATE(1312)] = 58009, + [SMALL_STATE(1313)] = 58073, + [SMALL_STATE(1314)] = 58137, + [SMALL_STATE(1315)] = 58201, + [SMALL_STATE(1316)] = 58265, + [SMALL_STATE(1317)] = 58329, + [SMALL_STATE(1318)] = 58393, + [SMALL_STATE(1319)] = 58457, + [SMALL_STATE(1320)] = 58521, + [SMALL_STATE(1321)] = 58585, + [SMALL_STATE(1322)] = 58649, + [SMALL_STATE(1323)] = 58713, + [SMALL_STATE(1324)] = 58777, + [SMALL_STATE(1325)] = 58841, + [SMALL_STATE(1326)] = 58905, + [SMALL_STATE(1327)] = 58969, + [SMALL_STATE(1328)] = 59033, + [SMALL_STATE(1329)] = 59097, + [SMALL_STATE(1330)] = 59161, + [SMALL_STATE(1331)] = 59225, + [SMALL_STATE(1332)] = 59289, + [SMALL_STATE(1333)] = 59353, + [SMALL_STATE(1334)] = 59417, + [SMALL_STATE(1335)] = 59481, + [SMALL_STATE(1336)] = 59545, + [SMALL_STATE(1337)] = 59609, + [SMALL_STATE(1338)] = 59673, + [SMALL_STATE(1339)] = 59737, + [SMALL_STATE(1340)] = 59801, + [SMALL_STATE(1341)] = 59865, + [SMALL_STATE(1342)] = 59929, + [SMALL_STATE(1343)] = 59993, + [SMALL_STATE(1344)] = 60057, + [SMALL_STATE(1345)] = 60121, + [SMALL_STATE(1346)] = 60185, + [SMALL_STATE(1347)] = 60249, + [SMALL_STATE(1348)] = 60313, + [SMALL_STATE(1349)] = 60377, + [SMALL_STATE(1350)] = 60441, + [SMALL_STATE(1351)] = 60505, + [SMALL_STATE(1352)] = 60569, + [SMALL_STATE(1353)] = 60633, + [SMALL_STATE(1354)] = 60697, + [SMALL_STATE(1355)] = 60761, + [SMALL_STATE(1356)] = 60825, + [SMALL_STATE(1357)] = 60889, + [SMALL_STATE(1358)] = 60943, + [SMALL_STATE(1359)] = 61007, + [SMALL_STATE(1360)] = 61071, + [SMALL_STATE(1361)] = 61135, + [SMALL_STATE(1362)] = 61199, + [SMALL_STATE(1363)] = 61263, + [SMALL_STATE(1364)] = 61327, + [SMALL_STATE(1365)] = 61391, + [SMALL_STATE(1366)] = 61455, + [SMALL_STATE(1367)] = 61519, + [SMALL_STATE(1368)] = 61583, + [SMALL_STATE(1369)] = 61647, + [SMALL_STATE(1370)] = 61711, + [SMALL_STATE(1371)] = 61775, + [SMALL_STATE(1372)] = 61839, + [SMALL_STATE(1373)] = 61903, + [SMALL_STATE(1374)] = 61967, + [SMALL_STATE(1375)] = 62031, + [SMALL_STATE(1376)] = 62095, + [SMALL_STATE(1377)] = 62149, + [SMALL_STATE(1378)] = 62255, + [SMALL_STATE(1379)] = 62309, + [SMALL_STATE(1380)] = 62363, + [SMALL_STATE(1381)] = 62469, + [SMALL_STATE(1382)] = 62533, + [SMALL_STATE(1383)] = 62639, + [SMALL_STATE(1384)] = 62745, + [SMALL_STATE(1385)] = 62851, + [SMALL_STATE(1386)] = 62957, + [SMALL_STATE(1387)] = 63063, + [SMALL_STATE(1388)] = 63169, + [SMALL_STATE(1389)] = 63229, + [SMALL_STATE(1390)] = 63287, + [SMALL_STATE(1391)] = 63345, + [SMALL_STATE(1392)] = 63403, + [SMALL_STATE(1393)] = 63463, + [SMALL_STATE(1394)] = 63517, + [SMALL_STATE(1395)] = 63571, + [SMALL_STATE(1396)] = 63677, + [SMALL_STATE(1397)] = 63737, + [SMALL_STATE(1398)] = 63791, + [SMALL_STATE(1399)] = 63851, + [SMALL_STATE(1400)] = 63905, + [SMALL_STATE(1401)] = 63959, + [SMALL_STATE(1402)] = 64013, + [SMALL_STATE(1403)] = 64067, + [SMALL_STATE(1404)] = 64127, + [SMALL_STATE(1405)] = 64181, + [SMALL_STATE(1406)] = 64235, + [SMALL_STATE(1407)] = 64293, + [SMALL_STATE(1408)] = 64347, + [SMALL_STATE(1409)] = 64401, + [SMALL_STATE(1410)] = 64459, + [SMALL_STATE(1411)] = 64513, + [SMALL_STATE(1412)] = 64567, + [SMALL_STATE(1413)] = 64627, + [SMALL_STATE(1414)] = 64733, + [SMALL_STATE(1415)] = 64839, + [SMALL_STATE(1416)] = 64893, + [SMALL_STATE(1417)] = 64947, + [SMALL_STATE(1418)] = 65001, + [SMALL_STATE(1419)] = 65055, + [SMALL_STATE(1420)] = 65109, + [SMALL_STATE(1421)] = 65163, + [SMALL_STATE(1422)] = 65217, + [SMALL_STATE(1423)] = 65271, + [SMALL_STATE(1424)] = 65325, + [SMALL_STATE(1425)] = 65379, + [SMALL_STATE(1426)] = 65433, + [SMALL_STATE(1427)] = 65487, + [SMALL_STATE(1428)] = 65541, + [SMALL_STATE(1429)] = 65595, + [SMALL_STATE(1430)] = 65649, + [SMALL_STATE(1431)] = 65713, + [SMALL_STATE(1432)] = 65766, + [SMALL_STATE(1433)] = 65819, + [SMALL_STATE(1434)] = 65872, + [SMALL_STATE(1435)] = 65925, + [SMALL_STATE(1436)] = 65978, + [SMALL_STATE(1437)] = 66081, + [SMALL_STATE(1438)] = 66134, + [SMALL_STATE(1439)] = 66187, + [SMALL_STATE(1440)] = 66240, + [SMALL_STATE(1441)] = 66343, + [SMALL_STATE(1442)] = 66446, + [SMALL_STATE(1443)] = 66549, + [SMALL_STATE(1444)] = 66652, + [SMALL_STATE(1445)] = 66755, + [SMALL_STATE(1446)] = 66812, + [SMALL_STATE(1447)] = 66865, + [SMALL_STATE(1448)] = 66922, + [SMALL_STATE(1449)] = 66981, + [SMALL_STATE(1450)] = 67084, + [SMALL_STATE(1451)] = 67187, + [SMALL_STATE(1452)] = 67290, + [SMALL_STATE(1453)] = 67393, + [SMALL_STATE(1454)] = 67496, + [SMALL_STATE(1455)] = 67549, + [SMALL_STATE(1456)] = 67652, + [SMALL_STATE(1457)] = 67755, + [SMALL_STATE(1458)] = 67858, + [SMALL_STATE(1459)] = 67961, + [SMALL_STATE(1460)] = 68064, + [SMALL_STATE(1461)] = 68167, + [SMALL_STATE(1462)] = 68270, + [SMALL_STATE(1463)] = 68373, + [SMALL_STATE(1464)] = 68476, + [SMALL_STATE(1465)] = 68579, + [SMALL_STATE(1466)] = 68682, + [SMALL_STATE(1467)] = 68785, + [SMALL_STATE(1468)] = 68888, + [SMALL_STATE(1469)] = 68991, + [SMALL_STATE(1470)] = 69094, + [SMALL_STATE(1471)] = 69197, + [SMALL_STATE(1472)] = 69250, + [SMALL_STATE(1473)] = 69353, + [SMALL_STATE(1474)] = 69456, + [SMALL_STATE(1475)] = 69559, + [SMALL_STATE(1476)] = 69662, + [SMALL_STATE(1477)] = 69765, + [SMALL_STATE(1478)] = 69868, + [SMALL_STATE(1479)] = 69971, + [SMALL_STATE(1480)] = 70028, + [SMALL_STATE(1481)] = 70085, + [SMALL_STATE(1482)] = 70188, + [SMALL_STATE(1483)] = 70291, + [SMALL_STATE(1484)] = 70394, + [SMALL_STATE(1485)] = 70497, + [SMALL_STATE(1486)] = 70600, + [SMALL_STATE(1487)] = 70703, + [SMALL_STATE(1488)] = 70766, + [SMALL_STATE(1489)] = 70869, + [SMALL_STATE(1490)] = 70972, + [SMALL_STATE(1491)] = 71075, + [SMALL_STATE(1492)] = 71178, + [SMALL_STATE(1493)] = 71281, + [SMALL_STATE(1494)] = 71384, + [SMALL_STATE(1495)] = 71487, + [SMALL_STATE(1496)] = 71590, + [SMALL_STATE(1497)] = 71647, + [SMALL_STATE(1498)] = 71750, + [SMALL_STATE(1499)] = 71853, + [SMALL_STATE(1500)] = 71956, + [SMALL_STATE(1501)] = 72059, + [SMALL_STATE(1502)] = 72116, + [SMALL_STATE(1503)] = 72173, + [SMALL_STATE(1504)] = 72276, + [SMALL_STATE(1505)] = 72333, + [SMALL_STATE(1506)] = 72390, + [SMALL_STATE(1507)] = 72447, + [SMALL_STATE(1508)] = 72550, + [SMALL_STATE(1509)] = 72653, + [SMALL_STATE(1510)] = 72756, + [SMALL_STATE(1511)] = 72859, + [SMALL_STATE(1512)] = 72962, + [SMALL_STATE(1513)] = 73015, + [SMALL_STATE(1514)] = 73118, + [SMALL_STATE(1515)] = 73221, + [SMALL_STATE(1516)] = 73274, + [SMALL_STATE(1517)] = 73377, + [SMALL_STATE(1518)] = 73480, + [SMALL_STATE(1519)] = 73583, + [SMALL_STATE(1520)] = 73686, + [SMALL_STATE(1521)] = 73789, + [SMALL_STATE(1522)] = 73842, + [SMALL_STATE(1523)] = 73895, + [SMALL_STATE(1524)] = 73998, + [SMALL_STATE(1525)] = 74051, + [SMALL_STATE(1526)] = 74154, + [SMALL_STATE(1527)] = 74257, + [SMALL_STATE(1528)] = 74360, + [SMALL_STATE(1529)] = 74463, + [SMALL_STATE(1530)] = 74516, + [SMALL_STATE(1531)] = 74619, + [SMALL_STATE(1532)] = 74722, + [SMALL_STATE(1533)] = 74825, + [SMALL_STATE(1534)] = 74928, + [SMALL_STATE(1535)] = 74981, + [SMALL_STATE(1536)] = 75084, + [SMALL_STATE(1537)] = 75187, + [SMALL_STATE(1538)] = 75290, + [SMALL_STATE(1539)] = 75393, + [SMALL_STATE(1540)] = 75496, + [SMALL_STATE(1541)] = 75599, + [SMALL_STATE(1542)] = 75656, + [SMALL_STATE(1543)] = 75709, + [SMALL_STATE(1544)] = 75774, + [SMALL_STATE(1545)] = 75877, + [SMALL_STATE(1546)] = 75936, + [SMALL_STATE(1547)] = 75989, + [SMALL_STATE(1548)] = 76042, + [SMALL_STATE(1549)] = 76095, + [SMALL_STATE(1550)] = 76148, + [SMALL_STATE(1551)] = 76201, + [SMALL_STATE(1552)] = 76304, + [SMALL_STATE(1553)] = 76407, + [SMALL_STATE(1554)] = 76510, + [SMALL_STATE(1555)] = 76563, + [SMALL_STATE(1556)] = 76616, + [SMALL_STATE(1557)] = 76719, + [SMALL_STATE(1558)] = 76776, + [SMALL_STATE(1559)] = 76879, + [SMALL_STATE(1560)] = 76932, + [SMALL_STATE(1561)] = 77035, + [SMALL_STATE(1562)] = 77088, + [SMALL_STATE(1563)] = 77145, + [SMALL_STATE(1564)] = 77198, + [SMALL_STATE(1565)] = 77301, + [SMALL_STATE(1566)] = 77366, + [SMALL_STATE(1567)] = 77419, + [SMALL_STATE(1568)] = 77472, + [SMALL_STATE(1569)] = 77575, + [SMALL_STATE(1570)] = 77628, + [SMALL_STATE(1571)] = 77685, + [SMALL_STATE(1572)] = 77738, + [SMALL_STATE(1573)] = 77841, + [SMALL_STATE(1574)] = 77898, + [SMALL_STATE(1575)] = 77951, + [SMALL_STATE(1576)] = 78004, + [SMALL_STATE(1577)] = 78057, + [SMALL_STATE(1578)] = 78110, + [SMALL_STATE(1579)] = 78169, + [SMALL_STATE(1580)] = 78272, + [SMALL_STATE(1581)] = 78331, + [SMALL_STATE(1582)] = 78392, + [SMALL_STATE(1583)] = 78445, + [SMALL_STATE(1584)] = 78506, + [SMALL_STATE(1585)] = 78609, + [SMALL_STATE(1586)] = 78666, + [SMALL_STATE(1587)] = 78769, + [SMALL_STATE(1588)] = 78822, + [SMALL_STATE(1589)] = 78879, + [SMALL_STATE(1590)] = 78936, + [SMALL_STATE(1591)] = 78993, + [SMALL_STATE(1592)] = 79050, + [SMALL_STATE(1593)] = 79107, + [SMALL_STATE(1594)] = 79164, + [SMALL_STATE(1595)] = 79267, + [SMALL_STATE(1596)] = 79320, + [SMALL_STATE(1597)] = 79376, + [SMALL_STATE(1598)] = 79428, + [SMALL_STATE(1599)] = 79484, + [SMALL_STATE(1600)] = 79536, + [SMALL_STATE(1601)] = 79588, + [SMALL_STATE(1602)] = 79640, + [SMALL_STATE(1603)] = 79692, + [SMALL_STATE(1604)] = 79748, + [SMALL_STATE(1605)] = 79800, + [SMALL_STATE(1606)] = 79852, + [SMALL_STATE(1607)] = 79908, + [SMALL_STATE(1608)] = 79966, + [SMALL_STATE(1609)] = 80018, + [SMALL_STATE(1610)] = 80070, + [SMALL_STATE(1611)] = 80122, + [SMALL_STATE(1612)] = 80174, + [SMALL_STATE(1613)] = 80226, + [SMALL_STATE(1614)] = 80278, + [SMALL_STATE(1615)] = 80330, + [SMALL_STATE(1616)] = 80382, + [SMALL_STATE(1617)] = 80434, + [SMALL_STATE(1618)] = 80486, + [SMALL_STATE(1619)] = 80542, + [SMALL_STATE(1620)] = 80598, + [SMALL_STATE(1621)] = 80650, + [SMALL_STATE(1622)] = 80702, + [SMALL_STATE(1623)] = 80758, + [SMALL_STATE(1624)] = 80814, + [SMALL_STATE(1625)] = 80866, + [SMALL_STATE(1626)] = 80918, + [SMALL_STATE(1627)] = 80970, + [SMALL_STATE(1628)] = 81022, + [SMALL_STATE(1629)] = 81074, + [SMALL_STATE(1630)] = 81126, + [SMALL_STATE(1631)] = 81178, + [SMALL_STATE(1632)] = 81230, + [SMALL_STATE(1633)] = 81282, + [SMALL_STATE(1634)] = 81334, + [SMALL_STATE(1635)] = 81386, + [SMALL_STATE(1636)] = 81438, + [SMALL_STATE(1637)] = 81490, + [SMALL_STATE(1638)] = 81542, + [SMALL_STATE(1639)] = 81594, + [SMALL_STATE(1640)] = 81650, + [SMALL_STATE(1641)] = 81706, + [SMALL_STATE(1642)] = 81758, + [SMALL_STATE(1643)] = 81814, + [SMALL_STATE(1644)] = 81870, + [SMALL_STATE(1645)] = 81926, + [SMALL_STATE(1646)] = 81978, + [SMALL_STATE(1647)] = 82034, + [SMALL_STATE(1648)] = 82086, + [SMALL_STATE(1649)] = 82138, + [SMALL_STATE(1650)] = 82190, + [SMALL_STATE(1651)] = 82242, + [SMALL_STATE(1652)] = 82294, + [SMALL_STATE(1653)] = 82346, + [SMALL_STATE(1654)] = 82398, + [SMALL_STATE(1655)] = 82454, + [SMALL_STATE(1656)] = 82510, + [SMALL_STATE(1657)] = 82562, + [SMALL_STATE(1658)] = 82614, + [SMALL_STATE(1659)] = 82666, + [SMALL_STATE(1660)] = 82722, + [SMALL_STATE(1661)] = 82778, + [SMALL_STATE(1662)] = 82830, + [SMALL_STATE(1663)] = 82882, + [SMALL_STATE(1664)] = 82940, + [SMALL_STATE(1665)] = 82992, + [SMALL_STATE(1666)] = 83044, + [SMALL_STATE(1667)] = 83096, + [SMALL_STATE(1668)] = 83152, + [SMALL_STATE(1669)] = 83204, + [SMALL_STATE(1670)] = 83256, + [SMALL_STATE(1671)] = 83308, + [SMALL_STATE(1672)] = 83360, + [SMALL_STATE(1673)] = 83412, + [SMALL_STATE(1674)] = 83464, + [SMALL_STATE(1675)] = 83516, + [SMALL_STATE(1676)] = 83568, + [SMALL_STATE(1677)] = 83620, + [SMALL_STATE(1678)] = 83671, + [SMALL_STATE(1679)] = 83722, + [SMALL_STATE(1680)] = 83777, + [SMALL_STATE(1681)] = 83828, + [SMALL_STATE(1682)] = 83879, + [SMALL_STATE(1683)] = 83930, + [SMALL_STATE(1684)] = 83981, + [SMALL_STATE(1685)] = 84032, + [SMALL_STATE(1686)] = 84083, + [SMALL_STATE(1687)] = 84184, + [SMALL_STATE(1688)] = 84235, + [SMALL_STATE(1689)] = 84336, + [SMALL_STATE(1690)] = 84387, + [SMALL_STATE(1691)] = 84438, + [SMALL_STATE(1692)] = 84493, + [SMALL_STATE(1693)] = 84544, + [SMALL_STATE(1694)] = 84645, + [SMALL_STATE(1695)] = 84696, + [SMALL_STATE(1696)] = 84747, + [SMALL_STATE(1697)] = 84798, + [SMALL_STATE(1698)] = 84849, + [SMALL_STATE(1699)] = 84900, + [SMALL_STATE(1700)] = 84951, + [SMALL_STATE(1701)] = 85002, + [SMALL_STATE(1702)] = 85053, + [SMALL_STATE(1703)] = 85104, + [SMALL_STATE(1704)] = 85205, + [SMALL_STATE(1705)] = 85256, + [SMALL_STATE(1706)] = 85307, + [SMALL_STATE(1707)] = 85362, + [SMALL_STATE(1708)] = 85413, + [SMALL_STATE(1709)] = 85468, + [SMALL_STATE(1710)] = 85519, + [SMALL_STATE(1711)] = 85570, + [SMALL_STATE(1712)] = 85621, + [SMALL_STATE(1713)] = 85672, + [SMALL_STATE(1714)] = 85727, + [SMALL_STATE(1715)] = 85782, + [SMALL_STATE(1716)] = 85833, + [SMALL_STATE(1717)] = 85888, + [SMALL_STATE(1718)] = 85943, + [SMALL_STATE(1719)] = 85998, + [SMALL_STATE(1720)] = 86099, + [SMALL_STATE(1721)] = 86150, + [SMALL_STATE(1722)] = 86205, + [SMALL_STATE(1723)] = 86256, + [SMALL_STATE(1724)] = 86307, + [SMALL_STATE(1725)] = 86358, + [SMALL_STATE(1726)] = 86409, + [SMALL_STATE(1727)] = 86460, + [SMALL_STATE(1728)] = 86511, + [SMALL_STATE(1729)] = 86562, + [SMALL_STATE(1730)] = 86663, + [SMALL_STATE(1731)] = 86764, + [SMALL_STATE(1732)] = 86865, + [SMALL_STATE(1733)] = 86920, + [SMALL_STATE(1734)] = 86975, + [SMALL_STATE(1735)] = 87026, + [SMALL_STATE(1736)] = 87077, + [SMALL_STATE(1737)] = 87128, + [SMALL_STATE(1738)] = 87182, + [SMALL_STATE(1739)] = 87232, + [SMALL_STATE(1740)] = 87282, + [SMALL_STATE(1741)] = 87336, + [SMALL_STATE(1742)] = 87390, + [SMALL_STATE(1743)] = 87440, + [SMALL_STATE(1744)] = 87494, + [SMALL_STATE(1745)] = 87548, + [SMALL_STATE(1746)] = 87598, + [SMALL_STATE(1747)] = 87652, + [SMALL_STATE(1748)] = 87706, + [SMALL_STATE(1749)] = 87762, + [SMALL_STATE(1750)] = 87816, + [SMALL_STATE(1751)] = 87870, + [SMALL_STATE(1752)] = 87920, + [SMALL_STATE(1753)] = 87970, + [SMALL_STATE(1754)] = 88024, + [SMALL_STATE(1755)] = 88078, + [SMALL_STATE(1756)] = 88132, + [SMALL_STATE(1757)] = 88190, + [SMALL_STATE(1758)] = 88244, + [SMALL_STATE(1759)] = 88294, + [SMALL_STATE(1760)] = 88352, + [SMALL_STATE(1761)] = 88402, + [SMALL_STATE(1762)] = 88456, + [SMALL_STATE(1763)] = 88510, + [SMALL_STATE(1764)] = 88566, + [SMALL_STATE(1765)] = 88620, + [SMALL_STATE(1766)] = 88674, + [SMALL_STATE(1767)] = 88730, + [SMALL_STATE(1768)] = 88784, + [SMALL_STATE(1769)] = 88838, + [SMALL_STATE(1770)] = 88892, + [SMALL_STATE(1771)] = 88946, + [SMALL_STATE(1772)] = 89000, + [SMALL_STATE(1773)] = 89050, + [SMALL_STATE(1774)] = 89107, + [SMALL_STATE(1775)] = 89156, + [SMALL_STATE(1776)] = 89205, + [SMALL_STATE(1777)] = 89254, + [SMALL_STATE(1778)] = 89303, + [SMALL_STATE(1779)] = 89352, + [SMALL_STATE(1780)] = 89401, + [SMALL_STATE(1781)] = 89450, + [SMALL_STATE(1782)] = 89499, + [SMALL_STATE(1783)] = 89548, + [SMALL_STATE(1784)] = 89597, + [SMALL_STATE(1785)] = 89646, + [SMALL_STATE(1786)] = 89695, + [SMALL_STATE(1787)] = 89744, + [SMALL_STATE(1788)] = 89793, + [SMALL_STATE(1789)] = 89842, + [SMALL_STATE(1790)] = 89891, + [SMALL_STATE(1791)] = 89948, + [SMALL_STATE(1792)] = 89997, + [SMALL_STATE(1793)] = 90046, + [SMALL_STATE(1794)] = 90095, + [SMALL_STATE(1795)] = 90144, + [SMALL_STATE(1796)] = 90197, + [SMALL_STATE(1797)] = 90246, + [SMALL_STATE(1798)] = 90295, + [SMALL_STATE(1799)] = 90344, + [SMALL_STATE(1800)] = 90393, + [SMALL_STATE(1801)] = 90446, + [SMALL_STATE(1802)] = 90495, + [SMALL_STATE(1803)] = 90544, + [SMALL_STATE(1804)] = 90593, + [SMALL_STATE(1805)] = 90642, + [SMALL_STATE(1806)] = 90691, + [SMALL_STATE(1807)] = 90740, + [SMALL_STATE(1808)] = 90789, + [SMALL_STATE(1809)] = 90838, + [SMALL_STATE(1810)] = 90893, + [SMALL_STATE(1811)] = 90946, + [SMALL_STATE(1812)] = 90995, + [SMALL_STATE(1813)] = 91044, + [SMALL_STATE(1814)] = 91093, + [SMALL_STATE(1815)] = 91142, + [SMALL_STATE(1816)] = 91191, + [SMALL_STATE(1817)] = 91246, + [SMALL_STATE(1818)] = 91295, + [SMALL_STATE(1819)] = 91344, + [SMALL_STATE(1820)] = 91393, + [SMALL_STATE(1821)] = 91446, + [SMALL_STATE(1822)] = 91495, + [SMALL_STATE(1823)] = 91544, + [SMALL_STATE(1824)] = 91593, + [SMALL_STATE(1825)] = 91642, + [SMALL_STATE(1826)] = 91695, + [SMALL_STATE(1827)] = 91748, + [SMALL_STATE(1828)] = 91801, + [SMALL_STATE(1829)] = 91850, + [SMALL_STATE(1830)] = 91899, + [SMALL_STATE(1831)] = 91948, + [SMALL_STATE(1832)] = 91997, + [SMALL_STATE(1833)] = 92046, + [SMALL_STATE(1834)] = 92099, + [SMALL_STATE(1835)] = 92148, + [SMALL_STATE(1836)] = 92197, + [SMALL_STATE(1837)] = 92246, + [SMALL_STATE(1838)] = 92299, + [SMALL_STATE(1839)] = 92348, + [SMALL_STATE(1840)] = 92401, + [SMALL_STATE(1841)] = 92450, + [SMALL_STATE(1842)] = 92499, + [SMALL_STATE(1843)] = 92548, + [SMALL_STATE(1844)] = 92597, + [SMALL_STATE(1845)] = 92646, + [SMALL_STATE(1846)] = 92695, + [SMALL_STATE(1847)] = 92744, + [SMALL_STATE(1848)] = 92793, + [SMALL_STATE(1849)] = 92842, + [SMALL_STATE(1850)] = 92891, + [SMALL_STATE(1851)] = 92940, + [SMALL_STATE(1852)] = 92989, + [SMALL_STATE(1853)] = 93038, + [SMALL_STATE(1854)] = 93087, + [SMALL_STATE(1855)] = 93136, + [SMALL_STATE(1856)] = 93185, + [SMALL_STATE(1857)] = 93234, + [SMALL_STATE(1858)] = 93283, + [SMALL_STATE(1859)] = 93332, + [SMALL_STATE(1860)] = 93381, + [SMALL_STATE(1861)] = 93429, + [SMALL_STATE(1862)] = 93481, + [SMALL_STATE(1863)] = 93529, + [SMALL_STATE(1864)] = 93577, + [SMALL_STATE(1865)] = 93625, + [SMALL_STATE(1866)] = 93673, + [SMALL_STATE(1867)] = 93721, + [SMALL_STATE(1868)] = 93769, + [SMALL_STATE(1869)] = 93817, + [SMALL_STATE(1870)] = 93865, + [SMALL_STATE(1871)] = 93913, + [SMALL_STATE(1872)] = 93961, + [SMALL_STATE(1873)] = 94009, + [SMALL_STATE(1874)] = 94057, + [SMALL_STATE(1875)] = 94105, + [SMALL_STATE(1876)] = 94153, + [SMALL_STATE(1877)] = 94201, + [SMALL_STATE(1878)] = 94249, + [SMALL_STATE(1879)] = 94297, + [SMALL_STATE(1880)] = 94349, + [SMALL_STATE(1881)] = 94397, + [SMALL_STATE(1882)] = 94449, + [SMALL_STATE(1883)] = 94497, + [SMALL_STATE(1884)] = 94549, + [SMALL_STATE(1885)] = 94603, + [SMALL_STATE(1886)] = 94651, + [SMALL_STATE(1887)] = 94699, + [SMALL_STATE(1888)] = 94747, + [SMALL_STATE(1889)] = 94795, + [SMALL_STATE(1890)] = 94847, + [SMALL_STATE(1891)] = 94895, + [SMALL_STATE(1892)] = 94947, + [SMALL_STATE(1893)] = 94995, + [SMALL_STATE(1894)] = 95043, + [SMALL_STATE(1895)] = 95091, + [SMALL_STATE(1896)] = 95143, + [SMALL_STATE(1897)] = 95193, + [SMALL_STATE(1898)] = 95249, + [SMALL_STATE(1899)] = 95305, + [SMALL_STATE(1900)] = 95357, + [SMALL_STATE(1901)] = 95409, + [SMALL_STATE(1902)] = 95465, + [SMALL_STATE(1903)] = 95517, + [SMALL_STATE(1904)] = 95569, + [SMALL_STATE(1905)] = 95625, + [SMALL_STATE(1906)] = 95681, + [SMALL_STATE(1907)] = 95737, + [SMALL_STATE(1908)] = 95793, + [SMALL_STATE(1909)] = 95845, + [SMALL_STATE(1910)] = 95901, + [SMALL_STATE(1911)] = 95957, + [SMALL_STATE(1912)] = 96025, + [SMALL_STATE(1913)] = 96081, + [SMALL_STATE(1914)] = 96133, + [SMALL_STATE(1915)] = 96187, + [SMALL_STATE(1916)] = 96235, + [SMALL_STATE(1917)] = 96283, + [SMALL_STATE(1918)] = 96331, + [SMALL_STATE(1919)] = 96379, + [SMALL_STATE(1920)] = 96427, + [SMALL_STATE(1921)] = 96475, + [SMALL_STATE(1922)] = 96523, + [SMALL_STATE(1923)] = 96579, + [SMALL_STATE(1924)] = 96627, + [SMALL_STATE(1925)] = 96675, + [SMALL_STATE(1926)] = 96723, + [SMALL_STATE(1927)] = 96775, + [SMALL_STATE(1928)] = 96823, + [SMALL_STATE(1929)] = 96871, + [SMALL_STATE(1930)] = 96919, + [SMALL_STATE(1931)] = 96967, + [SMALL_STATE(1932)] = 97015, + [SMALL_STATE(1933)] = 97063, + [SMALL_STATE(1934)] = 97111, + [SMALL_STATE(1935)] = 97159, + [SMALL_STATE(1936)] = 97207, + [SMALL_STATE(1937)] = 97255, + [SMALL_STATE(1938)] = 97309, + [SMALL_STATE(1939)] = 97365, + [SMALL_STATE(1940)] = 97412, + [SMALL_STATE(1941)] = 97459, + [SMALL_STATE(1942)] = 97506, + [SMALL_STATE(1943)] = 97553, + [SMALL_STATE(1944)] = 97600, + [SMALL_STATE(1945)] = 97647, + [SMALL_STATE(1946)] = 97694, + [SMALL_STATE(1947)] = 97741, + [SMALL_STATE(1948)] = 97788, + [SMALL_STATE(1949)] = 97835, + [SMALL_STATE(1950)] = 97882, + [SMALL_STATE(1951)] = 97929, + [SMALL_STATE(1952)] = 97976, + [SMALL_STATE(1953)] = 98023, + [SMALL_STATE(1954)] = 98074, + [SMALL_STATE(1955)] = 98121, + [SMALL_STATE(1956)] = 98168, + [SMALL_STATE(1957)] = 98215, + [SMALL_STATE(1958)] = 98266, + [SMALL_STATE(1959)] = 98313, + [SMALL_STATE(1960)] = 98360, + [SMALL_STATE(1961)] = 98407, + [SMALL_STATE(1962)] = 98454, + [SMALL_STATE(1963)] = 98501, + [SMALL_STATE(1964)] = 98548, + [SMALL_STATE(1965)] = 98595, + [SMALL_STATE(1966)] = 98642, + [SMALL_STATE(1967)] = 98689, + [SMALL_STATE(1968)] = 98736, + [SMALL_STATE(1969)] = 98785, + [SMALL_STATE(1970)] = 98832, + [SMALL_STATE(1971)] = 98925, + [SMALL_STATE(1972)] = 99018, + [SMALL_STATE(1973)] = 99065, + [SMALL_STATE(1974)] = 99112, + [SMALL_STATE(1975)] = 99159, + [SMALL_STATE(1976)] = 99208, + [SMALL_STATE(1977)] = 99301, + [SMALL_STATE(1978)] = 99394, + [SMALL_STATE(1979)] = 99445, + [SMALL_STATE(1980)] = 99496, + [SMALL_STATE(1981)] = 99547, + [SMALL_STATE(1982)] = 99640, + [SMALL_STATE(1983)] = 99733, + [SMALL_STATE(1984)] = 99780, + [SMALL_STATE(1985)] = 99827, + [SMALL_STATE(1986)] = 99874, + [SMALL_STATE(1987)] = 99923, + [SMALL_STATE(1988)] = 99970, + [SMALL_STATE(1989)] = 100017, + [SMALL_STATE(1990)] = 100064, + [SMALL_STATE(1991)] = 100113, + [SMALL_STATE(1992)] = 100164, + [SMALL_STATE(1993)] = 100211, + [SMALL_STATE(1994)] = 100268, + [SMALL_STATE(1995)] = 100315, + [SMALL_STATE(1996)] = 100372, + [SMALL_STATE(1997)] = 100419, + [SMALL_STATE(1998)] = 100466, + [SMALL_STATE(1999)] = 100513, + [SMALL_STATE(2000)] = 100560, + [SMALL_STATE(2001)] = 100607, + [SMALL_STATE(2002)] = 100658, + [SMALL_STATE(2003)] = 100751, + [SMALL_STATE(2004)] = 100800, + [SMALL_STATE(2005)] = 100847, + [SMALL_STATE(2006)] = 100894, + [SMALL_STATE(2007)] = 100941, + [SMALL_STATE(2008)] = 100988, + [SMALL_STATE(2009)] = 101081, + [SMALL_STATE(2010)] = 101132, + [SMALL_STATE(2011)] = 101179, + [SMALL_STATE(2012)] = 101226, + [SMALL_STATE(2013)] = 101273, + [SMALL_STATE(2014)] = 101320, + [SMALL_STATE(2015)] = 101367, + [SMALL_STATE(2016)] = 101414, + [SMALL_STATE(2017)] = 101496, + [SMALL_STATE(2018)] = 101542, + [SMALL_STATE(2019)] = 101598, + [SMALL_STATE(2020)] = 101644, + [SMALL_STATE(2021)] = 101694, + [SMALL_STATE(2022)] = 101766, + [SMALL_STATE(2023)] = 101812, + [SMALL_STATE(2024)] = 101858, + [SMALL_STATE(2025)] = 101904, + [SMALL_STATE(2026)] = 101986, + [SMALL_STATE(2027)] = 102076, + [SMALL_STATE(2028)] = 102126, + [SMALL_STATE(2029)] = 102174, + [SMALL_STATE(2030)] = 102222, + [SMALL_STATE(2031)] = 102268, + [SMALL_STATE(2032)] = 102350, + [SMALL_STATE(2033)] = 102396, + [SMALL_STATE(2034)] = 102446, + [SMALL_STATE(2035)] = 102502, + [SMALL_STATE(2036)] = 102584, + [SMALL_STATE(2037)] = 102630, + [SMALL_STATE(2038)] = 102686, + [SMALL_STATE(2039)] = 102736, + [SMALL_STATE(2040)] = 102782, + [SMALL_STATE(2041)] = 102832, + [SMALL_STATE(2042)] = 102914, + [SMALL_STATE(2043)] = 102964, + [SMALL_STATE(2044)] = 103046, + [SMALL_STATE(2045)] = 103128, + [SMALL_STATE(2046)] = 103210, + [SMALL_STATE(2047)] = 103292, + [SMALL_STATE(2048)] = 103374, + [SMALL_STATE(2049)] = 103456, + [SMALL_STATE(2050)] = 103502, + [SMALL_STATE(2051)] = 103584, + [SMALL_STATE(2052)] = 103666, + [SMALL_STATE(2053)] = 103712, + [SMALL_STATE(2054)] = 103794, + [SMALL_STATE(2055)] = 103876, + [SMALL_STATE(2056)] = 103940, + [SMALL_STATE(2057)] = 104022, + [SMALL_STATE(2058)] = 104104, + [SMALL_STATE(2059)] = 104150, + [SMALL_STATE(2060)] = 104232, + [SMALL_STATE(2061)] = 104278, + [SMALL_STATE(2062)] = 104360, + [SMALL_STATE(2063)] = 104406, + [SMALL_STATE(2064)] = 104488, + [SMALL_STATE(2065)] = 104534, + [SMALL_STATE(2066)] = 104616, + [SMALL_STATE(2067)] = 104698, + [SMALL_STATE(2068)] = 104774, + [SMALL_STATE(2069)] = 104856, + [SMALL_STATE(2070)] = 104938, + [SMALL_STATE(2071)] = 105020, + [SMALL_STATE(2072)] = 105102, + [SMALL_STATE(2073)] = 105184, + [SMALL_STATE(2074)] = 105266, + [SMALL_STATE(2075)] = 105348, + [SMALL_STATE(2076)] = 105430, + [SMALL_STATE(2077)] = 105512, + [SMALL_STATE(2078)] = 105594, + [SMALL_STATE(2079)] = 105676, + [SMALL_STATE(2080)] = 105758, + [SMALL_STATE(2081)] = 105840, + [SMALL_STATE(2082)] = 105922, + [SMALL_STATE(2083)] = 106004, + [SMALL_STATE(2084)] = 106086, + [SMALL_STATE(2085)] = 106168, + [SMALL_STATE(2086)] = 106250, + [SMALL_STATE(2087)] = 106332, + [SMALL_STATE(2088)] = 106414, + [SMALL_STATE(2089)] = 106496, + [SMALL_STATE(2090)] = 106546, + [SMALL_STATE(2091)] = 106628, + [SMALL_STATE(2092)] = 106710, + [SMALL_STATE(2093)] = 106792, + [SMALL_STATE(2094)] = 106874, + [SMALL_STATE(2095)] = 106924, + [SMALL_STATE(2096)] = 107006, + [SMALL_STATE(2097)] = 107088, + [SMALL_STATE(2098)] = 107170, + [SMALL_STATE(2099)] = 107252, + [SMALL_STATE(2100)] = 107334, + [SMALL_STATE(2101)] = 107416, + [SMALL_STATE(2102)] = 107498, + [SMALL_STATE(2103)] = 107580, + [SMALL_STATE(2104)] = 107626, + [SMALL_STATE(2105)] = 107676, + [SMALL_STATE(2106)] = 107754, + [SMALL_STATE(2107)] = 107800, + [SMALL_STATE(2108)] = 107874, + [SMALL_STATE(2109)] = 107946, + [SMALL_STATE(2110)] = 108036, + [SMALL_STATE(2111)] = 108106, + [SMALL_STATE(2112)] = 108196, + [SMALL_STATE(2113)] = 108286, + [SMALL_STATE(2114)] = 108354, + [SMALL_STATE(2115)] = 108444, + [SMALL_STATE(2116)] = 108534, + [SMALL_STATE(2117)] = 108624, + [SMALL_STATE(2118)] = 108714, + [SMALL_STATE(2119)] = 108804, + [SMALL_STATE(2120)] = 108894, + [SMALL_STATE(2121)] = 108960, + [SMALL_STATE(2122)] = 109010, + [SMALL_STATE(2123)] = 109072, + [SMALL_STATE(2124)] = 109118, + [SMALL_STATE(2125)] = 109164, + [SMALL_STATE(2126)] = 109226, + [SMALL_STATE(2127)] = 109276, + [SMALL_STATE(2128)] = 109350, + [SMALL_STATE(2129)] = 109426, + [SMALL_STATE(2130)] = 109496, + [SMALL_STATE(2131)] = 109564, + [SMALL_STATE(2132)] = 109630, + [SMALL_STATE(2133)] = 109694, + [SMALL_STATE(2134)] = 109754, + [SMALL_STATE(2135)] = 109810, + [SMALL_STATE(2136)] = 109864, + [SMALL_STATE(2137)] = 109916, + [SMALL_STATE(2138)] = 109974, + [SMALL_STATE(2139)] = 110024, + [SMALL_STATE(2140)] = 110070, + [SMALL_STATE(2141)] = 110116, + [SMALL_STATE(2142)] = 110166, + [SMALL_STATE(2143)] = 110224, + [SMALL_STATE(2144)] = 110270, + [SMALL_STATE(2145)] = 110316, + [SMALL_STATE(2146)] = 110372, + [SMALL_STATE(2147)] = 110418, + [SMALL_STATE(2148)] = 110472, + [SMALL_STATE(2149)] = 110518, + [SMALL_STATE(2150)] = 110570, + [SMALL_STATE(2151)] = 110618, + [SMALL_STATE(2152)] = 110668, + [SMALL_STATE(2153)] = 110718, + [SMALL_STATE(2154)] = 110768, + [SMALL_STATE(2155)] = 110814, + [SMALL_STATE(2156)] = 110862, + [SMALL_STATE(2157)] = 110944, + [SMALL_STATE(2158)] = 111034, + [SMALL_STATE(2159)] = 111090, + [SMALL_STATE(2160)] = 111142, + [SMALL_STATE(2161)] = 111192, + [SMALL_STATE(2162)] = 111242, + [SMALL_STATE(2163)] = 111292, + [SMALL_STATE(2164)] = 111344, + [SMALL_STATE(2165)] = 111392, + [SMALL_STATE(2166)] = 111448, + [SMALL_STATE(2167)] = 111500, + [SMALL_STATE(2168)] = 111590, + [SMALL_STATE(2169)] = 111636, + [SMALL_STATE(2170)] = 111682, + [SMALL_STATE(2171)] = 111728, + [SMALL_STATE(2172)] = 111780, + [SMALL_STATE(2173)] = 111826, + [SMALL_STATE(2174)] = 111876, + [SMALL_STATE(2175)] = 111922, + [SMALL_STATE(2176)] = 111968, + [SMALL_STATE(2177)] = 112020, + [SMALL_STATE(2178)] = 112066, + [SMALL_STATE(2179)] = 112148, + [SMALL_STATE(2180)] = 112230, + [SMALL_STATE(2181)] = 112321, + [SMALL_STATE(2182)] = 112388, + [SMALL_STATE(2183)] = 112433, + [SMALL_STATE(2184)] = 112478, + [SMALL_STATE(2185)] = 112543, + [SMALL_STATE(2186)] = 112588, + [SMALL_STATE(2187)] = 112633, + [SMALL_STATE(2188)] = 112678, + [SMALL_STATE(2189)] = 112757, + [SMALL_STATE(2190)] = 112802, + [SMALL_STATE(2191)] = 112881, + [SMALL_STATE(2192)] = 112926, + [SMALL_STATE(2193)] = 113005, + [SMALL_STATE(2194)] = 113084, + [SMALL_STATE(2195)] = 113147, + [SMALL_STATE(2196)] = 113226, + [SMALL_STATE(2197)] = 113299, + [SMALL_STATE(2198)] = 113344, + [SMALL_STATE(2199)] = 113389, + [SMALL_STATE(2200)] = 113468, + [SMALL_STATE(2201)] = 113529, + [SMALL_STATE(2202)] = 113576, + [SMALL_STATE(2203)] = 113621, + [SMALL_STATE(2204)] = 113666, + [SMALL_STATE(2205)] = 113723, + [SMALL_STATE(2206)] = 113768, + [SMALL_STATE(2207)] = 113823, + [SMALL_STATE(2208)] = 113876, + [SMALL_STATE(2209)] = 113955, + [SMALL_STATE(2210)] = 114004, + [SMALL_STATE(2211)] = 114061, + [SMALL_STATE(2212)] = 114116, + [SMALL_STATE(2213)] = 114171, + [SMALL_STATE(2214)] = 114250, + [SMALL_STATE(2215)] = 114295, + [SMALL_STATE(2216)] = 114374, + [SMALL_STATE(2217)] = 114453, + [SMALL_STATE(2218)] = 114504, + [SMALL_STATE(2219)] = 114581, + [SMALL_STATE(2220)] = 114630, + [SMALL_STATE(2221)] = 114679, + [SMALL_STATE(2222)] = 114758, + [SMALL_STATE(2223)] = 114837, + [SMALL_STATE(2224)] = 114916, + [SMALL_STATE(2225)] = 114977, + [SMALL_STATE(2226)] = 115032, + [SMALL_STATE(2227)] = 115111, + [SMALL_STATE(2228)] = 115168, + [SMALL_STATE(2229)] = 115223, + [SMALL_STATE(2230)] = 115278, + [SMALL_STATE(2231)] = 115357, + [SMALL_STATE(2232)] = 115402, + [SMALL_STATE(2233)] = 115457, + [SMALL_STATE(2234)] = 115536, + [SMALL_STATE(2235)] = 115615, + [SMALL_STATE(2236)] = 115660, + [SMALL_STATE(2237)] = 115739, + [SMALL_STATE(2238)] = 115818, + [SMALL_STATE(2239)] = 115897, + [SMALL_STATE(2240)] = 115976, + [SMALL_STATE(2241)] = 116055, + [SMALL_STATE(2242)] = 116134, + [SMALL_STATE(2243)] = 116213, + [SMALL_STATE(2244)] = 116286, + [SMALL_STATE(2245)] = 116357, + [SMALL_STATE(2246)] = 116436, + [SMALL_STATE(2247)] = 116515, + [SMALL_STATE(2248)] = 116594, + [SMALL_STATE(2249)] = 116673, + [SMALL_STATE(2250)] = 116760, + [SMALL_STATE(2251)] = 116851, + [SMALL_STATE(2252)] = 116920, + [SMALL_STATE(2253)] = 116999, + [SMALL_STATE(2254)] = 117078, + [SMALL_STATE(2255)] = 117157, + [SMALL_STATE(2256)] = 117236, + [SMALL_STATE(2257)] = 117281, + [SMALL_STATE(2258)] = 117360, + [SMALL_STATE(2259)] = 117405, + [SMALL_STATE(2260)] = 117450, + [SMALL_STATE(2261)] = 117529, + [SMALL_STATE(2262)] = 117574, + [SMALL_STATE(2263)] = 117653, + [SMALL_STATE(2264)] = 117732, + [SMALL_STATE(2265)] = 117799, + [SMALL_STATE(2266)] = 117878, + [SMALL_STATE(2267)] = 117957, + [SMALL_STATE(2268)] = 118022, + [SMALL_STATE(2269)] = 118101, + [SMALL_STATE(2270)] = 118146, + [SMALL_STATE(2271)] = 118207, + [SMALL_STATE(2272)] = 118270, + [SMALL_STATE(2273)] = 118315, + [SMALL_STATE(2274)] = 118372, + [SMALL_STATE(2275)] = 118425, + [SMALL_STATE(2276)] = 118476, + [SMALL_STATE(2277)] = 118525, + [SMALL_STATE(2278)] = 118578, + [SMALL_STATE(2279)] = 118627, + [SMALL_STATE(2280)] = 118672, + [SMALL_STATE(2281)] = 118751, + [SMALL_STATE(2282)] = 118828, + [SMALL_STATE(2283)] = 118885, + [SMALL_STATE(2284)] = 118932, + [SMALL_STATE(2285)] = 118983, + [SMALL_STATE(2286)] = 119028, + [SMALL_STATE(2287)] = 119077, + [SMALL_STATE(2288)] = 119152, + [SMALL_STATE(2289)] = 119197, + [SMALL_STATE(2290)] = 119244, + [SMALL_STATE(2291)] = 119289, + [SMALL_STATE(2292)] = 119334, + [SMALL_STATE(2293)] = 119379, + [SMALL_STATE(2294)] = 119452, + [SMALL_STATE(2295)] = 119497, + [SMALL_STATE(2296)] = 119588, + [SMALL_STATE(2297)] = 119633, + [SMALL_STATE(2298)] = 119678, + [SMALL_STATE(2299)] = 119723, + [SMALL_STATE(2300)] = 119802, + [SMALL_STATE(2301)] = 119857, + [SMALL_STATE(2302)] = 119902, + [SMALL_STATE(2303)] = 119965, + [SMALL_STATE(2304)] = 120040, + [SMALL_STATE(2305)] = 120085, + [SMALL_STATE(2306)] = 120162, + [SMALL_STATE(2307)] = 120233, + [SMALL_STATE(2308)] = 120302, + [SMALL_STATE(2309)] = 120369, + [SMALL_STATE(2310)] = 120434, + [SMALL_STATE(2311)] = 120495, + [SMALL_STATE(2312)] = 120552, + [SMALL_STATE(2313)] = 120605, + [SMALL_STATE(2314)] = 120656, + [SMALL_STATE(2315)] = 120705, + [SMALL_STATE(2316)] = 120754, + [SMALL_STATE(2317)] = 120811, + [SMALL_STATE(2318)] = 120890, + [SMALL_STATE(2319)] = 120945, + [SMALL_STATE(2320)] = 120990, + [SMALL_STATE(2321)] = 121037, + [SMALL_STATE(2322)] = 121122, + [SMALL_STATE(2323)] = 121193, + [SMALL_STATE(2324)] = 121272, + [SMALL_STATE(2325)] = 121317, + [SMALL_STATE(2326)] = 121362, + [SMALL_STATE(2327)] = 121409, + [SMALL_STATE(2328)] = 121494, + [SMALL_STATE(2329)] = 121539, + [SMALL_STATE(2330)] = 121584, + [SMALL_STATE(2331)] = 121669, + [SMALL_STATE(2332)] = 121714, + [SMALL_STATE(2333)] = 121769, + [SMALL_STATE(2334)] = 121826, + [SMALL_STATE(2335)] = 121881, + [SMALL_STATE(2336)] = 121936, + [SMALL_STATE(2337)] = 121981, + [SMALL_STATE(2338)] = 122066, + [SMALL_STATE(2339)] = 122113, + [SMALL_STATE(2340)] = 122158, + [SMALL_STATE(2341)] = 122205, + [SMALL_STATE(2342)] = 122250, + [SMALL_STATE(2343)] = 122295, + [SMALL_STATE(2344)] = 122340, + [SMALL_STATE(2345)] = 122387, + [SMALL_STATE(2346)] = 122442, + [SMALL_STATE(2347)] = 122505, + [SMALL_STATE(2348)] = 122580, + [SMALL_STATE(2349)] = 122657, + [SMALL_STATE(2350)] = 122728, + [SMALL_STATE(2351)] = 122797, + [SMALL_STATE(2352)] = 122864, + [SMALL_STATE(2353)] = 122929, + [SMALL_STATE(2354)] = 122990, + [SMALL_STATE(2355)] = 123047, + [SMALL_STATE(2356)] = 123100, + [SMALL_STATE(2357)] = 123151, + [SMALL_STATE(2358)] = 123200, + [SMALL_STATE(2359)] = 123255, + [SMALL_STATE(2360)] = 123304, + [SMALL_STATE(2361)] = 123349, + [SMALL_STATE(2362)] = 123396, + [SMALL_STATE(2363)] = 123441, + [SMALL_STATE(2364)] = 123486, + [SMALL_STATE(2365)] = 123571, + [SMALL_STATE(2366)] = 123644, + [SMALL_STATE(2367)] = 123689, + [SMALL_STATE(2368)] = 123734, + [SMALL_STATE(2369)] = 123779, + [SMALL_STATE(2370)] = 123824, + [SMALL_STATE(2371)] = 123869, + [SMALL_STATE(2372)] = 123914, + [SMALL_STATE(2373)] = 123959, + [SMALL_STATE(2374)] = 124018, + [SMALL_STATE(2375)] = 124087, + [SMALL_STATE(2376)] = 124154, + [SMALL_STATE(2377)] = 124199, + [SMALL_STATE(2378)] = 124244, + [SMALL_STATE(2379)] = 124289, + [SMALL_STATE(2380)] = 124334, + [SMALL_STATE(2381)] = 124379, + [SMALL_STATE(2382)] = 124424, + [SMALL_STATE(2383)] = 124469, + [SMALL_STATE(2384)] = 124514, + [SMALL_STATE(2385)] = 124561, + [SMALL_STATE(2386)] = 124606, + [SMALL_STATE(2387)] = 124661, + [SMALL_STATE(2388)] = 124724, + [SMALL_STATE(2389)] = 124799, + [SMALL_STATE(2390)] = 124876, + [SMALL_STATE(2391)] = 124947, + [SMALL_STATE(2392)] = 125016, + [SMALL_STATE(2393)] = 125081, + [SMALL_STATE(2394)] = 125125, + [SMALL_STATE(2395)] = 125169, + [SMALL_STATE(2396)] = 125245, + [SMALL_STATE(2397)] = 125289, + [SMALL_STATE(2398)] = 125337, + [SMALL_STATE(2399)] = 125413, + [SMALL_STATE(2400)] = 125471, + [SMALL_STATE(2401)] = 125547, + [SMALL_STATE(2402)] = 125591, + [SMALL_STATE(2403)] = 125667, + [SMALL_STATE(2404)] = 125743, + [SMALL_STATE(2405)] = 125813, + [SMALL_STATE(2406)] = 125889, + [SMALL_STATE(2407)] = 125933, + [SMALL_STATE(2408)] = 125981, + [SMALL_STATE(2409)] = 126025, + [SMALL_STATE(2410)] = 126101, + [SMALL_STATE(2411)] = 126145, + [SMALL_STATE(2412)] = 126221, + [SMALL_STATE(2413)] = 126265, + [SMALL_STATE(2414)] = 126309, + [SMALL_STATE(2415)] = 126385, + [SMALL_STATE(2416)] = 126429, + [SMALL_STATE(2417)] = 126505, + [SMALL_STATE(2418)] = 126559, + [SMALL_STATE(2419)] = 126635, + [SMALL_STATE(2420)] = 126681, + [SMALL_STATE(2421)] = 126757, + [SMALL_STATE(2422)] = 126811, + [SMALL_STATE(2423)] = 126887, + [SMALL_STATE(2424)] = 126935, + [SMALL_STATE(2425)] = 127011, + [SMALL_STATE(2426)] = 127055, + [SMALL_STATE(2427)] = 127131, + [SMALL_STATE(2428)] = 127207, + [SMALL_STATE(2429)] = 127283, + [SMALL_STATE(2430)] = 127327, + [SMALL_STATE(2431)] = 127403, + [SMALL_STATE(2432)] = 127479, + [SMALL_STATE(2433)] = 127523, + [SMALL_STATE(2434)] = 127599, + [SMALL_STATE(2435)] = 127643, + [SMALL_STATE(2436)] = 127719, + [SMALL_STATE(2437)] = 127763, + [SMALL_STATE(2438)] = 127839, + [SMALL_STATE(2439)] = 127883, + [SMALL_STATE(2440)] = 127959, + [SMALL_STATE(2441)] = 128003, + [SMALL_STATE(2442)] = 128079, + [SMALL_STATE(2443)] = 128155, + [SMALL_STATE(2444)] = 128199, + [SMALL_STATE(2445)] = 128275, + [SMALL_STATE(2446)] = 128335, + [SMALL_STATE(2447)] = 128411, + [SMALL_STATE(2448)] = 128465, + [SMALL_STATE(2449)] = 128541, + [SMALL_STATE(2450)] = 128609, + [SMALL_STATE(2451)] = 128685, + [SMALL_STATE(2452)] = 128751, + [SMALL_STATE(2453)] = 128827, + [SMALL_STATE(2454)] = 128871, + [SMALL_STATE(2455)] = 128947, + [SMALL_STATE(2456)] = 129033, + [SMALL_STATE(2457)] = 129109, + [SMALL_STATE(2458)] = 129157, + [SMALL_STATE(2459)] = 129209, + [SMALL_STATE(2460)] = 129285, + [SMALL_STATE(2461)] = 129329, + [SMALL_STATE(2462)] = 129405, + [SMALL_STATE(2463)] = 129455, + [SMALL_STATE(2464)] = 129499, + [SMALL_STATE(2465)] = 129575, + [SMALL_STATE(2466)] = 129619, + [SMALL_STATE(2467)] = 129695, + [SMALL_STATE(2468)] = 129771, + [SMALL_STATE(2469)] = 129819, + [SMALL_STATE(2470)] = 129895, + [SMALL_STATE(2471)] = 129971, + [SMALL_STATE(2472)] = 130047, + [SMALL_STATE(2473)] = 130111, + [SMALL_STATE(2474)] = 130187, + [SMALL_STATE(2475)] = 130263, + [SMALL_STATE(2476)] = 130349, + [SMALL_STATE(2477)] = 130425, + [SMALL_STATE(2478)] = 130501, + [SMALL_STATE(2479)] = 130587, + [SMALL_STATE(2480)] = 130651, + [SMALL_STATE(2481)] = 130727, + [SMALL_STATE(2482)] = 130813, + [SMALL_STATE(2483)] = 130883, + [SMALL_STATE(2484)] = 130927, + [SMALL_STATE(2485)] = 130971, + [SMALL_STATE(2486)] = 131047, + [SMALL_STATE(2487)] = 131095, + [SMALL_STATE(2488)] = 131139, + [SMALL_STATE(2489)] = 131215, + [SMALL_STATE(2490)] = 131259, + [SMALL_STATE(2491)] = 131321, + [SMALL_STATE(2492)] = 131397, + [SMALL_STATE(2493)] = 131441, + [SMALL_STATE(2494)] = 131511, + [SMALL_STATE(2495)] = 131597, + [SMALL_STATE(2496)] = 131673, + [SMALL_STATE(2497)] = 131717, + [SMALL_STATE(2498)] = 131771, + [SMALL_STATE(2499)] = 131817, + [SMALL_STATE(2500)] = 131871, + [SMALL_STATE(2501)] = 131915, + [SMALL_STATE(2502)] = 131959, + [SMALL_STATE(2503)] = 132003, + [SMALL_STATE(2504)] = 132047, + [SMALL_STATE(2505)] = 132123, + [SMALL_STATE(2506)] = 132199, + [SMALL_STATE(2507)] = 132253, + [SMALL_STATE(2508)] = 132329, + [SMALL_STATE(2509)] = 132377, + [SMALL_STATE(2510)] = 132453, + [SMALL_STATE(2511)] = 132507, + [SMALL_STATE(2512)] = 132551, + [SMALL_STATE(2513)] = 132599, + [SMALL_STATE(2514)] = 132647, + [SMALL_STATE(2515)] = 132733, + [SMALL_STATE(2516)] = 132799, + [SMALL_STATE(2517)] = 132863, + [SMALL_STATE(2518)] = 132909, + [SMALL_STATE(2519)] = 132963, + [SMALL_STATE(2520)] = 133007, + [SMALL_STATE(2521)] = 133051, + [SMALL_STATE(2522)] = 133099, + [SMALL_STATE(2523)] = 133159, + [SMALL_STATE(2524)] = 133231, + [SMALL_STATE(2525)] = 133305, + [SMALL_STATE(2526)] = 133373, + [SMALL_STATE(2527)] = 133439, + [SMALL_STATE(2528)] = 133503, + [SMALL_STATE(2529)] = 133565, + [SMALL_STATE(2530)] = 133623, + [SMALL_STATE(2531)] = 133667, + [SMALL_STATE(2532)] = 133743, + [SMALL_STATE(2533)] = 133797, + [SMALL_STATE(2534)] = 133849, + [SMALL_STATE(2535)] = 133893, + [SMALL_STATE(2536)] = 133943, + [SMALL_STATE(2537)] = 134019, + [SMALL_STATE(2538)] = 134083, + [SMALL_STATE(2539)] = 134131, + [SMALL_STATE(2540)] = 134217, + [SMALL_STATE(2541)] = 134261, + [SMALL_STATE(2542)] = 134305, + [SMALL_STATE(2543)] = 134381, + [SMALL_STATE(2544)] = 134429, + [SMALL_STATE(2545)] = 134475, + [SMALL_STATE(2546)] = 134561, + [SMALL_STATE(2547)] = 134619, + [SMALL_STATE(2548)] = 134689, + [SMALL_STATE(2549)] = 134765, + [SMALL_STATE(2550)] = 134809, + [SMALL_STATE(2551)] = 134853, + [SMALL_STATE(2552)] = 134897, + [SMALL_STATE(2553)] = 134941, + [SMALL_STATE(2554)] = 135027, + [SMALL_STATE(2555)] = 135071, + [SMALL_STATE(2556)] = 135147, + [SMALL_STATE(2557)] = 135223, + [SMALL_STATE(2558)] = 135277, + [SMALL_STATE(2559)] = 135329, + [SMALL_STATE(2560)] = 135379, + [SMALL_STATE(2561)] = 135423, + [SMALL_STATE(2562)] = 135467, + [SMALL_STATE(2563)] = 135511, + [SMALL_STATE(2564)] = 135557, + [SMALL_STATE(2565)] = 135601, + [SMALL_STATE(2566)] = 135645, + [SMALL_STATE(2567)] = 135705, + [SMALL_STATE(2568)] = 135749, + [SMALL_STATE(2569)] = 135793, + [SMALL_STATE(2570)] = 135837, + [SMALL_STATE(2571)] = 135909, + [SMALL_STATE(2572)] = 135953, + [SMALL_STATE(2573)] = 136027, + [SMALL_STATE(2574)] = 136095, + [SMALL_STATE(2575)] = 136139, + [SMALL_STATE(2576)] = 136205, + [SMALL_STATE(2577)] = 136249, + [SMALL_STATE(2578)] = 136293, + [SMALL_STATE(2579)] = 136369, + [SMALL_STATE(2580)] = 136413, + [SMALL_STATE(2581)] = 136457, + [SMALL_STATE(2582)] = 136501, + [SMALL_STATE(2583)] = 136545, + [SMALL_STATE(2584)] = 136631, + [SMALL_STATE(2585)] = 136675, + [SMALL_STATE(2586)] = 136719, + [SMALL_STATE(2587)] = 136767, + [SMALL_STATE(2588)] = 136811, + [SMALL_STATE(2589)] = 136887, + [SMALL_STATE(2590)] = 136931, + [SMALL_STATE(2591)] = 136979, + [SMALL_STATE(2592)] = 137023, + [SMALL_STATE(2593)] = 137067, + [SMALL_STATE(2594)] = 137111, + [SMALL_STATE(2595)] = 137197, + [SMALL_STATE(2596)] = 137261, + [SMALL_STATE(2597)] = 137347, + [SMALL_STATE(2598)] = 137423, + [SMALL_STATE(2599)] = 137485, + [SMALL_STATE(2600)] = 137543, + [SMALL_STATE(2601)] = 137587, + [SMALL_STATE(2602)] = 137673, + [SMALL_STATE(2603)] = 137727, + [SMALL_STATE(2604)] = 137779, + [SMALL_STATE(2605)] = 137827, + [SMALL_STATE(2606)] = 137871, + [SMALL_STATE(2607)] = 137915, + [SMALL_STATE(2608)] = 137965, + [SMALL_STATE(2609)] = 138013, + [SMALL_STATE(2610)] = 138059, + [SMALL_STATE(2611)] = 138135, + [SMALL_STATE(2612)] = 138195, + [SMALL_STATE(2613)] = 138239, + [SMALL_STATE(2614)] = 138315, + [SMALL_STATE(2615)] = 138383, + [SMALL_STATE(2616)] = 138427, + [SMALL_STATE(2617)] = 138489, + [SMALL_STATE(2618)] = 138565, + [SMALL_STATE(2619)] = 138641, + [SMALL_STATE(2620)] = 138724, + [SMALL_STATE(2621)] = 138807, + [SMALL_STATE(2622)] = 138850, + [SMALL_STATE(2623)] = 138933, + [SMALL_STATE(2624)] = 138976, + [SMALL_STATE(2625)] = 139019, + [SMALL_STATE(2626)] = 139062, + [SMALL_STATE(2627)] = 139145, + [SMALL_STATE(2628)] = 139198, + [SMALL_STATE(2629)] = 139281, + [SMALL_STATE(2630)] = 139364, + [SMALL_STATE(2631)] = 139407, + [SMALL_STATE(2632)] = 139450, + [SMALL_STATE(2633)] = 139533, + [SMALL_STATE(2634)] = 139616, + [SMALL_STATE(2635)] = 139699, + [SMALL_STATE(2636)] = 139782, + [SMALL_STATE(2637)] = 139865, + [SMALL_STATE(2638)] = 139948, + [SMALL_STATE(2639)] = 140031, + [SMALL_STATE(2640)] = 140074, + [SMALL_STATE(2641)] = 140117, + [SMALL_STATE(2642)] = 140160, + [SMALL_STATE(2643)] = 140240, + [SMALL_STATE(2644)] = 140320, + [SMALL_STATE(2645)] = 140400, + [SMALL_STATE(2646)] = 140480, + [SMALL_STATE(2647)] = 140560, + [SMALL_STATE(2648)] = 140640, + [SMALL_STATE(2649)] = 140720, + [SMALL_STATE(2650)] = 140800, + [SMALL_STATE(2651)] = 140880, + [SMALL_STATE(2652)] = 140946, + [SMALL_STATE(2653)] = 141026, + [SMALL_STATE(2654)] = 141106, + [SMALL_STATE(2655)] = 141188, + [SMALL_STATE(2656)] = 141268, + [SMALL_STATE(2657)] = 141348, + [SMALL_STATE(2658)] = 141428, + [SMALL_STATE(2659)] = 141508, + [SMALL_STATE(2660)] = 141588, + [SMALL_STATE(2661)] = 141668, + [SMALL_STATE(2662)] = 141748, + [SMALL_STATE(2663)] = 141828, + [SMALL_STATE(2664)] = 141908, + [SMALL_STATE(2665)] = 141990, + [SMALL_STATE(2666)] = 142070, + [SMALL_STATE(2667)] = 142150, + [SMALL_STATE(2668)] = 142230, + [SMALL_STATE(2669)] = 142310, + [SMALL_STATE(2670)] = 142390, + [SMALL_STATE(2671)] = 142470, + [SMALL_STATE(2672)] = 142550, + [SMALL_STATE(2673)] = 142630, + [SMALL_STATE(2674)] = 142710, + [SMALL_STATE(2675)] = 142790, + [SMALL_STATE(2676)] = 142870, + [SMALL_STATE(2677)] = 142950, + [SMALL_STATE(2678)] = 143030, + [SMALL_STATE(2679)] = 143110, + [SMALL_STATE(2680)] = 143190, + [SMALL_STATE(2681)] = 143270, + [SMALL_STATE(2682)] = 143350, + [SMALL_STATE(2683)] = 143430, + [SMALL_STATE(2684)] = 143510, + [SMALL_STATE(2685)] = 143590, + [SMALL_STATE(2686)] = 143670, + [SMALL_STATE(2687)] = 143722, + [SMALL_STATE(2688)] = 143802, + [SMALL_STATE(2689)] = 143882, + [SMALL_STATE(2690)] = 143962, + [SMALL_STATE(2691)] = 144042, + [SMALL_STATE(2692)] = 144122, + [SMALL_STATE(2693)] = 144202, + [SMALL_STATE(2694)] = 144282, + [SMALL_STATE(2695)] = 144362, + [SMALL_STATE(2696)] = 144442, + [SMALL_STATE(2697)] = 144522, + [SMALL_STATE(2698)] = 144599, + [SMALL_STATE(2699)] = 144676, + [SMALL_STATE(2700)] = 144753, + [SMALL_STATE(2701)] = 144830, + [SMALL_STATE(2702)] = 144907, + [SMALL_STATE(2703)] = 144984, + [SMALL_STATE(2704)] = 145061, + [SMALL_STATE(2705)] = 145138, + [SMALL_STATE(2706)] = 145215, + [SMALL_STATE(2707)] = 145292, + [SMALL_STATE(2708)] = 145369, + [SMALL_STATE(2709)] = 145446, + [SMALL_STATE(2710)] = 145523, + [SMALL_STATE(2711)] = 145600, + [SMALL_STATE(2712)] = 145677, + [SMALL_STATE(2713)] = 145754, + [SMALL_STATE(2714)] = 145831, + [SMALL_STATE(2715)] = 145908, + [SMALL_STATE(2716)] = 145985, + [SMALL_STATE(2717)] = 146062, + [SMALL_STATE(2718)] = 146139, + [SMALL_STATE(2719)] = 146216, + [SMALL_STATE(2720)] = 146293, + [SMALL_STATE(2721)] = 146370, + [SMALL_STATE(2722)] = 146447, + [SMALL_STATE(2723)] = 146524, + [SMALL_STATE(2724)] = 146601, + [SMALL_STATE(2725)] = 146678, + [SMALL_STATE(2726)] = 146741, + [SMALL_STATE(2727)] = 146818, + [SMALL_STATE(2728)] = 146895, + [SMALL_STATE(2729)] = 146972, + [SMALL_STATE(2730)] = 147049, + [SMALL_STATE(2731)] = 147126, + [SMALL_STATE(2732)] = 147203, + [SMALL_STATE(2733)] = 147280, + [SMALL_STATE(2734)] = 147357, + [SMALL_STATE(2735)] = 147434, + [SMALL_STATE(2736)] = 147511, + [SMALL_STATE(2737)] = 147588, + [SMALL_STATE(2738)] = 147665, + [SMALL_STATE(2739)] = 147742, + [SMALL_STATE(2740)] = 147819, + [SMALL_STATE(2741)] = 147896, + [SMALL_STATE(2742)] = 147973, + [SMALL_STATE(2743)] = 148050, + [SMALL_STATE(2744)] = 148127, + [SMALL_STATE(2745)] = 148204, + [SMALL_STATE(2746)] = 148281, + [SMALL_STATE(2747)] = 148358, + [SMALL_STATE(2748)] = 148437, + [SMALL_STATE(2749)] = 148514, + [SMALL_STATE(2750)] = 148591, + [SMALL_STATE(2751)] = 148668, + [SMALL_STATE(2752)] = 148745, + [SMALL_STATE(2753)] = 148822, + [SMALL_STATE(2754)] = 148899, + [SMALL_STATE(2755)] = 148976, + [SMALL_STATE(2756)] = 149053, + [SMALL_STATE(2757)] = 149130, + [SMALL_STATE(2758)] = 149207, + [SMALL_STATE(2759)] = 149280, + [SMALL_STATE(2760)] = 149357, + [SMALL_STATE(2761)] = 149434, + [SMALL_STATE(2762)] = 149511, + [SMALL_STATE(2763)] = 149588, + [SMALL_STATE(2764)] = 149665, + [SMALL_STATE(2765)] = 149742, + [SMALL_STATE(2766)] = 149819, + [SMALL_STATE(2767)] = 149898, + [SMALL_STATE(2768)] = 149975, + [SMALL_STATE(2769)] = 150052, + [SMALL_STATE(2770)] = 150129, + [SMALL_STATE(2771)] = 150206, + [SMALL_STATE(2772)] = 150283, + [SMALL_STATE(2773)] = 150360, + [SMALL_STATE(2774)] = 150423, + [SMALL_STATE(2775)] = 150500, + [SMALL_STATE(2776)] = 150577, + [SMALL_STATE(2777)] = 150654, + [SMALL_STATE(2778)] = 150731, + [SMALL_STATE(2779)] = 150808, + [SMALL_STATE(2780)] = 150885, + [SMALL_STATE(2781)] = 150962, + [SMALL_STATE(2782)] = 151039, + [SMALL_STATE(2783)] = 151116, + [SMALL_STATE(2784)] = 151193, + [SMALL_STATE(2785)] = 151270, + [SMALL_STATE(2786)] = 151347, + [SMALL_STATE(2787)] = 151424, + [SMALL_STATE(2788)] = 151501, + [SMALL_STATE(2789)] = 151578, + [SMALL_STATE(2790)] = 151655, + [SMALL_STATE(2791)] = 151732, + [SMALL_STATE(2792)] = 151809, + [SMALL_STATE(2793)] = 151886, + [SMALL_STATE(2794)] = 151959, + [SMALL_STATE(2795)] = 152038, + [SMALL_STATE(2796)] = 152115, + [SMALL_STATE(2797)] = 152192, + [SMALL_STATE(2798)] = 152269, + [SMALL_STATE(2799)] = 152342, + [SMALL_STATE(2800)] = 152419, + [SMALL_STATE(2801)] = 152496, + [SMALL_STATE(2802)] = 152573, + [SMALL_STATE(2803)] = 152650, + [SMALL_STATE(2804)] = 152727, + [SMALL_STATE(2805)] = 152804, + [SMALL_STATE(2806)] = 152881, + [SMALL_STATE(2807)] = 152958, + [SMALL_STATE(2808)] = 153035, + [SMALL_STATE(2809)] = 153112, + [SMALL_STATE(2810)] = 153189, + [SMALL_STATE(2811)] = 153266, + [SMALL_STATE(2812)] = 153343, + [SMALL_STATE(2813)] = 153420, + [SMALL_STATE(2814)] = 153497, + [SMALL_STATE(2815)] = 153574, + [SMALL_STATE(2816)] = 153651, + [SMALL_STATE(2817)] = 153728, + [SMALL_STATE(2818)] = 153805, + [SMALL_STATE(2819)] = 153882, + [SMALL_STATE(2820)] = 153959, + [SMALL_STATE(2821)] = 154036, + [SMALL_STATE(2822)] = 154113, + [SMALL_STATE(2823)] = 154190, + [SMALL_STATE(2824)] = 154267, + [SMALL_STATE(2825)] = 154344, + [SMALL_STATE(2826)] = 154421, + [SMALL_STATE(2827)] = 154498, + [SMALL_STATE(2828)] = 154575, + [SMALL_STATE(2829)] = 154652, + [SMALL_STATE(2830)] = 154731, + [SMALL_STATE(2831)] = 154808, + [SMALL_STATE(2832)] = 154885, + [SMALL_STATE(2833)] = 154962, + [SMALL_STATE(2834)] = 155039, + [SMALL_STATE(2835)] = 155116, + [SMALL_STATE(2836)] = 155193, + [SMALL_STATE(2837)] = 155270, + [SMALL_STATE(2838)] = 155347, + [SMALL_STATE(2839)] = 155424, + [SMALL_STATE(2840)] = 155501, + [SMALL_STATE(2841)] = 155574, + [SMALL_STATE(2842)] = 155651, + [SMALL_STATE(2843)] = 155728, + [SMALL_STATE(2844)] = 155805, + [SMALL_STATE(2845)] = 155882, + [SMALL_STATE(2846)] = 155959, + [SMALL_STATE(2847)] = 156036, + [SMALL_STATE(2848)] = 156113, + [SMALL_STATE(2849)] = 156190, + [SMALL_STATE(2850)] = 156267, + [SMALL_STATE(2851)] = 156344, + [SMALL_STATE(2852)] = 156421, + [SMALL_STATE(2853)] = 156498, + [SMALL_STATE(2854)] = 156575, + [SMALL_STATE(2855)] = 156652, + [SMALL_STATE(2856)] = 156729, + [SMALL_STATE(2857)] = 156806, + [SMALL_STATE(2858)] = 156883, + [SMALL_STATE(2859)] = 156960, + [SMALL_STATE(2860)] = 157037, + [SMALL_STATE(2861)] = 157114, + [SMALL_STATE(2862)] = 157191, + [SMALL_STATE(2863)] = 157268, + [SMALL_STATE(2864)] = 157345, + [SMALL_STATE(2865)] = 157422, + [SMALL_STATE(2866)] = 157499, + [SMALL_STATE(2867)] = 157576, + [SMALL_STATE(2868)] = 157653, + [SMALL_STATE(2869)] = 157730, + [SMALL_STATE(2870)] = 157807, + [SMALL_STATE(2871)] = 157884, + [SMALL_STATE(2872)] = 157961, + [SMALL_STATE(2873)] = 158038, + [SMALL_STATE(2874)] = 158115, + [SMALL_STATE(2875)] = 158192, + [SMALL_STATE(2876)] = 158269, + [SMALL_STATE(2877)] = 158346, + [SMALL_STATE(2878)] = 158423, + [SMALL_STATE(2879)] = 158500, + [SMALL_STATE(2880)] = 158577, + [SMALL_STATE(2881)] = 158654, + [SMALL_STATE(2882)] = 158731, + [SMALL_STATE(2883)] = 158808, + [SMALL_STATE(2884)] = 158885, + [SMALL_STATE(2885)] = 158962, + [SMALL_STATE(2886)] = 159039, + [SMALL_STATE(2887)] = 159116, + [SMALL_STATE(2888)] = 159193, + [SMALL_STATE(2889)] = 159270, + [SMALL_STATE(2890)] = 159347, + [SMALL_STATE(2891)] = 159424, + [SMALL_STATE(2892)] = 159501, + [SMALL_STATE(2893)] = 159574, + [SMALL_STATE(2894)] = 159651, + [SMALL_STATE(2895)] = 159728, + [SMALL_STATE(2896)] = 159805, + [SMALL_STATE(2897)] = 159882, + [SMALL_STATE(2898)] = 159959, + [SMALL_STATE(2899)] = 160036, + [SMALL_STATE(2900)] = 160113, + [SMALL_STATE(2901)] = 160190, + [SMALL_STATE(2902)] = 160267, + [SMALL_STATE(2903)] = 160344, + [SMALL_STATE(2904)] = 160421, + [SMALL_STATE(2905)] = 160498, + [SMALL_STATE(2906)] = 160575, + [SMALL_STATE(2907)] = 160652, + [SMALL_STATE(2908)] = 160729, + [SMALL_STATE(2909)] = 160806, + [SMALL_STATE(2910)] = 160883, + [SMALL_STATE(2911)] = 160960, + [SMALL_STATE(2912)] = 161037, + [SMALL_STATE(2913)] = 161114, + [SMALL_STATE(2914)] = 161191, + [SMALL_STATE(2915)] = 161268, + [SMALL_STATE(2916)] = 161345, + [SMALL_STATE(2917)] = 161418, + [SMALL_STATE(2918)] = 161495, + [SMALL_STATE(2919)] = 161572, + [SMALL_STATE(2920)] = 161649, + [SMALL_STATE(2921)] = 161726, + [SMALL_STATE(2922)] = 161803, + [SMALL_STATE(2923)] = 161880, + [SMALL_STATE(2924)] = 161957, + [SMALL_STATE(2925)] = 162034, + [SMALL_STATE(2926)] = 162104, + [SMALL_STATE(2927)] = 162174, + [SMALL_STATE(2928)] = 162244, + [SMALL_STATE(2929)] = 162314, + [SMALL_STATE(2930)] = 162384, + [SMALL_STATE(2931)] = 162454, + [SMALL_STATE(2932)] = 162524, + [SMALL_STATE(2933)] = 162594, + [SMALL_STATE(2934)] = 162664, + [SMALL_STATE(2935)] = 162734, + [SMALL_STATE(2936)] = 162804, + [SMALL_STATE(2937)] = 162874, + [SMALL_STATE(2938)] = 162944, + [SMALL_STATE(2939)] = 163014, + [SMALL_STATE(2940)] = 163084, + [SMALL_STATE(2941)] = 163154, + [SMALL_STATE(2942)] = 163224, + [SMALL_STATE(2943)] = 163300, + [SMALL_STATE(2944)] = 163370, + [SMALL_STATE(2945)] = 163440, + [SMALL_STATE(2946)] = 163516, + [SMALL_STATE(2947)] = 163586, + [SMALL_STATE(2948)] = 163656, + [SMALL_STATE(2949)] = 163726, + [SMALL_STATE(2950)] = 163802, + [SMALL_STATE(2951)] = 163878, + [SMALL_STATE(2952)] = 163948, + [SMALL_STATE(2953)] = 164018, + [SMALL_STATE(2954)] = 164088, + [SMALL_STATE(2955)] = 164158, + [SMALL_STATE(2956)] = 164228, + [SMALL_STATE(2957)] = 164304, + [SMALL_STATE(2958)] = 164374, + [SMALL_STATE(2959)] = 164450, + [SMALL_STATE(2960)] = 164526, + [SMALL_STATE(2961)] = 164602, + [SMALL_STATE(2962)] = 164672, + [SMALL_STATE(2963)] = 164748, + [SMALL_STATE(2964)] = 164818, + [SMALL_STATE(2965)] = 164888, + [SMALL_STATE(2966)] = 164964, + [SMALL_STATE(2967)] = 165034, + [SMALL_STATE(2968)] = 165110, + [SMALL_STATE(2969)] = 165180, + [SMALL_STATE(2970)] = 165250, + [SMALL_STATE(2971)] = 165326, + [SMALL_STATE(2972)] = 165402, + [SMALL_STATE(2973)] = 165472, + [SMALL_STATE(2974)] = 165548, + [SMALL_STATE(2975)] = 165624, + [SMALL_STATE(2976)] = 165694, + [SMALL_STATE(2977)] = 165764, + [SMALL_STATE(2978)] = 165834, + [SMALL_STATE(2979)] = 165904, + [SMALL_STATE(2980)] = 165974, + [SMALL_STATE(2981)] = 166050, + [SMALL_STATE(2982)] = 166126, + [SMALL_STATE(2983)] = 166202, + [SMALL_STATE(2984)] = 166278, + [SMALL_STATE(2985)] = 166354, + [SMALL_STATE(2986)] = 166424, + [SMALL_STATE(2987)] = 166500, + [SMALL_STATE(2988)] = 166576, + [SMALL_STATE(2989)] = 166652, + [SMALL_STATE(2990)] = 166728, + [SMALL_STATE(2991)] = 166804, + [SMALL_STATE(2992)] = 166874, + [SMALL_STATE(2993)] = 166944, + [SMALL_STATE(2994)] = 167020, + [SMALL_STATE(2995)] = 167090, + [SMALL_STATE(2996)] = 167166, + [SMALL_STATE(2997)] = 167242, + [SMALL_STATE(2998)] = 167318, + [SMALL_STATE(2999)] = 167394, + [SMALL_STATE(3000)] = 167464, + [SMALL_STATE(3001)] = 167540, + [SMALL_STATE(3002)] = 167610, + [SMALL_STATE(3003)] = 167686, + [SMALL_STATE(3004)] = 167756, + [SMALL_STATE(3005)] = 167826, + [SMALL_STATE(3006)] = 167896, + [SMALL_STATE(3007)] = 167972, + [SMALL_STATE(3008)] = 168048, + [SMALL_STATE(3009)] = 168124, + [SMALL_STATE(3010)] = 168200, + [SMALL_STATE(3011)] = 168270, + [SMALL_STATE(3012)] = 168346, + [SMALL_STATE(3013)] = 168422, + [SMALL_STATE(3014)] = 168498, + [SMALL_STATE(3015)] = 168574, + [SMALL_STATE(3016)] = 168644, + [SMALL_STATE(3017)] = 168714, + [SMALL_STATE(3018)] = 168790, + [SMALL_STATE(3019)] = 168866, + [SMALL_STATE(3020)] = 168942, + [SMALL_STATE(3021)] = 169012, + [SMALL_STATE(3022)] = 169088, + [SMALL_STATE(3023)] = 169158, + [SMALL_STATE(3024)] = 169234, + [SMALL_STATE(3025)] = 169304, + [SMALL_STATE(3026)] = 169374, + [SMALL_STATE(3027)] = 169444, + [SMALL_STATE(3028)] = 169520, + [SMALL_STATE(3029)] = 169596, + [SMALL_STATE(3030)] = 169666, + [SMALL_STATE(3031)] = 169742, + [SMALL_STATE(3032)] = 169818, + [SMALL_STATE(3033)] = 169894, + [SMALL_STATE(3034)] = 169964, + [SMALL_STATE(3035)] = 170040, + [SMALL_STATE(3036)] = 170110, + [SMALL_STATE(3037)] = 170186, + [SMALL_STATE(3038)] = 170256, + [SMALL_STATE(3039)] = 170326, + [SMALL_STATE(3040)] = 170402, + [SMALL_STATE(3041)] = 170478, + [SMALL_STATE(3042)] = 170548, + [SMALL_STATE(3043)] = 170624, + [SMALL_STATE(3044)] = 170694, + [SMALL_STATE(3045)] = 170770, + [SMALL_STATE(3046)] = 170840, + [SMALL_STATE(3047)] = 170916, + [SMALL_STATE(3048)] = 170992, + [SMALL_STATE(3049)] = 171062, + [SMALL_STATE(3050)] = 171138, + [SMALL_STATE(3051)] = 171208, + [SMALL_STATE(3052)] = 171278, + [SMALL_STATE(3053)] = 171354, + [SMALL_STATE(3054)] = 171424, + [SMALL_STATE(3055)] = 171500, + [SMALL_STATE(3056)] = 171576, + [SMALL_STATE(3057)] = 171652, + [SMALL_STATE(3058)] = 171722, + [SMALL_STATE(3059)] = 171792, + [SMALL_STATE(3060)] = 171868, + [SMALL_STATE(3061)] = 171944, + [SMALL_STATE(3062)] = 172014, + [SMALL_STATE(3063)] = 172090, + [SMALL_STATE(3064)] = 172160, + [SMALL_STATE(3065)] = 172236, + [SMALL_STATE(3066)] = 172306, + [SMALL_STATE(3067)] = 172376, + [SMALL_STATE(3068)] = 172446, + [SMALL_STATE(3069)] = 172522, + [SMALL_STATE(3070)] = 172598, + [SMALL_STATE(3071)] = 172668, + [SMALL_STATE(3072)] = 172738, + [SMALL_STATE(3073)] = 172814, + [SMALL_STATE(3074)] = 172884, + [SMALL_STATE(3075)] = 172960, + [SMALL_STATE(3076)] = 173030, + [SMALL_STATE(3077)] = 173100, + [SMALL_STATE(3078)] = 173170, + [SMALL_STATE(3079)] = 173240, + [SMALL_STATE(3080)] = 173316, + [SMALL_STATE(3081)] = 173386, + [SMALL_STATE(3082)] = 173462, + [SMALL_STATE(3083)] = 173538, + [SMALL_STATE(3084)] = 173608, + [SMALL_STATE(3085)] = 173684, + [SMALL_STATE(3086)] = 173760, + [SMALL_STATE(3087)] = 173836, + [SMALL_STATE(3088)] = 173906, + [SMALL_STATE(3089)] = 173976, + [SMALL_STATE(3090)] = 174052, + [SMALL_STATE(3091)] = 174128, + [SMALL_STATE(3092)] = 174198, + [SMALL_STATE(3093)] = 174274, + [SMALL_STATE(3094)] = 174326, + [SMALL_STATE(3095)] = 174402, + [SMALL_STATE(3096)] = 174472, + [SMALL_STATE(3097)] = 174542, + [SMALL_STATE(3098)] = 174618, + [SMALL_STATE(3099)] = 174694, + [SMALL_STATE(3100)] = 174764, + [SMALL_STATE(3101)] = 174834, + [SMALL_STATE(3102)] = 174910, + [SMALL_STATE(3103)] = 174986, + [SMALL_STATE(3104)] = 175056, + [SMALL_STATE(3105)] = 175132, + [SMALL_STATE(3106)] = 175208, + [SMALL_STATE(3107)] = 175284, + [SMALL_STATE(3108)] = 175354, + [SMALL_STATE(3109)] = 175424, + [SMALL_STATE(3110)] = 175494, + [SMALL_STATE(3111)] = 175564, + [SMALL_STATE(3112)] = 175640, + [SMALL_STATE(3113)] = 175716, + [SMALL_STATE(3114)] = 175786, + [SMALL_STATE(3115)] = 175862, + [SMALL_STATE(3116)] = 175932, + [SMALL_STATE(3117)] = 176002, + [SMALL_STATE(3118)] = 176078, + [SMALL_STATE(3119)] = 176154, + [SMALL_STATE(3120)] = 176224, + [SMALL_STATE(3121)] = 176294, + [SMALL_STATE(3122)] = 176364, + [SMALL_STATE(3123)] = 176440, + [SMALL_STATE(3124)] = 176510, + [SMALL_STATE(3125)] = 176586, + [SMALL_STATE(3126)] = 176656, + [SMALL_STATE(3127)] = 176732, + [SMALL_STATE(3128)] = 176802, + [SMALL_STATE(3129)] = 176872, + [SMALL_STATE(3130)] = 176948, + [SMALL_STATE(3131)] = 177018, + [SMALL_STATE(3132)] = 177094, + [SMALL_STATE(3133)] = 177164, + [SMALL_STATE(3134)] = 177240, + [SMALL_STATE(3135)] = 177316, + [SMALL_STATE(3136)] = 177386, + [SMALL_STATE(3137)] = 177462, + [SMALL_STATE(3138)] = 177532, + [SMALL_STATE(3139)] = 177602, + [SMALL_STATE(3140)] = 177678, + [SMALL_STATE(3141)] = 177754, + [SMALL_STATE(3142)] = 177824, + [SMALL_STATE(3143)] = 177885, + [SMALL_STATE(3144)] = 177930, + [SMALL_STATE(3145)] = 177975, + [SMALL_STATE(3146)] = 178026, + [SMALL_STATE(3147)] = 178077, + [SMALL_STATE(3148)] = 178121, + [SMALL_STATE(3149)] = 178165, + [SMALL_STATE(3150)] = 178211, + [SMALL_STATE(3151)] = 178257, + [SMALL_STATE(3152)] = 178301, + [SMALL_STATE(3153)] = 178345, + [SMALL_STATE(3154)] = 178389, + [SMALL_STATE(3155)] = 178433, + [SMALL_STATE(3156)] = 178479, + [SMALL_STATE(3157)] = 178553, + [SMALL_STATE(3158)] = 178603, + [SMALL_STATE(3159)] = 178647, + [SMALL_STATE(3160)] = 178721, + [SMALL_STATE(3161)] = 178767, + [SMALL_STATE(3162)] = 178817, + [SMALL_STATE(3163)] = 178861, + [SMALL_STATE(3164)] = 178935, + [SMALL_STATE(3165)] = 178979, + [SMALL_STATE(3166)] = 179053, + [SMALL_STATE(3167)] = 179124, + [SMALL_STATE(3168)] = 179161, + [SMALL_STATE(3169)] = 179204, + [SMALL_STATE(3170)] = 179241, + [SMALL_STATE(3171)] = 179312, + [SMALL_STATE(3172)] = 179349, + [SMALL_STATE(3173)] = 179386, + [SMALL_STATE(3174)] = 179423, + [SMALL_STATE(3175)] = 179464, + [SMALL_STATE(3176)] = 179507, + [SMALL_STATE(3177)] = 179564, + [SMALL_STATE(3178)] = 179607, + [SMALL_STATE(3179)] = 179644, + [SMALL_STATE(3180)] = 179681, + [SMALL_STATE(3181)] = 179718, + [SMALL_STATE(3182)] = 179755, + [SMALL_STATE(3183)] = 179800, + [SMALL_STATE(3184)] = 179837, + [SMALL_STATE(3185)] = 179874, + [SMALL_STATE(3186)] = 179911, + [SMALL_STATE(3187)] = 179948, + [SMALL_STATE(3188)] = 179985, + [SMALL_STATE(3189)] = 180026, + [SMALL_STATE(3190)] = 180063, + [SMALL_STATE(3191)] = 180106, + [SMALL_STATE(3192)] = 180163, + [SMALL_STATE(3193)] = 180206, + [SMALL_STATE(3194)] = 180243, + [SMALL_STATE(3195)] = 180280, + [SMALL_STATE(3196)] = 180317, + [SMALL_STATE(3197)] = 180388, + [SMALL_STATE(3198)] = 180429, + [SMALL_STATE(3199)] = 180466, + [SMALL_STATE(3200)] = 180503, + [SMALL_STATE(3201)] = 180548, + [SMALL_STATE(3202)] = 180585, + [SMALL_STATE(3203)] = 180628, + [SMALL_STATE(3204)] = 180665, + [SMALL_STATE(3205)] = 180702, + [SMALL_STATE(3206)] = 180739, + [SMALL_STATE(3207)] = 180776, + [SMALL_STATE(3208)] = 180813, + [SMALL_STATE(3209)] = 180850, + [SMALL_STATE(3210)] = 180887, + [SMALL_STATE(3211)] = 180924, + [SMALL_STATE(3212)] = 180961, + [SMALL_STATE(3213)] = 180998, + [SMALL_STATE(3214)] = 181035, + [SMALL_STATE(3215)] = 181072, + [SMALL_STATE(3216)] = 181109, + [SMALL_STATE(3217)] = 181150, + [SMALL_STATE(3218)] = 181195, + [SMALL_STATE(3219)] = 181232, + [SMALL_STATE(3220)] = 181269, + [SMALL_STATE(3221)] = 181318, + [SMALL_STATE(3222)] = 181359, + [SMALL_STATE(3223)] = 181400, + [SMALL_STATE(3224)] = 181437, + [SMALL_STATE(3225)] = 181492, + [SMALL_STATE(3226)] = 181529, + [SMALL_STATE(3227)] = 181566, + [SMALL_STATE(3228)] = 181609, + [SMALL_STATE(3229)] = 181646, + [SMALL_STATE(3230)] = 181688, + [SMALL_STATE(3231)] = 181724, + [SMALL_STATE(3232)] = 181766, + [SMALL_STATE(3233)] = 181806, + [SMALL_STATE(3234)] = 181848, + [SMALL_STATE(3235)] = 181890, + [SMALL_STATE(3236)] = 181932, + [SMALL_STATE(3237)] = 181968, + [SMALL_STATE(3238)] = 182010, + [SMALL_STATE(3239)] = 182054, + [SMALL_STATE(3240)] = 182094, + [SMALL_STATE(3241)] = 182136, + [SMALL_STATE(3242)] = 182172, + [SMALL_STATE(3243)] = 182214, + [SMALL_STATE(3244)] = 182256, + [SMALL_STATE(3245)] = 182298, + [SMALL_STATE(3246)] = 182334, + [SMALL_STATE(3247)] = 182378, + [SMALL_STATE(3248)] = 182420, + [SMALL_STATE(3249)] = 182456, + [SMALL_STATE(3250)] = 182498, + [SMALL_STATE(3251)] = 182556, + [SMALL_STATE(3252)] = 182598, + [SMALL_STATE(3253)] = 182634, + [SMALL_STATE(3254)] = 182670, + [SMALL_STATE(3255)] = 182706, + [SMALL_STATE(3256)] = 182752, + [SMALL_STATE(3257)] = 182794, + [SMALL_STATE(3258)] = 182836, + [SMALL_STATE(3259)] = 182872, + [SMALL_STATE(3260)] = 182908, + [SMALL_STATE(3261)] = 182944, + [SMALL_STATE(3262)] = 182980, + [SMALL_STATE(3263)] = 183022, + [SMALL_STATE(3264)] = 183058, + [SMALL_STATE(3265)] = 183094, + [SMALL_STATE(3266)] = 183150, + [SMALL_STATE(3267)] = 183186, + [SMALL_STATE(3268)] = 183228, + [SMALL_STATE(3269)] = 183264, + [SMALL_STATE(3270)] = 183300, + [SMALL_STATE(3271)] = 183358, + [SMALL_STATE(3272)] = 183394, + [SMALL_STATE(3273)] = 183440, + [SMALL_STATE(3274)] = 183476, + [SMALL_STATE(3275)] = 183532, + [SMALL_STATE(3276)] = 183568, + [SMALL_STATE(3277)] = 183608, + [SMALL_STATE(3278)] = 183643, + [SMALL_STATE(3279)] = 183678, + [SMALL_STATE(3280)] = 183715, + [SMALL_STATE(3281)] = 183754, + [SMALL_STATE(3282)] = 183789, + [SMALL_STATE(3283)] = 183830, + [SMALL_STATE(3284)] = 183865, + [SMALL_STATE(3285)] = 183906, + [SMALL_STATE(3286)] = 183941, + [SMALL_STATE(3287)] = 183978, + [SMALL_STATE(3288)] = 184019, + [SMALL_STATE(3289)] = 184054, + [SMALL_STATE(3290)] = 184089, + [SMALL_STATE(3291)] = 184130, + [SMALL_STATE(3292)] = 184181, + [SMALL_STATE(3293)] = 184218, + [SMALL_STATE(3294)] = 184253, + [SMALL_STATE(3295)] = 184288, + [SMALL_STATE(3296)] = 184329, + [SMALL_STATE(3297)] = 184370, + [SMALL_STATE(3298)] = 184405, + [SMALL_STATE(3299)] = 184450, + [SMALL_STATE(3300)] = 184491, + [SMALL_STATE(3301)] = 184526, + [SMALL_STATE(3302)] = 184567, + [SMALL_STATE(3303)] = 184612, + [SMALL_STATE(3304)] = 184653, + [SMALL_STATE(3305)] = 184698, + [SMALL_STATE(3306)] = 184733, + [SMALL_STATE(3307)] = 184784, + [SMALL_STATE(3308)] = 184819, + [SMALL_STATE(3309)] = 184874, + [SMALL_STATE(3310)] = 184909, + [SMALL_STATE(3311)] = 184948, + [SMALL_STATE(3312)] = 184989, + [SMALL_STATE(3313)] = 185024, + [SMALL_STATE(3314)] = 185059, + [SMALL_STATE(3315)] = 185094, + [SMALL_STATE(3316)] = 185129, + [SMALL_STATE(3317)] = 185164, + [SMALL_STATE(3318)] = 185205, + [SMALL_STATE(3319)] = 185246, + [SMALL_STATE(3320)] = 185281, + [SMALL_STATE(3321)] = 185316, + [SMALL_STATE(3322)] = 185351, + [SMALL_STATE(3323)] = 185386, + [SMALL_STATE(3324)] = 185421, + [SMALL_STATE(3325)] = 185456, + [SMALL_STATE(3326)] = 185495, + [SMALL_STATE(3327)] = 185536, + [SMALL_STATE(3328)] = 185575, + [SMALL_STATE(3329)] = 185616, + [SMALL_STATE(3330)] = 185653, + [SMALL_STATE(3331)] = 185688, + [SMALL_STATE(3332)] = 185723, + [SMALL_STATE(3333)] = 185764, + [SMALL_STATE(3334)] = 185799, + [SMALL_STATE(3335)] = 185834, + [SMALL_STATE(3336)] = 185869, + [SMALL_STATE(3337)] = 185904, + [SMALL_STATE(3338)] = 185939, + [SMALL_STATE(3339)] = 185974, + [SMALL_STATE(3340)] = 186013, + [SMALL_STATE(3341)] = 186052, + [SMALL_STATE(3342)] = 186091, + [SMALL_STATE(3343)] = 186132, + [SMALL_STATE(3344)] = 186173, + [SMALL_STATE(3345)] = 186214, + [SMALL_STATE(3346)] = 186259, + [SMALL_STATE(3347)] = 186298, + [SMALL_STATE(3348)] = 186333, + [SMALL_STATE(3349)] = 186372, + [SMALL_STATE(3350)] = 186407, + [SMALL_STATE(3351)] = 186448, + [SMALL_STATE(3352)] = 186483, + [SMALL_STATE(3353)] = 186524, + [SMALL_STATE(3354)] = 186579, + [SMALL_STATE(3355)] = 186624, + [SMALL_STATE(3356)] = 186659, + [SMALL_STATE(3357)] = 186694, + [SMALL_STATE(3358)] = 186739, + [SMALL_STATE(3359)] = 186784, + [SMALL_STATE(3360)] = 186819, + [SMALL_STATE(3361)] = 186854, + [SMALL_STATE(3362)] = 186895, + [SMALL_STATE(3363)] = 186940, + [SMALL_STATE(3364)] = 186983, + [SMALL_STATE(3365)] = 187018, + [SMALL_STATE(3366)] = 187063, + [SMALL_STATE(3367)] = 187098, + [SMALL_STATE(3368)] = 187137, + [SMALL_STATE(3369)] = 187172, + [SMALL_STATE(3370)] = 187213, + [SMALL_STATE(3371)] = 187258, + [SMALL_STATE(3372)] = 187293, + [SMALL_STATE(3373)] = 187328, + [SMALL_STATE(3374)] = 187367, + [SMALL_STATE(3375)] = 187402, + [SMALL_STATE(3376)] = 187437, + [SMALL_STATE(3377)] = 187478, + [SMALL_STATE(3378)] = 187513, + [SMALL_STATE(3379)] = 187554, + [SMALL_STATE(3380)] = 187588, + [SMALL_STATE(3381)] = 187622, + [SMALL_STATE(3382)] = 187666, + [SMALL_STATE(3383)] = 187710, + [SMALL_STATE(3384)] = 187744, + [SMALL_STATE(3385)] = 187778, + [SMALL_STATE(3386)] = 187818, + [SMALL_STATE(3387)] = 187852, + [SMALL_STATE(3388)] = 187886, + [SMALL_STATE(3389)] = 187920, + [SMALL_STATE(3390)] = 187954, + [SMALL_STATE(3391)] = 187988, + [SMALL_STATE(3392)] = 188022, + [SMALL_STATE(3393)] = 188056, + [SMALL_STATE(3394)] = 188090, + [SMALL_STATE(3395)] = 188130, + [SMALL_STATE(3396)] = 188164, + [SMALL_STATE(3397)] = 188216, + [SMALL_STATE(3398)] = 188250, + [SMALL_STATE(3399)] = 188284, + [SMALL_STATE(3400)] = 188318, + [SMALL_STATE(3401)] = 188352, + [SMALL_STATE(3402)] = 188386, + [SMALL_STATE(3403)] = 188424, + [SMALL_STATE(3404)] = 188458, + [SMALL_STATE(3405)] = 188496, + [SMALL_STATE(3406)] = 188540, + [SMALL_STATE(3407)] = 188574, + [SMALL_STATE(3408)] = 188610, + [SMALL_STATE(3409)] = 188644, + [SMALL_STATE(3410)] = 188678, + [SMALL_STATE(3411)] = 188712, + [SMALL_STATE(3412)] = 188746, + [SMALL_STATE(3413)] = 188780, + [SMALL_STATE(3414)] = 188814, + [SMALL_STATE(3415)] = 188858, + [SMALL_STATE(3416)] = 188892, + [SMALL_STATE(3417)] = 188926, + [SMALL_STATE(3418)] = 188966, + [SMALL_STATE(3419)] = 189000, + [SMALL_STATE(3420)] = 189034, + [SMALL_STATE(3421)] = 189068, + [SMALL_STATE(3422)] = 189102, + [SMALL_STATE(3423)] = 189142, + [SMALL_STATE(3424)] = 189176, + [SMALL_STATE(3425)] = 189240, + [SMALL_STATE(3426)] = 189274, + [SMALL_STATE(3427)] = 189338, + [SMALL_STATE(3428)] = 189402, + [SMALL_STATE(3429)] = 189440, + [SMALL_STATE(3430)] = 189476, + [SMALL_STATE(3431)] = 189510, + [SMALL_STATE(3432)] = 189574, + [SMALL_STATE(3433)] = 189608, + [SMALL_STATE(3434)] = 189652, + [SMALL_STATE(3435)] = 189716, + [SMALL_STATE(3436)] = 189750, + [SMALL_STATE(3437)] = 189784, + [SMALL_STATE(3438)] = 189818, + [SMALL_STATE(3439)] = 189862, + [SMALL_STATE(3440)] = 189900, + [SMALL_STATE(3441)] = 189934, + [SMALL_STATE(3442)] = 189968, + [SMALL_STATE(3443)] = 190002, + [SMALL_STATE(3444)] = 190040, + [SMALL_STATE(3445)] = 190104, + [SMALL_STATE(3446)] = 190148, + [SMALL_STATE(3447)] = 190182, + [SMALL_STATE(3448)] = 190216, + [SMALL_STATE(3449)] = 190250, + [SMALL_STATE(3450)] = 190294, + [SMALL_STATE(3451)] = 190328, + [SMALL_STATE(3452)] = 190364, + [SMALL_STATE(3453)] = 190398, + [SMALL_STATE(3454)] = 190432, + [SMALL_STATE(3455)] = 190466, + [SMALL_STATE(3456)] = 190500, + [SMALL_STATE(3457)] = 190552, + [SMALL_STATE(3458)] = 190588, + [SMALL_STATE(3459)] = 190632, + [SMALL_STATE(3460)] = 190666, + [SMALL_STATE(3461)] = 190700, + [SMALL_STATE(3462)] = 190738, + [SMALL_STATE(3463)] = 190790, + [SMALL_STATE(3464)] = 190824, + [SMALL_STATE(3465)] = 190858, + [SMALL_STATE(3466)] = 190922, + [SMALL_STATE(3467)] = 190956, + [SMALL_STATE(3468)] = 190990, + [SMALL_STATE(3469)] = 191030, + [SMALL_STATE(3470)] = 191064, + [SMALL_STATE(3471)] = 191114, + [SMALL_STATE(3472)] = 191158, + [SMALL_STATE(3473)] = 191196, + [SMALL_STATE(3474)] = 191260, + [SMALL_STATE(3475)] = 191310, + [SMALL_STATE(3476)] = 191344, + [SMALL_STATE(3477)] = 191378, + [SMALL_STATE(3478)] = 191442, + [SMALL_STATE(3479)] = 191476, + [SMALL_STATE(3480)] = 191510, + [SMALL_STATE(3481)] = 191544, + [SMALL_STATE(3482)] = 191582, + [SMALL_STATE(3483)] = 191620, + [SMALL_STATE(3484)] = 191658, + [SMALL_STATE(3485)] = 191696, + [SMALL_STATE(3486)] = 191730, + [SMALL_STATE(3487)] = 191768, + [SMALL_STATE(3488)] = 191802, + [SMALL_STATE(3489)] = 191836, + [SMALL_STATE(3490)] = 191870, + [SMALL_STATE(3491)] = 191904, + [SMALL_STATE(3492)] = 191942, + [SMALL_STATE(3493)] = 191976, + [SMALL_STATE(3494)] = 192010, + [SMALL_STATE(3495)] = 192044, + [SMALL_STATE(3496)] = 192088, + [SMALL_STATE(3497)] = 192122, + [SMALL_STATE(3498)] = 192156, + [SMALL_STATE(3499)] = 192190, + [SMALL_STATE(3500)] = 192224, + [SMALL_STATE(3501)] = 192258, + [SMALL_STATE(3502)] = 192292, + [SMALL_STATE(3503)] = 192326, + [SMALL_STATE(3504)] = 192360, + [SMALL_STATE(3505)] = 192398, + [SMALL_STATE(3506)] = 192436, + [SMALL_STATE(3507)] = 192470, + [SMALL_STATE(3508)] = 192504, + [SMALL_STATE(3509)] = 192538, + [SMALL_STATE(3510)] = 192572, + [SMALL_STATE(3511)] = 192612, + [SMALL_STATE(3512)] = 192646, + [SMALL_STATE(3513)] = 192680, + [SMALL_STATE(3514)] = 192724, + [SMALL_STATE(3515)] = 192762, + [SMALL_STATE(3516)] = 192814, + [SMALL_STATE(3517)] = 192852, + [SMALL_STATE(3518)] = 192904, + [SMALL_STATE(3519)] = 192938, + [SMALL_STATE(3520)] = 192972, + [SMALL_STATE(3521)] = 193033, + [SMALL_STATE(3522)] = 193066, + [SMALL_STATE(3523)] = 193109, + [SMALL_STATE(3524)] = 193142, + [SMALL_STATE(3525)] = 193179, + [SMALL_STATE(3526)] = 193214, + [SMALL_STATE(3527)] = 193257, + [SMALL_STATE(3528)] = 193300, + [SMALL_STATE(3529)] = 193343, + [SMALL_STATE(3530)] = 193378, + [SMALL_STATE(3531)] = 193415, + [SMALL_STATE(3532)] = 193472, + [SMALL_STATE(3533)] = 193505, + [SMALL_STATE(3534)] = 193542, + [SMALL_STATE(3535)] = 193575, + [SMALL_STATE(3536)] = 193608, + [SMALL_STATE(3537)] = 193665, + [SMALL_STATE(3538)] = 193698, + [SMALL_STATE(3539)] = 193731, + [SMALL_STATE(3540)] = 193788, + [SMALL_STATE(3541)] = 193849, + [SMALL_STATE(3542)] = 193882, + [SMALL_STATE(3543)] = 193939, + [SMALL_STATE(3544)] = 193996, + [SMALL_STATE(3545)] = 194053, + [SMALL_STATE(3546)] = 194114, + [SMALL_STATE(3547)] = 194161, + [SMALL_STATE(3548)] = 194218, + [SMALL_STATE(3549)] = 194275, + [SMALL_STATE(3550)] = 194332, + [SMALL_STATE(3551)] = 194389, + [SMALL_STATE(3552)] = 194446, + [SMALL_STATE(3553)] = 194503, + [SMALL_STATE(3554)] = 194560, + [SMALL_STATE(3555)] = 194617, + [SMALL_STATE(3556)] = 194674, + [SMALL_STATE(3557)] = 194731, + [SMALL_STATE(3558)] = 194788, + [SMALL_STATE(3559)] = 194845, + [SMALL_STATE(3560)] = 194902, + [SMALL_STATE(3561)] = 194959, + [SMALL_STATE(3562)] = 194992, + [SMALL_STATE(3563)] = 195049, + [SMALL_STATE(3564)] = 195106, + [SMALL_STATE(3565)] = 195163, + [SMALL_STATE(3566)] = 195220, + [SMALL_STATE(3567)] = 195277, + [SMALL_STATE(3568)] = 195334, + [SMALL_STATE(3569)] = 195391, + [SMALL_STATE(3570)] = 195448, + [SMALL_STATE(3571)] = 195481, + [SMALL_STATE(3572)] = 195538, + [SMALL_STATE(3573)] = 195595, + [SMALL_STATE(3574)] = 195652, + [SMALL_STATE(3575)] = 195709, + [SMALL_STATE(3576)] = 195766, + [SMALL_STATE(3577)] = 195823, + [SMALL_STATE(3578)] = 195880, + [SMALL_STATE(3579)] = 195937, + [SMALL_STATE(3580)] = 195994, + [SMALL_STATE(3581)] = 196051, + [SMALL_STATE(3582)] = 196108, + [SMALL_STATE(3583)] = 196165, + [SMALL_STATE(3584)] = 196222, + [SMALL_STATE(3585)] = 196279, + [SMALL_STATE(3586)] = 196316, + [SMALL_STATE(3587)] = 196373, + [SMALL_STATE(3588)] = 196430, + [SMALL_STATE(3589)] = 196487, + [SMALL_STATE(3590)] = 196544, + [SMALL_STATE(3591)] = 196601, + [SMALL_STATE(3592)] = 196658, + [SMALL_STATE(3593)] = 196715, + [SMALL_STATE(3594)] = 196772, + [SMALL_STATE(3595)] = 196829, + [SMALL_STATE(3596)] = 196890, + [SMALL_STATE(3597)] = 196951, + [SMALL_STATE(3598)] = 197008, + [SMALL_STATE(3599)] = 197065, + [SMALL_STATE(3600)] = 197122, + [SMALL_STATE(3601)] = 197179, + [SMALL_STATE(3602)] = 197236, + [SMALL_STATE(3603)] = 197293, + [SMALL_STATE(3604)] = 197350, + [SMALL_STATE(3605)] = 197393, + [SMALL_STATE(3606)] = 197450, + [SMALL_STATE(3607)] = 197507, + [SMALL_STATE(3608)] = 197564, + [SMALL_STATE(3609)] = 197621, + [SMALL_STATE(3610)] = 197678, + [SMALL_STATE(3611)] = 197735, + [SMALL_STATE(3612)] = 197792, + [SMALL_STATE(3613)] = 197849, + [SMALL_STATE(3614)] = 197906, + [SMALL_STATE(3615)] = 197939, + [SMALL_STATE(3616)] = 198000, + [SMALL_STATE(3617)] = 198047, + [SMALL_STATE(3618)] = 198080, + [SMALL_STATE(3619)] = 198113, + [SMALL_STATE(3620)] = 198146, + [SMALL_STATE(3621)] = 198179, + [SMALL_STATE(3622)] = 198212, + [SMALL_STATE(3623)] = 198245, + [SMALL_STATE(3624)] = 198278, + [SMALL_STATE(3625)] = 198311, + [SMALL_STATE(3626)] = 198344, + [SMALL_STATE(3627)] = 198381, + [SMALL_STATE(3628)] = 198430, + [SMALL_STATE(3629)] = 198467, + [SMALL_STATE(3630)] = 198500, + [SMALL_STATE(3631)] = 198533, + [SMALL_STATE(3632)] = 198570, + [SMALL_STATE(3633)] = 198603, + [SMALL_STATE(3634)] = 198636, + [SMALL_STATE(3635)] = 198673, + [SMALL_STATE(3636)] = 198706, + [SMALL_STATE(3637)] = 198739, + [SMALL_STATE(3638)] = 198772, + [SMALL_STATE(3639)] = 198805, + [SMALL_STATE(3640)] = 198838, + [SMALL_STATE(3641)] = 198871, + [SMALL_STATE(3642)] = 198904, + [SMALL_STATE(3643)] = 198937, + [SMALL_STATE(3644)] = 198998, + [SMALL_STATE(3645)] = 199035, + [SMALL_STATE(3646)] = 199068, + [SMALL_STATE(3647)] = 199101, + [SMALL_STATE(3648)] = 199138, + [SMALL_STATE(3649)] = 199175, + [SMALL_STATE(3650)] = 199212, + [SMALL_STATE(3651)] = 199245, + [SMALL_STATE(3652)] = 199278, + [SMALL_STATE(3653)] = 199311, + [SMALL_STATE(3654)] = 199372, + [SMALL_STATE(3655)] = 199433, + [SMALL_STATE(3656)] = 199466, + [SMALL_STATE(3657)] = 199499, + [SMALL_STATE(3658)] = 199532, + [SMALL_STATE(3659)] = 199565, + [SMALL_STATE(3660)] = 199598, + [SMALL_STATE(3661)] = 199631, + [SMALL_STATE(3662)] = 199664, + [SMALL_STATE(3663)] = 199697, + [SMALL_STATE(3664)] = 199730, + [SMALL_STATE(3665)] = 199763, + [SMALL_STATE(3666)] = 199796, + [SMALL_STATE(3667)] = 199829, + [SMALL_STATE(3668)] = 199862, + [SMALL_STATE(3669)] = 199895, + [SMALL_STATE(3670)] = 199928, + [SMALL_STATE(3671)] = 199961, + [SMALL_STATE(3672)] = 200018, + [SMALL_STATE(3673)] = 200075, + [SMALL_STATE(3674)] = 200124, + [SMALL_STATE(3675)] = 200157, + [SMALL_STATE(3676)] = 200214, + [SMALL_STATE(3677)] = 200246, + [SMALL_STATE(3678)] = 200278, + [SMALL_STATE(3679)] = 200310, + [SMALL_STATE(3680)] = 200342, + [SMALL_STATE(3681)] = 200374, + [SMALL_STATE(3682)] = 200406, + [SMALL_STATE(3683)] = 200438, + [SMALL_STATE(3684)] = 200470, + [SMALL_STATE(3685)] = 200502, + [SMALL_STATE(3686)] = 200534, + [SMALL_STATE(3687)] = 200566, + [SMALL_STATE(3688)] = 200602, + [SMALL_STATE(3689)] = 200634, + [SMALL_STATE(3690)] = 200666, + [SMALL_STATE(3691)] = 200698, + [SMALL_STATE(3692)] = 200730, + [SMALL_STATE(3693)] = 200762, + [SMALL_STATE(3694)] = 200794, + [SMALL_STATE(3695)] = 200826, + [SMALL_STATE(3696)] = 200858, + [SMALL_STATE(3697)] = 200890, + [SMALL_STATE(3698)] = 200936, + [SMALL_STATE(3699)] = 200968, + [SMALL_STATE(3700)] = 201014, + [SMALL_STATE(3701)] = 201046, + [SMALL_STATE(3702)] = 201078, + [SMALL_STATE(3703)] = 201110, + [SMALL_STATE(3704)] = 201142, + [SMALL_STATE(3705)] = 201174, + [SMALL_STATE(3706)] = 201206, + [SMALL_STATE(3707)] = 201238, + [SMALL_STATE(3708)] = 201276, + [SMALL_STATE(3709)] = 201308, + [SMALL_STATE(3710)] = 201344, + [SMALL_STATE(3711)] = 201380, + [SMALL_STATE(3712)] = 201412, + [SMALL_STATE(3713)] = 201458, + [SMALL_STATE(3714)] = 201490, + [SMALL_STATE(3715)] = 201522, + [SMALL_STATE(3716)] = 201554, + [SMALL_STATE(3717)] = 201586, + [SMALL_STATE(3718)] = 201618, + [SMALL_STATE(3719)] = 201650, + [SMALL_STATE(3720)] = 201682, + [SMALL_STATE(3721)] = 201714, + [SMALL_STATE(3722)] = 201750, + [SMALL_STATE(3723)] = 201782, + [SMALL_STATE(3724)] = 201828, + [SMALL_STATE(3725)] = 201876, + [SMALL_STATE(3726)] = 201908, + [SMALL_STATE(3727)] = 201940, + [SMALL_STATE(3728)] = 201972, + [SMALL_STATE(3729)] = 202018, + [SMALL_STATE(3730)] = 202050, + [SMALL_STATE(3731)] = 202082, + [SMALL_STATE(3732)] = 202114, + [SMALL_STATE(3733)] = 202146, + [SMALL_STATE(3734)] = 202178, + [SMALL_STATE(3735)] = 202210, + [SMALL_STATE(3736)] = 202242, + [SMALL_STATE(3737)] = 202290, + [SMALL_STATE(3738)] = 202322, + [SMALL_STATE(3739)] = 202354, + [SMALL_STATE(3740)] = 202386, + [SMALL_STATE(3741)] = 202418, + [SMALL_STATE(3742)] = 202450, + [SMALL_STATE(3743)] = 202486, + [SMALL_STATE(3744)] = 202524, + [SMALL_STATE(3745)] = 202556, + [SMALL_STATE(3746)] = 202588, + [SMALL_STATE(3747)] = 202620, + [SMALL_STATE(3748)] = 202656, + [SMALL_STATE(3749)] = 202688, + [SMALL_STATE(3750)] = 202720, + [SMALL_STATE(3751)] = 202752, + [SMALL_STATE(3752)] = 202784, + [SMALL_STATE(3753)] = 202816, + [SMALL_STATE(3754)] = 202852, + [SMALL_STATE(3755)] = 202884, + [SMALL_STATE(3756)] = 202920, + [SMALL_STATE(3757)] = 202952, + [SMALL_STATE(3758)] = 202984, + [SMALL_STATE(3759)] = 203016, + [SMALL_STATE(3760)] = 203048, + [SMALL_STATE(3761)] = 203080, + [SMALL_STATE(3762)] = 203112, + [SMALL_STATE(3763)] = 203144, + [SMALL_STATE(3764)] = 203176, + [SMALL_STATE(3765)] = 203212, + [SMALL_STATE(3766)] = 203244, + [SMALL_STATE(3767)] = 203276, + [SMALL_STATE(3768)] = 203308, + [SMALL_STATE(3769)] = 203340, + [SMALL_STATE(3770)] = 203372, + [SMALL_STATE(3771)] = 203404, + [SMALL_STATE(3772)] = 203436, + [SMALL_STATE(3773)] = 203468, + [SMALL_STATE(3774)] = 203500, + [SMALL_STATE(3775)] = 203532, + [SMALL_STATE(3776)] = 203564, + [SMALL_STATE(3777)] = 203596, + [SMALL_STATE(3778)] = 203628, + [SMALL_STATE(3779)] = 203660, + [SMALL_STATE(3780)] = 203692, + [SMALL_STATE(3781)] = 203724, + [SMALL_STATE(3782)] = 203756, + [SMALL_STATE(3783)] = 203788, + [SMALL_STATE(3784)] = 203820, + [SMALL_STATE(3785)] = 203852, + [SMALL_STATE(3786)] = 203884, + [SMALL_STATE(3787)] = 203916, + [SMALL_STATE(3788)] = 203948, + [SMALL_STATE(3789)] = 203980, + [SMALL_STATE(3790)] = 204035, + [SMALL_STATE(3791)] = 204068, + [SMALL_STATE(3792)] = 204105, + [SMALL_STATE(3793)] = 204138, + [SMALL_STATE(3794)] = 204169, + [SMALL_STATE(3795)] = 204202, + [SMALL_STATE(3796)] = 204235, + [SMALL_STATE(3797)] = 204268, + [SMALL_STATE(3798)] = 204303, + [SMALL_STATE(3799)] = 204358, + [SMALL_STATE(3800)] = 204413, + [SMALL_STATE(3801)] = 204468, + [SMALL_STATE(3802)] = 204503, + [SMALL_STATE(3803)] = 204534, + [SMALL_STATE(3804)] = 204567, + [SMALL_STATE(3805)] = 204598, + [SMALL_STATE(3806)] = 204631, + [SMALL_STATE(3807)] = 204662, + [SMALL_STATE(3808)] = 204693, + [SMALL_STATE(3809)] = 204724, + [SMALL_STATE(3810)] = 204779, + [SMALL_STATE(3811)] = 204812, + [SMALL_STATE(3812)] = 204867, + [SMALL_STATE(3813)] = 204922, + [SMALL_STATE(3814)] = 204953, + [SMALL_STATE(3815)] = 205008, + [SMALL_STATE(3816)] = 205063, + [SMALL_STATE(3817)] = 205118, + [SMALL_STATE(3818)] = 205173, + [SMALL_STATE(3819)] = 205228, + [SMALL_STATE(3820)] = 205283, + [SMALL_STATE(3821)] = 205338, + [SMALL_STATE(3822)] = 205393, + [SMALL_STATE(3823)] = 205448, + [SMALL_STATE(3824)] = 205481, + [SMALL_STATE(3825)] = 205536, + [SMALL_STATE(3826)] = 205591, + [SMALL_STATE(3827)] = 205646, + [SMALL_STATE(3828)] = 205701, + [SMALL_STATE(3829)] = 205734, + [SMALL_STATE(3830)] = 205789, + [SMALL_STATE(3831)] = 205844, + [SMALL_STATE(3832)] = 205899, + [SMALL_STATE(3833)] = 205954, + [SMALL_STATE(3834)] = 206009, + [SMALL_STATE(3835)] = 206042, + [SMALL_STATE(3836)] = 206077, + [SMALL_STATE(3837)] = 206108, + [SMALL_STATE(3838)] = 206141, + [SMALL_STATE(3839)] = 206172, + [SMALL_STATE(3840)] = 206203, + [SMALL_STATE(3841)] = 206234, + [SMALL_STATE(3842)] = 206269, + [SMALL_STATE(3843)] = 206300, + [SMALL_STATE(3844)] = 206331, + [SMALL_STATE(3845)] = 206362, + [SMALL_STATE(3846)] = 206393, + [SMALL_STATE(3847)] = 206426, + [SMALL_STATE(3848)] = 206459, + [SMALL_STATE(3849)] = 206490, + [SMALL_STATE(3850)] = 206529, + [SMALL_STATE(3851)] = 206574, + [SMALL_STATE(3852)] = 206637, + [SMALL_STATE(3853)] = 206668, + [SMALL_STATE(3854)] = 206699, + [SMALL_STATE(3855)] = 206730, + [SMALL_STATE(3856)] = 206787, + [SMALL_STATE(3857)] = 206818, + [SMALL_STATE(3858)] = 206849, + [SMALL_STATE(3859)] = 206880, + [SMALL_STATE(3860)] = 206935, + [SMALL_STATE(3861)] = 206966, + [SMALL_STATE(3862)] = 206999, + [SMALL_STATE(3863)] = 207030, + [SMALL_STATE(3864)] = 207061, + [SMALL_STATE(3865)] = 207092, + [SMALL_STATE(3866)] = 207123, + [SMALL_STATE(3867)] = 207154, + [SMALL_STATE(3868)] = 207185, + [SMALL_STATE(3869)] = 207216, + [SMALL_STATE(3870)] = 207247, + [SMALL_STATE(3871)] = 207278, + [SMALL_STATE(3872)] = 207309, + [SMALL_STATE(3873)] = 207340, + [SMALL_STATE(3874)] = 207371, + [SMALL_STATE(3875)] = 207402, + [SMALL_STATE(3876)] = 207441, + [SMALL_STATE(3877)] = 207476, + [SMALL_STATE(3878)] = 207507, + [SMALL_STATE(3879)] = 207538, + [SMALL_STATE(3880)] = 207569, + [SMALL_STATE(3881)] = 207624, + [SMALL_STATE(3882)] = 207679, + [SMALL_STATE(3883)] = 207734, + [SMALL_STATE(3884)] = 207789, + [SMALL_STATE(3885)] = 207844, + [SMALL_STATE(3886)] = 207899, + [SMALL_STATE(3887)] = 207954, + [SMALL_STATE(3888)] = 207985, + [SMALL_STATE(3889)] = 208040, + [SMALL_STATE(3890)] = 208095, + [SMALL_STATE(3891)] = 208150, + [SMALL_STATE(3892)] = 208205, + [SMALL_STATE(3893)] = 208236, + [SMALL_STATE(3894)] = 208299, + [SMALL_STATE(3895)] = 208330, + [SMALL_STATE(3896)] = 208385, + [SMALL_STATE(3897)] = 208432, + [SMALL_STATE(3898)] = 208487, + [SMALL_STATE(3899)] = 208534, + [SMALL_STATE(3900)] = 208565, + [SMALL_STATE(3901)] = 208596, + [SMALL_STATE(3902)] = 208627, + [SMALL_STATE(3903)] = 208658, + [SMALL_STATE(3904)] = 208689, + [SMALL_STATE(3905)] = 208720, + [SMALL_STATE(3906)] = 208751, + [SMALL_STATE(3907)] = 208782, + [SMALL_STATE(3908)] = 208813, + [SMALL_STATE(3909)] = 208844, + [SMALL_STATE(3910)] = 208877, + [SMALL_STATE(3911)] = 208908, + [SMALL_STATE(3912)] = 208939, + [SMALL_STATE(3913)] = 208970, + [SMALL_STATE(3914)] = 209001, + [SMALL_STATE(3915)] = 209032, + [SMALL_STATE(3916)] = 209077, + [SMALL_STATE(3917)] = 209112, + [SMALL_STATE(3918)] = 209143, + [SMALL_STATE(3919)] = 209174, + [SMALL_STATE(3920)] = 209204, + [SMALL_STATE(3921)] = 209234, + [SMALL_STATE(3922)] = 209264, + [SMALL_STATE(3923)] = 209294, + [SMALL_STATE(3924)] = 209324, + [SMALL_STATE(3925)] = 209354, + [SMALL_STATE(3926)] = 209384, + [SMALL_STATE(3927)] = 209414, + [SMALL_STATE(3928)] = 209444, + [SMALL_STATE(3929)] = 209474, + [SMALL_STATE(3930)] = 209504, + [SMALL_STATE(3931)] = 209534, + [SMALL_STATE(3932)] = 209564, + [SMALL_STATE(3933)] = 209606, + [SMALL_STATE(3934)] = 209636, + [SMALL_STATE(3935)] = 209666, + [SMALL_STATE(3936)] = 209696, + [SMALL_STATE(3937)] = 209738, + [SMALL_STATE(3938)] = 209768, + [SMALL_STATE(3939)] = 209798, + [SMALL_STATE(3940)] = 209832, + [SMALL_STATE(3941)] = 209866, + [SMALL_STATE(3942)] = 209900, + [SMALL_STATE(3943)] = 209930, + [SMALL_STATE(3944)] = 209960, + [SMALL_STATE(3945)] = 209990, + [SMALL_STATE(3946)] = 210040, + [SMALL_STATE(3947)] = 210070, + [SMALL_STATE(3948)] = 210100, + [SMALL_STATE(3949)] = 210130, + [SMALL_STATE(3950)] = 210160, + [SMALL_STATE(3951)] = 210202, + [SMALL_STATE(3952)] = 210232, + [SMALL_STATE(3953)] = 210262, + [SMALL_STATE(3954)] = 210296, + [SMALL_STATE(3955)] = 210338, + [SMALL_STATE(3956)] = 210372, + [SMALL_STATE(3957)] = 210406, + [SMALL_STATE(3958)] = 210436, + [SMALL_STATE(3959)] = 210466, + [SMALL_STATE(3960)] = 210496, + [SMALL_STATE(3961)] = 210526, + [SMALL_STATE(3962)] = 210556, + [SMALL_STATE(3963)] = 210586, + [SMALL_STATE(3964)] = 210616, + [SMALL_STATE(3965)] = 210646, + [SMALL_STATE(3966)] = 210676, + [SMALL_STATE(3967)] = 210706, + [SMALL_STATE(3968)] = 210736, + [SMALL_STATE(3969)] = 210770, + [SMALL_STATE(3970)] = 210806, + [SMALL_STATE(3971)] = 210836, + [SMALL_STATE(3972)] = 210866, + [SMALL_STATE(3973)] = 210896, + [SMALL_STATE(3974)] = 210926, + [SMALL_STATE(3975)] = 210956, + [SMALL_STATE(3976)] = 210996, + [SMALL_STATE(3977)] = 211026, + [SMALL_STATE(3978)] = 211056, + [SMALL_STATE(3979)] = 211086, + [SMALL_STATE(3980)] = 211116, + [SMALL_STATE(3981)] = 211146, + [SMALL_STATE(3982)] = 211176, + [SMALL_STATE(3983)] = 211218, + [SMALL_STATE(3984)] = 211248, + [SMALL_STATE(3985)] = 211278, + [SMALL_STATE(3986)] = 211308, + [SMALL_STATE(3987)] = 211338, + [SMALL_STATE(3988)] = 211372, + [SMALL_STATE(3989)] = 211406, + [SMALL_STATE(3990)] = 211436, + [SMALL_STATE(3991)] = 211470, + [SMALL_STATE(3992)] = 211500, + [SMALL_STATE(3993)] = 211530, + [SMALL_STATE(3994)] = 211560, + [SMALL_STATE(3995)] = 211590, + [SMALL_STATE(3996)] = 211624, + [SMALL_STATE(3997)] = 211654, + [SMALL_STATE(3998)] = 211690, + [SMALL_STATE(3999)] = 211720, + [SMALL_STATE(4000)] = 211754, + [SMALL_STATE(4001)] = 211784, + [SMALL_STATE(4002)] = 211818, + [SMALL_STATE(4003)] = 211848, + [SMALL_STATE(4004)] = 211878, + [SMALL_STATE(4005)] = 211908, + [SMALL_STATE(4006)] = 211937, + [SMALL_STATE(4007)] = 211984, + [SMALL_STATE(4008)] = 212031, + [SMALL_STATE(4009)] = 212074, + [SMALL_STATE(4010)] = 212115, + [SMALL_STATE(4011)] = 212148, + [SMALL_STATE(4012)] = 212181, + [SMALL_STATE(4013)] = 212214, + [SMALL_STATE(4014)] = 212243, + [SMALL_STATE(4015)] = 212272, + [SMALL_STATE(4016)] = 212329, + [SMALL_STATE(4017)] = 212362, + [SMALL_STATE(4018)] = 212409, + [SMALL_STATE(4019)] = 212438, + [SMALL_STATE(4020)] = 212471, + [SMALL_STATE(4021)] = 212500, + [SMALL_STATE(4022)] = 212533, + [SMALL_STATE(4023)] = 212566, + [SMALL_STATE(4024)] = 212595, + [SMALL_STATE(4025)] = 212624, + [SMALL_STATE(4026)] = 212671, + [SMALL_STATE(4027)] = 212700, + [SMALL_STATE(4028)] = 212741, + [SMALL_STATE(4029)] = 212770, + [SMALL_STATE(4030)] = 212817, + [SMALL_STATE(4031)] = 212860, + [SMALL_STATE(4032)] = 212889, + [SMALL_STATE(4033)] = 212918, + [SMALL_STATE(4034)] = 212947, + [SMALL_STATE(4035)] = 212982, + [SMALL_STATE(4036)] = 213011, + [SMALL_STATE(4037)] = 213040, + [SMALL_STATE(4038)] = 213069, + [SMALL_STATE(4039)] = 213116, + [SMALL_STATE(4040)] = 213145, + [SMALL_STATE(4041)] = 213192, + [SMALL_STATE(4042)] = 213221, + [SMALL_STATE(4043)] = 213254, + [SMALL_STATE(4044)] = 213289, + [SMALL_STATE(4045)] = 213330, + [SMALL_STATE(4046)] = 213371, + [SMALL_STATE(4047)] = 213404, + [SMALL_STATE(4048)] = 213437, + [SMALL_STATE(4049)] = 213470, + [SMALL_STATE(4050)] = 213499, + [SMALL_STATE(4051)] = 213528, + [SMALL_STATE(4052)] = 213557, + [SMALL_STATE(4053)] = 213604, + [SMALL_STATE(4054)] = 213637, + [SMALL_STATE(4055)] = 213666, + [SMALL_STATE(4056)] = 213699, + [SMALL_STATE(4057)] = 213746, + [SMALL_STATE(4058)] = 213779, + [SMALL_STATE(4059)] = 213812, + [SMALL_STATE(4060)] = 213845, + [SMALL_STATE(4061)] = 213873, + [SMALL_STATE(4062)] = 213901, + [SMALL_STATE(4063)] = 213933, + [SMALL_STATE(4064)] = 213961, + [SMALL_STATE(4065)] = 213993, + [SMALL_STATE(4066)] = 214035, + [SMALL_STATE(4067)] = 214075, + [SMALL_STATE(4068)] = 214107, + [SMALL_STATE(4069)] = 214135, + [SMALL_STATE(4070)] = 214167, + [SMALL_STATE(4071)] = 214195, + [SMALL_STATE(4072)] = 214223, + [SMALL_STATE(4073)] = 214251, + [SMALL_STATE(4074)] = 214281, + [SMALL_STATE(4075)] = 214309, + [SMALL_STATE(4076)] = 214337, + [SMALL_STATE(4077)] = 214371, + [SMALL_STATE(4078)] = 214399, + [SMALL_STATE(4079)] = 214427, + [SMALL_STATE(4080)] = 214459, + [SMALL_STATE(4081)] = 214491, + [SMALL_STATE(4082)] = 214519, + [SMALL_STATE(4083)] = 214547, + [SMALL_STATE(4084)] = 214581, + [SMALL_STATE(4085)] = 214623, + [SMALL_STATE(4086)] = 214655, + [SMALL_STATE(4087)] = 214685, + [SMALL_STATE(4088)] = 214713, + [SMALL_STATE(4089)] = 214741, + [SMALL_STATE(4090)] = 214769, + [SMALL_STATE(4091)] = 214797, + [SMALL_STATE(4092)] = 214825, + [SMALL_STATE(4093)] = 214853, + [SMALL_STATE(4094)] = 214885, + [SMALL_STATE(4095)] = 214913, + [SMALL_STATE(4096)] = 214967, + [SMALL_STATE(4097)] = 214999, + [SMALL_STATE(4098)] = 215027, + [SMALL_STATE(4099)] = 215055, + [SMALL_STATE(4100)] = 215083, + [SMALL_STATE(4101)] = 215111, + [SMALL_STATE(4102)] = 215139, + [SMALL_STATE(4103)] = 215171, + [SMALL_STATE(4104)] = 215199, + [SMALL_STATE(4105)] = 215239, + [SMALL_STATE(4106)] = 215267, + [SMALL_STATE(4107)] = 215299, + [SMALL_STATE(4108)] = 215353, + [SMALL_STATE(4109)] = 215381, + [SMALL_STATE(4110)] = 215409, + [SMALL_STATE(4111)] = 215437, + [SMALL_STATE(4112)] = 215465, + [SMALL_STATE(4113)] = 215493, + [SMALL_STATE(4114)] = 215521, + [SMALL_STATE(4115)] = 215549, + [SMALL_STATE(4116)] = 215577, + [SMALL_STATE(4117)] = 215617, + [SMALL_STATE(4118)] = 215649, + [SMALL_STATE(4119)] = 215677, + [SMALL_STATE(4120)] = 215705, + [SMALL_STATE(4121)] = 215733, + [SMALL_STATE(4122)] = 215761, + [SMALL_STATE(4123)] = 215789, + [SMALL_STATE(4124)] = 215821, + [SMALL_STATE(4125)] = 215849, + [SMALL_STATE(4126)] = 215881, + [SMALL_STATE(4127)] = 215909, + [SMALL_STATE(4128)] = 215937, + [SMALL_STATE(4129)] = 215969, + [SMALL_STATE(4130)] = 216013, + [SMALL_STATE(4131)] = 216041, + [SMALL_STATE(4132)] = 216069, + [SMALL_STATE(4133)] = 216100, + [SMALL_STATE(4134)] = 216127, + [SMALL_STATE(4135)] = 216154, + [SMALL_STATE(4136)] = 216181, + [SMALL_STATE(4137)] = 216208, + [SMALL_STATE(4138)] = 216247, + [SMALL_STATE(4139)] = 216278, + [SMALL_STATE(4140)] = 216317, + [SMALL_STATE(4141)] = 216344, + [SMALL_STATE(4142)] = 216383, + [SMALL_STATE(4143)] = 216410, + [SMALL_STATE(4144)] = 216437, + [SMALL_STATE(4145)] = 216464, + [SMALL_STATE(4146)] = 216491, + [SMALL_STATE(4147)] = 216518, + [SMALL_STATE(4148)] = 216557, + [SMALL_STATE(4149)] = 216596, + [SMALL_STATE(4150)] = 216623, + [SMALL_STATE(4151)] = 216660, + [SMALL_STATE(4152)] = 216697, + [SMALL_STATE(4153)] = 216730, + [SMALL_STATE(4154)] = 216761, + [SMALL_STATE(4155)] = 216788, + [SMALL_STATE(4156)] = 216815, + [SMALL_STATE(4157)] = 216854, + [SMALL_STATE(4158)] = 216881, + [SMALL_STATE(4159)] = 216908, + [SMALL_STATE(4160)] = 216935, + [SMALL_STATE(4161)] = 216962, + [SMALL_STATE(4162)] = 217001, + [SMALL_STATE(4163)] = 217028, + [SMALL_STATE(4164)] = 217055, + [SMALL_STATE(4165)] = 217082, + [SMALL_STATE(4166)] = 217113, + [SMALL_STATE(4167)] = 217152, + [SMALL_STATE(4168)] = 217191, + [SMALL_STATE(4169)] = 217218, + [SMALL_STATE(4170)] = 217245, + [SMALL_STATE(4171)] = 217272, + [SMALL_STATE(4172)] = 217299, + [SMALL_STATE(4173)] = 217330, + [SMALL_STATE(4174)] = 217369, + [SMALL_STATE(4175)] = 217407, + [SMALL_STATE(4176)] = 217433, + [SMALL_STATE(4177)] = 217465, + [SMALL_STATE(4178)] = 217491, + [SMALL_STATE(4179)] = 217517, + [SMALL_STATE(4180)] = 217543, + [SMALL_STATE(4181)] = 217569, + [SMALL_STATE(4182)] = 217595, + [SMALL_STATE(4183)] = 217621, + [SMALL_STATE(4184)] = 217647, + [SMALL_STATE(4185)] = 217679, + [SMALL_STATE(4186)] = 217705, + [SMALL_STATE(4187)] = 217737, + [SMALL_STATE(4188)] = 217763, + [SMALL_STATE(4189)] = 217789, + [SMALL_STATE(4190)] = 217815, + [SMALL_STATE(4191)] = 217853, + [SMALL_STATE(4192)] = 217879, + [SMALL_STATE(4193)] = 217911, + [SMALL_STATE(4194)] = 217949, + [SMALL_STATE(4195)] = 217975, + [SMALL_STATE(4196)] = 218013, + [SMALL_STATE(4197)] = 218049, + [SMALL_STATE(4198)] = 218087, + [SMALL_STATE(4199)] = 218119, + [SMALL_STATE(4200)] = 218151, + [SMALL_STATE(4201)] = 218189, + [SMALL_STATE(4202)] = 218215, + [SMALL_STATE(4203)] = 218241, + [SMALL_STATE(4204)] = 218267, + [SMALL_STATE(4205)] = 218299, + [SMALL_STATE(4206)] = 218325, + [SMALL_STATE(4207)] = 218351, + [SMALL_STATE(4208)] = 218377, + [SMALL_STATE(4209)] = 218403, + [SMALL_STATE(4210)] = 218435, + [SMALL_STATE(4211)] = 218461, + [SMALL_STATE(4212)] = 218487, + [SMALL_STATE(4213)] = 218513, + [SMALL_STATE(4214)] = 218539, + [SMALL_STATE(4215)] = 218565, + [SMALL_STATE(4216)] = 218591, + [SMALL_STATE(4217)] = 218617, + [SMALL_STATE(4218)] = 218643, + [SMALL_STATE(4219)] = 218675, + [SMALL_STATE(4220)] = 218701, + [SMALL_STATE(4221)] = 218727, + [SMALL_STATE(4222)] = 218753, + [SMALL_STATE(4223)] = 218778, + [SMALL_STATE(4224)] = 218803, + [SMALL_STATE(4225)] = 218828, + [SMALL_STATE(4226)] = 218853, + [SMALL_STATE(4227)] = 218878, + [SMALL_STATE(4228)] = 218907, + [SMALL_STATE(4229)] = 218932, + [SMALL_STATE(4230)] = 218961, + [SMALL_STATE(4231)] = 218986, + [SMALL_STATE(4232)] = 219021, + [SMALL_STATE(4233)] = 219050, + [SMALL_STATE(4234)] = 219075, + [SMALL_STATE(4235)] = 219100, + [SMALL_STATE(4236)] = 219125, + [SMALL_STATE(4237)] = 219150, + [SMALL_STATE(4238)] = 219175, + [SMALL_STATE(4239)] = 219204, + [SMALL_STATE(4240)] = 219229, + [SMALL_STATE(4241)] = 219254, + [SMALL_STATE(4242)] = 219279, + [SMALL_STATE(4243)] = 219304, + [SMALL_STATE(4244)] = 219329, + [SMALL_STATE(4245)] = 219354, + [SMALL_STATE(4246)] = 219379, + [SMALL_STATE(4247)] = 219404, + [SMALL_STATE(4248)] = 219433, + [SMALL_STATE(4249)] = 219458, + [SMALL_STATE(4250)] = 219483, + [SMALL_STATE(4251)] = 219508, + [SMALL_STATE(4252)] = 219533, + [SMALL_STATE(4253)] = 219558, + [SMALL_STATE(4254)] = 219583, + [SMALL_STATE(4255)] = 219608, + [SMALL_STATE(4256)] = 219633, + [SMALL_STATE(4257)] = 219658, + [SMALL_STATE(4258)] = 219683, + [SMALL_STATE(4259)] = 219708, + [SMALL_STATE(4260)] = 219733, + [SMALL_STATE(4261)] = 219758, + [SMALL_STATE(4262)] = 219783, + [SMALL_STATE(4263)] = 219808, + [SMALL_STATE(4264)] = 219833, + [SMALL_STATE(4265)] = 219858, + [SMALL_STATE(4266)] = 219883, + [SMALL_STATE(4267)] = 219908, + [SMALL_STATE(4268)] = 219933, + [SMALL_STATE(4269)] = 219958, + [SMALL_STATE(4270)] = 219983, + [SMALL_STATE(4271)] = 220008, + [SMALL_STATE(4272)] = 220033, + [SMALL_STATE(4273)] = 220058, + [SMALL_STATE(4274)] = 220083, + [SMALL_STATE(4275)] = 220108, + [SMALL_STATE(4276)] = 220133, + [SMALL_STATE(4277)] = 220158, + [SMALL_STATE(4278)] = 220183, + [SMALL_STATE(4279)] = 220208, + [SMALL_STATE(4280)] = 220233, + [SMALL_STATE(4281)] = 220258, + [SMALL_STATE(4282)] = 220283, + [SMALL_STATE(4283)] = 220308, + [SMALL_STATE(4284)] = 220333, + [SMALL_STATE(4285)] = 220358, + [SMALL_STATE(4286)] = 220383, + [SMALL_STATE(4287)] = 220408, + [SMALL_STATE(4288)] = 220448, + [SMALL_STATE(4289)] = 220482, + [SMALL_STATE(4290)] = 220506, + [SMALL_STATE(4291)] = 220549, + [SMALL_STATE(4292)] = 220592, + [SMALL_STATE(4293)] = 220635, + [SMALL_STATE(4294)] = 220678, + [SMALL_STATE(4295)] = 220721, + [SMALL_STATE(4296)] = 220764, + [SMALL_STATE(4297)] = 220807, + [SMALL_STATE(4298)] = 220850, + [SMALL_STATE(4299)] = 220893, + [SMALL_STATE(4300)] = 220936, + [SMALL_STATE(4301)] = 220979, + [SMALL_STATE(4302)] = 221022, + [SMALL_STATE(4303)] = 221065, + [SMALL_STATE(4304)] = 221108, + [SMALL_STATE(4305)] = 221151, + [SMALL_STATE(4306)] = 221194, + [SMALL_STATE(4307)] = 221237, + [SMALL_STATE(4308)] = 221280, + [SMALL_STATE(4309)] = 221323, + [SMALL_STATE(4310)] = 221366, + [SMALL_STATE(4311)] = 221409, + [SMALL_STATE(4312)] = 221432, + [SMALL_STATE(4313)] = 221475, + [SMALL_STATE(4314)] = 221518, + [SMALL_STATE(4315)] = 221561, + [SMALL_STATE(4316)] = 221604, + [SMALL_STATE(4317)] = 221647, + [SMALL_STATE(4318)] = 221690, + [SMALL_STATE(4319)] = 221733, + [SMALL_STATE(4320)] = 221756, + [SMALL_STATE(4321)] = 221799, + [SMALL_STATE(4322)] = 221842, + [SMALL_STATE(4323)] = 221885, + [SMALL_STATE(4324)] = 221928, + [SMALL_STATE(4325)] = 221971, + [SMALL_STATE(4326)] = 222014, + [SMALL_STATE(4327)] = 222057, + [SMALL_STATE(4328)] = 222100, + [SMALL_STATE(4329)] = 222143, + [SMALL_STATE(4330)] = 222186, + [SMALL_STATE(4331)] = 222229, + [SMALL_STATE(4332)] = 222272, + [SMALL_STATE(4333)] = 222315, + [SMALL_STATE(4334)] = 222358, + [SMALL_STATE(4335)] = 222401, + [SMALL_STATE(4336)] = 222444, + [SMALL_STATE(4337)] = 222487, + [SMALL_STATE(4338)] = 222530, + [SMALL_STATE(4339)] = 222573, + [SMALL_STATE(4340)] = 222616, + [SMALL_STATE(4341)] = 222659, + [SMALL_STATE(4342)] = 222702, + [SMALL_STATE(4343)] = 222745, + [SMALL_STATE(4344)] = 222788, + [SMALL_STATE(4345)] = 222831, + [SMALL_STATE(4346)] = 222874, + [SMALL_STATE(4347)] = 222917, + [SMALL_STATE(4348)] = 222940, + [SMALL_STATE(4349)] = 222983, + [SMALL_STATE(4350)] = 223026, + [SMALL_STATE(4351)] = 223069, + [SMALL_STATE(4352)] = 223112, + [SMALL_STATE(4353)] = 223155, + [SMALL_STATE(4354)] = 223198, + [SMALL_STATE(4355)] = 223241, + [SMALL_STATE(4356)] = 223284, + [SMALL_STATE(4357)] = 223327, + [SMALL_STATE(4358)] = 223370, + [SMALL_STATE(4359)] = 223413, + [SMALL_STATE(4360)] = 223456, + [SMALL_STATE(4361)] = 223499, + [SMALL_STATE(4362)] = 223542, + [SMALL_STATE(4363)] = 223585, + [SMALL_STATE(4364)] = 223628, + [SMALL_STATE(4365)] = 223671, + [SMALL_STATE(4366)] = 223714, + [SMALL_STATE(4367)] = 223757, + [SMALL_STATE(4368)] = 223800, + [SMALL_STATE(4369)] = 223843, + [SMALL_STATE(4370)] = 223886, + [SMALL_STATE(4371)] = 223929, + [SMALL_STATE(4372)] = 223972, + [SMALL_STATE(4373)] = 224015, + [SMALL_STATE(4374)] = 224058, + [SMALL_STATE(4375)] = 224101, + [SMALL_STATE(4376)] = 224144, + [SMALL_STATE(4377)] = 224187, + [SMALL_STATE(4378)] = 224230, + [SMALL_STATE(4379)] = 224273, + [SMALL_STATE(4380)] = 224316, + [SMALL_STATE(4381)] = 224339, + [SMALL_STATE(4382)] = 224382, + [SMALL_STATE(4383)] = 224425, + [SMALL_STATE(4384)] = 224468, + [SMALL_STATE(4385)] = 224511, + [SMALL_STATE(4386)] = 224554, + [SMALL_STATE(4387)] = 224597, + [SMALL_STATE(4388)] = 224640, + [SMALL_STATE(4389)] = 224683, + [SMALL_STATE(4390)] = 224726, + [SMALL_STATE(4391)] = 224769, + [SMALL_STATE(4392)] = 224812, + [SMALL_STATE(4393)] = 224855, + [SMALL_STATE(4394)] = 224898, + [SMALL_STATE(4395)] = 224941, + [SMALL_STATE(4396)] = 224984, + [SMALL_STATE(4397)] = 225027, + [SMALL_STATE(4398)] = 225070, + [SMALL_STATE(4399)] = 225113, + [SMALL_STATE(4400)] = 225156, + [SMALL_STATE(4401)] = 225199, + [SMALL_STATE(4402)] = 225242, + [SMALL_STATE(4403)] = 225285, + [SMALL_STATE(4404)] = 225328, + [SMALL_STATE(4405)] = 225371, + [SMALL_STATE(4406)] = 225414, + [SMALL_STATE(4407)] = 225457, + [SMALL_STATE(4408)] = 225500, + [SMALL_STATE(4409)] = 225543, + [SMALL_STATE(4410)] = 225586, + [SMALL_STATE(4411)] = 225629, + [SMALL_STATE(4412)] = 225672, + [SMALL_STATE(4413)] = 225715, + [SMALL_STATE(4414)] = 225758, + [SMALL_STATE(4415)] = 225801, + [SMALL_STATE(4416)] = 225844, + [SMALL_STATE(4417)] = 225887, + [SMALL_STATE(4418)] = 225930, + [SMALL_STATE(4419)] = 225973, + [SMALL_STATE(4420)] = 226016, + [SMALL_STATE(4421)] = 226059, + [SMALL_STATE(4422)] = 226092, + [SMALL_STATE(4423)] = 226135, + [SMALL_STATE(4424)] = 226178, + [SMALL_STATE(4425)] = 226221, + [SMALL_STATE(4426)] = 226264, + [SMALL_STATE(4427)] = 226307, + [SMALL_STATE(4428)] = 226350, + [SMALL_STATE(4429)] = 226393, + [SMALL_STATE(4430)] = 226436, + [SMALL_STATE(4431)] = 226479, + [SMALL_STATE(4432)] = 226522, + [SMALL_STATE(4433)] = 226565, + [SMALL_STATE(4434)] = 226608, + [SMALL_STATE(4435)] = 226651, + [SMALL_STATE(4436)] = 226694, + [SMALL_STATE(4437)] = 226716, + [SMALL_STATE(4438)] = 226745, + [SMALL_STATE(4439)] = 226766, + [SMALL_STATE(4440)] = 226795, + [SMALL_STATE(4441)] = 226824, + [SMALL_STATE(4442)] = 226845, + [SMALL_STATE(4443)] = 226866, + [SMALL_STATE(4444)] = 226895, + [SMALL_STATE(4445)] = 226924, + [SMALL_STATE(4446)] = 226950, + [SMALL_STATE(4447)] = 226976, + [SMALL_STATE(4448)] = 227002, + [SMALL_STATE(4449)] = 227028, + [SMALL_STATE(4450)] = 227056, + [SMALL_STATE(4451)] = 227084, + [SMALL_STATE(4452)] = 227110, + [SMALL_STATE(4453)] = 227136, + [SMALL_STATE(4454)] = 227162, + [SMALL_STATE(4455)] = 227190, + [SMALL_STATE(4456)] = 227216, + [SMALL_STATE(4457)] = 227242, + [SMALL_STATE(4458)] = 227268, + [SMALL_STATE(4459)] = 227294, + [SMALL_STATE(4460)] = 227322, + [SMALL_STATE(4461)] = 227348, + [SMALL_STATE(4462)] = 227376, + [SMALL_STATE(4463)] = 227402, + [SMALL_STATE(4464)] = 227428, + [SMALL_STATE(4465)] = 227454, + [SMALL_STATE(4466)] = 227480, + [SMALL_STATE(4467)] = 227506, + [SMALL_STATE(4468)] = 227532, + [SMALL_STATE(4469)] = 227560, + [SMALL_STATE(4470)] = 227586, + [SMALL_STATE(4471)] = 227614, + [SMALL_STATE(4472)] = 227640, + [SMALL_STATE(4473)] = 227668, + [SMALL_STATE(4474)] = 227694, + [SMALL_STATE(4475)] = 227720, + [SMALL_STATE(4476)] = 227746, + [SMALL_STATE(4477)] = 227774, + [SMALL_STATE(4478)] = 227800, + [SMALL_STATE(4479)] = 227826, + [SMALL_STATE(4480)] = 227854, + [SMALL_STATE(4481)] = 227880, + [SMALL_STATE(4482)] = 227908, + [SMALL_STATE(4483)] = 227934, + [SMALL_STATE(4484)] = 227960, + [SMALL_STATE(4485)] = 227986, + [SMALL_STATE(4486)] = 228020, + [SMALL_STATE(4487)] = 228046, + [SMALL_STATE(4488)] = 228072, + [SMALL_STATE(4489)] = 228098, + [SMALL_STATE(4490)] = 228126, + [SMALL_STATE(4491)] = 228152, + [SMALL_STATE(4492)] = 228178, + [SMALL_STATE(4493)] = 228206, + [SMALL_STATE(4494)] = 228232, + [SMALL_STATE(4495)] = 228260, + [SMALL_STATE(4496)] = 228286, + [SMALL_STATE(4497)] = 228312, + [SMALL_STATE(4498)] = 228338, + [SMALL_STATE(4499)] = 228364, + [SMALL_STATE(4500)] = 228392, + [SMALL_STATE(4501)] = 228418, + [SMALL_STATE(4502)] = 228444, + [SMALL_STATE(4503)] = 228472, + [SMALL_STATE(4504)] = 228498, + [SMALL_STATE(4505)] = 228524, + [SMALL_STATE(4506)] = 228550, + [SMALL_STATE(4507)] = 228576, + [SMALL_STATE(4508)] = 228602, + [SMALL_STATE(4509)] = 228628, + [SMALL_STATE(4510)] = 228656, + [SMALL_STATE(4511)] = 228682, + [SMALL_STATE(4512)] = 228708, + [SMALL_STATE(4513)] = 228734, + [SMALL_STATE(4514)] = 228760, + [SMALL_STATE(4515)] = 228786, + [SMALL_STATE(4516)] = 228814, + [SMALL_STATE(4517)] = 228840, + [SMALL_STATE(4518)] = 228868, + [SMALL_STATE(4519)] = 228894, + [SMALL_STATE(4520)] = 228920, + [SMALL_STATE(4521)] = 228946, + [SMALL_STATE(4522)] = 228972, + [SMALL_STATE(4523)] = 228998, + [SMALL_STATE(4524)] = 229024, + [SMALL_STATE(4525)] = 229050, + [SMALL_STATE(4526)] = 229076, + [SMALL_STATE(4527)] = 229104, + [SMALL_STATE(4528)] = 229132, + [SMALL_STATE(4529)] = 229158, + [SMALL_STATE(4530)] = 229184, + [SMALL_STATE(4531)] = 229212, + [SMALL_STATE(4532)] = 229238, + [SMALL_STATE(4533)] = 229266, + [SMALL_STATE(4534)] = 229292, + [SMALL_STATE(4535)] = 229318, + [SMALL_STATE(4536)] = 229344, + [SMALL_STATE(4537)] = 229370, + [SMALL_STATE(4538)] = 229396, + [SMALL_STATE(4539)] = 229422, + [SMALL_STATE(4540)] = 229450, + [SMALL_STATE(4541)] = 229478, + [SMALL_STATE(4542)] = 229504, + [SMALL_STATE(4543)] = 229530, + [SMALL_STATE(4544)] = 229556, + [SMALL_STATE(4545)] = 229582, + [SMALL_STATE(4546)] = 229608, + [SMALL_STATE(4547)] = 229636, + [SMALL_STATE(4548)] = 229662, + [SMALL_STATE(4549)] = 229688, + [SMALL_STATE(4550)] = 229714, + [SMALL_STATE(4551)] = 229740, + [SMALL_STATE(4552)] = 229766, + [SMALL_STATE(4553)] = 229792, + [SMALL_STATE(4554)] = 229820, + [SMALL_STATE(4555)] = 229848, + [SMALL_STATE(4556)] = 229874, + [SMALL_STATE(4557)] = 229900, + [SMALL_STATE(4558)] = 229926, + [SMALL_STATE(4559)] = 229954, + [SMALL_STATE(4560)] = 229980, + [SMALL_STATE(4561)] = 230008, + [SMALL_STATE(4562)] = 230034, + [SMALL_STATE(4563)] = 230060, + [SMALL_STATE(4564)] = 230086, + [SMALL_STATE(4565)] = 230112, + [SMALL_STATE(4566)] = 230138, + [SMALL_STATE(4567)] = 230166, + [SMALL_STATE(4568)] = 230192, + [SMALL_STATE(4569)] = 230218, + [SMALL_STATE(4570)] = 230244, + [SMALL_STATE(4571)] = 230270, + [SMALL_STATE(4572)] = 230298, + [SMALL_STATE(4573)] = 230324, + [SMALL_STATE(4574)] = 230350, + [SMALL_STATE(4575)] = 230378, + [SMALL_STATE(4576)] = 230404, + [SMALL_STATE(4577)] = 230430, + [SMALL_STATE(4578)] = 230456, + [SMALL_STATE(4579)] = 230482, + [SMALL_STATE(4580)] = 230510, + [SMALL_STATE(4581)] = 230536, + [SMALL_STATE(4582)] = 230562, + [SMALL_STATE(4583)] = 230588, + [SMALL_STATE(4584)] = 230614, + [SMALL_STATE(4585)] = 230640, + [SMALL_STATE(4586)] = 230668, + [SMALL_STATE(4587)] = 230696, + [SMALL_STATE(4588)] = 230724, + [SMALL_STATE(4589)] = 230750, + [SMALL_STATE(4590)] = 230776, + [SMALL_STATE(4591)] = 230802, + [SMALL_STATE(4592)] = 230828, + [SMALL_STATE(4593)] = 230854, + [SMALL_STATE(4594)] = 230880, + [SMALL_STATE(4595)] = 230908, + [SMALL_STATE(4596)] = 230934, + [SMALL_STATE(4597)] = 230962, + [SMALL_STATE(4598)] = 230988, + [SMALL_STATE(4599)] = 231014, + [SMALL_STATE(4600)] = 231040, + [SMALL_STATE(4601)] = 231066, + [SMALL_STATE(4602)] = 231092, + [SMALL_STATE(4603)] = 231120, + [SMALL_STATE(4604)] = 231146, + [SMALL_STATE(4605)] = 231174, + [SMALL_STATE(4606)] = 231200, + [SMALL_STATE(4607)] = 231226, + [SMALL_STATE(4608)] = 231254, + [SMALL_STATE(4609)] = 231280, + [SMALL_STATE(4610)] = 231306, + [SMALL_STATE(4611)] = 231332, + [SMALL_STATE(4612)] = 231360, + [SMALL_STATE(4613)] = 231388, + [SMALL_STATE(4614)] = 231422, + [SMALL_STATE(4615)] = 231448, + [SMALL_STATE(4616)] = 231474, + [SMALL_STATE(4617)] = 231500, + [SMALL_STATE(4618)] = 231526, + [SMALL_STATE(4619)] = 231554, + [SMALL_STATE(4620)] = 231582, + [SMALL_STATE(4621)] = 231610, + [SMALL_STATE(4622)] = 231636, + [SMALL_STATE(4623)] = 231662, + [SMALL_STATE(4624)] = 231688, + [SMALL_STATE(4625)] = 231714, + [SMALL_STATE(4626)] = 231742, + [SMALL_STATE(4627)] = 231770, + [SMALL_STATE(4628)] = 231796, + [SMALL_STATE(4629)] = 231822, + [SMALL_STATE(4630)] = 231850, + [SMALL_STATE(4631)] = 231876, + [SMALL_STATE(4632)] = 231904, + [SMALL_STATE(4633)] = 231930, + [SMALL_STATE(4634)] = 231956, + [SMALL_STATE(4635)] = 231982, + [SMALL_STATE(4636)] = 232008, + [SMALL_STATE(4637)] = 232034, + [SMALL_STATE(4638)] = 232062, + [SMALL_STATE(4639)] = 232090, + [SMALL_STATE(4640)] = 232116, + [SMALL_STATE(4641)] = 232144, + [SMALL_STATE(4642)] = 232170, + [SMALL_STATE(4643)] = 232204, + [SMALL_STATE(4644)] = 232232, + [SMALL_STATE(4645)] = 232260, + [SMALL_STATE(4646)] = 232286, + [SMALL_STATE(4647)] = 232314, + [SMALL_STATE(4648)] = 232340, + [SMALL_STATE(4649)] = 232366, + [SMALL_STATE(4650)] = 232392, + [SMALL_STATE(4651)] = 232418, + [SMALL_STATE(4652)] = 232437, + [SMALL_STATE(4653)] = 232460, + [SMALL_STATE(4654)] = 232483, + [SMALL_STATE(4655)] = 232502, + [SMALL_STATE(4656)] = 232525, + [SMALL_STATE(4657)] = 232548, + [SMALL_STATE(4658)] = 232571, + [SMALL_STATE(4659)] = 232594, + [SMALL_STATE(4660)] = 232613, + [SMALL_STATE(4661)] = 232636, + [SMALL_STATE(4662)] = 232655, + [SMALL_STATE(4663)] = 232674, + [SMALL_STATE(4664)] = 232693, + [SMALL_STATE(4665)] = 232716, + [SMALL_STATE(4666)] = 232735, + [SMALL_STATE(4667)] = 232758, + [SMALL_STATE(4668)] = 232781, + [SMALL_STATE(4669)] = 232804, + [SMALL_STATE(4670)] = 232823, + [SMALL_STATE(4671)] = 232846, + [SMALL_STATE(4672)] = 232869, + [SMALL_STATE(4673)] = 232892, + [SMALL_STATE(4674)] = 232915, + [SMALL_STATE(4675)] = 232934, + [SMALL_STATE(4676)] = 232953, + [SMALL_STATE(4677)] = 232972, + [SMALL_STATE(4678)] = 232991, + [SMALL_STATE(4679)] = 233014, + [SMALL_STATE(4680)] = 233037, + [SMALL_STATE(4681)] = 233056, + [SMALL_STATE(4682)] = 233079, + [SMALL_STATE(4683)] = 233102, + [SMALL_STATE(4684)] = 233130, + [SMALL_STATE(4685)] = 233158, + [SMALL_STATE(4686)] = 233186, + [SMALL_STATE(4687)] = 233214, + [SMALL_STATE(4688)] = 233230, + [SMALL_STATE(4689)] = 233258, + [SMALL_STATE(4690)] = 233280, + [SMALL_STATE(4691)] = 233302, + [SMALL_STATE(4692)] = 233330, + [SMALL_STATE(4693)] = 233358, + [SMALL_STATE(4694)] = 233386, + [SMALL_STATE(4695)] = 233408, + [SMALL_STATE(4696)] = 233430, + [SMALL_STATE(4697)] = 233458, + [SMALL_STATE(4698)] = 233474, + [SMALL_STATE(4699)] = 233502, + [SMALL_STATE(4700)] = 233530, + [SMALL_STATE(4701)] = 233558, + [SMALL_STATE(4702)] = 233580, + [SMALL_STATE(4703)] = 233602, + [SMALL_STATE(4704)] = 233630, + [SMALL_STATE(4705)] = 233658, + [SMALL_STATE(4706)] = 233680, + [SMALL_STATE(4707)] = 233702, + [SMALL_STATE(4708)] = 233730, + [SMALL_STATE(4709)] = 233752, + [SMALL_STATE(4710)] = 233768, + [SMALL_STATE(4711)] = 233796, + [SMALL_STATE(4712)] = 233827, + [SMALL_STATE(4713)] = 233850, + [SMALL_STATE(4714)] = 233877, + [SMALL_STATE(4715)] = 233904, + [SMALL_STATE(4716)] = 233926, + [SMALL_STATE(4717)] = 233942, + [SMALL_STATE(4718)] = 233964, + [SMALL_STATE(4719)] = 233980, + [SMALL_STATE(4720)] = 233996, + [SMALL_STATE(4721)] = 234018, + [SMALL_STATE(4722)] = 234042, + [SMALL_STATE(4723)] = 234058, + [SMALL_STATE(4724)] = 234074, + [SMALL_STATE(4725)] = 234090, + [SMALL_STATE(4726)] = 234112, + [SMALL_STATE(4727)] = 234136, + [SMALL_STATE(4728)] = 234158, + [SMALL_STATE(4729)] = 234182, + [SMALL_STATE(4730)] = 234198, + [SMALL_STATE(4731)] = 234214, + [SMALL_STATE(4732)] = 234238, + [SMALL_STATE(4733)] = 234251, + [SMALL_STATE(4734)] = 234266, + [SMALL_STATE(4735)] = 234281, + [SMALL_STATE(4736)] = 234294, + [SMALL_STATE(4737)] = 234309, + [SMALL_STATE(4738)] = 234322, + [SMALL_STATE(4739)] = 234337, + [SMALL_STATE(4740)] = 234354, + [SMALL_STATE(4741)] = 234369, + [SMALL_STATE(4742)] = 234384, + [SMALL_STATE(4743)] = 234397, + [SMALL_STATE(4744)] = 234412, + [SMALL_STATE(4745)] = 234433, + [SMALL_STATE(4746)] = 234448, + [SMALL_STATE(4747)] = 234461, + [SMALL_STATE(4748)] = 234476, + [SMALL_STATE(4749)] = 234489, + [SMALL_STATE(4750)] = 234510, + [SMALL_STATE(4751)] = 234523, + [SMALL_STATE(4752)] = 234536, + [SMALL_STATE(4753)] = 234555, + [SMALL_STATE(4754)] = 234570, + [SMALL_STATE(4755)] = 234585, + [SMALL_STATE(4756)] = 234600, + [SMALL_STATE(4757)] = 234617, + [SMALL_STATE(4758)] = 234632, + [SMALL_STATE(4759)] = 234647, + [SMALL_STATE(4760)] = 234662, + [SMALL_STATE(4761)] = 234675, + [SMALL_STATE(4762)] = 234690, + [SMALL_STATE(4763)] = 234705, + [SMALL_STATE(4764)] = 234720, + [SMALL_STATE(4765)] = 234735, + [SMALL_STATE(4766)] = 234756, + [SMALL_STATE(4767)] = 234777, + [SMALL_STATE(4768)] = 234792, + [SMALL_STATE(4769)] = 234807, + [SMALL_STATE(4770)] = 234827, + [SMALL_STATE(4771)] = 234847, + [SMALL_STATE(4772)] = 234867, + [SMALL_STATE(4773)] = 234887, + [SMALL_STATE(4774)] = 234907, + [SMALL_STATE(4775)] = 234927, + [SMALL_STATE(4776)] = 234947, + [SMALL_STATE(4777)] = 234967, + [SMALL_STATE(4778)] = 234987, + [SMALL_STATE(4779)] = 235007, + [SMALL_STATE(4780)] = 235027, + [SMALL_STATE(4781)] = 235047, + [SMALL_STATE(4782)] = 235067, + [SMALL_STATE(4783)] = 235087, + [SMALL_STATE(4784)] = 235107, + [SMALL_STATE(4785)] = 235127, + [SMALL_STATE(4786)] = 235147, + [SMALL_STATE(4787)] = 235167, + [SMALL_STATE(4788)] = 235187, + [SMALL_STATE(4789)] = 235205, + [SMALL_STATE(4790)] = 235225, + [SMALL_STATE(4791)] = 235245, + [SMALL_STATE(4792)] = 235265, + [SMALL_STATE(4793)] = 235281, + [SMALL_STATE(4794)] = 235301, + [SMALL_STATE(4795)] = 235321, + [SMALL_STATE(4796)] = 235341, + [SMALL_STATE(4797)] = 235355, + [SMALL_STATE(4798)] = 235375, + [SMALL_STATE(4799)] = 235395, + [SMALL_STATE(4800)] = 235415, + [SMALL_STATE(4801)] = 235435, + [SMALL_STATE(4802)] = 235455, + [SMALL_STATE(4803)] = 235475, + [SMALL_STATE(4804)] = 235495, + [SMALL_STATE(4805)] = 235515, + [SMALL_STATE(4806)] = 235535, + [SMALL_STATE(4807)] = 235555, + [SMALL_STATE(4808)] = 235575, + [SMALL_STATE(4809)] = 235595, + [SMALL_STATE(4810)] = 235615, + [SMALL_STATE(4811)] = 235635, + [SMALL_STATE(4812)] = 235655, + [SMALL_STATE(4813)] = 235675, + [SMALL_STATE(4814)] = 235695, + [SMALL_STATE(4815)] = 235709, + [SMALL_STATE(4816)] = 235729, + [SMALL_STATE(4817)] = 235749, + [SMALL_STATE(4818)] = 235763, + [SMALL_STATE(4819)] = 235783, + [SMALL_STATE(4820)] = 235803, + [SMALL_STATE(4821)] = 235823, + [SMALL_STATE(4822)] = 235843, + [SMALL_STATE(4823)] = 235863, + [SMALL_STATE(4824)] = 235883, + [SMALL_STATE(4825)] = 235903, + [SMALL_STATE(4826)] = 235917, + [SMALL_STATE(4827)] = 235937, + [SMALL_STATE(4828)] = 235957, + [SMALL_STATE(4829)] = 235971, + [SMALL_STATE(4830)] = 235991, + [SMALL_STATE(4831)] = 236011, + [SMALL_STATE(4832)] = 236031, + [SMALL_STATE(4833)] = 236051, + [SMALL_STATE(4834)] = 236071, + [SMALL_STATE(4835)] = 236091, + [SMALL_STATE(4836)] = 236111, + [SMALL_STATE(4837)] = 236131, + [SMALL_STATE(4838)] = 236151, + [SMALL_STATE(4839)] = 236165, + [SMALL_STATE(4840)] = 236185, + [SMALL_STATE(4841)] = 236205, + [SMALL_STATE(4842)] = 236225, + [SMALL_STATE(4843)] = 236245, + [SMALL_STATE(4844)] = 236265, + [SMALL_STATE(4845)] = 236285, + [SMALL_STATE(4846)] = 236305, + [SMALL_STATE(4847)] = 236325, + [SMALL_STATE(4848)] = 236345, + [SMALL_STATE(4849)] = 236365, + [SMALL_STATE(4850)] = 236385, + [SMALL_STATE(4851)] = 236405, + [SMALL_STATE(4852)] = 236425, + [SMALL_STATE(4853)] = 236445, + [SMALL_STATE(4854)] = 236465, + [SMALL_STATE(4855)] = 236485, + [SMALL_STATE(4856)] = 236505, + [SMALL_STATE(4857)] = 236525, + [SMALL_STATE(4858)] = 236545, + [SMALL_STATE(4859)] = 236565, + [SMALL_STATE(4860)] = 236579, + [SMALL_STATE(4861)] = 236599, + [SMALL_STATE(4862)] = 236619, + [SMALL_STATE(4863)] = 236639, + [SMALL_STATE(4864)] = 236659, + [SMALL_STATE(4865)] = 236679, + [SMALL_STATE(4866)] = 236699, + [SMALL_STATE(4867)] = 236713, + [SMALL_STATE(4868)] = 236733, + [SMALL_STATE(4869)] = 236753, + [SMALL_STATE(4870)] = 236772, + [SMALL_STATE(4871)] = 236789, + [SMALL_STATE(4872)] = 236804, + [SMALL_STATE(4873)] = 236819, + [SMALL_STATE(4874)] = 236834, + [SMALL_STATE(4875)] = 236849, + [SMALL_STATE(4876)] = 236866, + [SMALL_STATE(4877)] = 236883, + [SMALL_STATE(4878)] = 236894, + [SMALL_STATE(4879)] = 236911, + [SMALL_STATE(4880)] = 236926, + [SMALL_STATE(4881)] = 236943, + [SMALL_STATE(4882)] = 236958, + [SMALL_STATE(4883)] = 236969, + [SMALL_STATE(4884)] = 236986, + [SMALL_STATE(4885)] = 237001, + [SMALL_STATE(4886)] = 237018, + [SMALL_STATE(4887)] = 237033, + [SMALL_STATE(4888)] = 237044, + [SMALL_STATE(4889)] = 237061, + [SMALL_STATE(4890)] = 237072, + [SMALL_STATE(4891)] = 237083, + [SMALL_STATE(4892)] = 237096, + [SMALL_STATE(4893)] = 237113, + [SMALL_STATE(4894)] = 237124, + [SMALL_STATE(4895)] = 237141, + [SMALL_STATE(4896)] = 237152, + [SMALL_STATE(4897)] = 237169, + [SMALL_STATE(4898)] = 237180, + [SMALL_STATE(4899)] = 237197, + [SMALL_STATE(4900)] = 237214, + [SMALL_STATE(4901)] = 237231, + [SMALL_STATE(4902)] = 237248, + [SMALL_STATE(4903)] = 237263, + [SMALL_STATE(4904)] = 237280, + [SMALL_STATE(4905)] = 237297, + [SMALL_STATE(4906)] = 237312, + [SMALL_STATE(4907)] = 237329, + [SMALL_STATE(4908)] = 237346, + [SMALL_STATE(4909)] = 237357, + [SMALL_STATE(4910)] = 237376, + [SMALL_STATE(4911)] = 237393, + [SMALL_STATE(4912)] = 237410, + [SMALL_STATE(4913)] = 237427, + [SMALL_STATE(4914)] = 237444, + [SMALL_STATE(4915)] = 237461, + [SMALL_STATE(4916)] = 237478, + [SMALL_STATE(4917)] = 237493, + [SMALL_STATE(4918)] = 237510, + [SMALL_STATE(4919)] = 237521, + [SMALL_STATE(4920)] = 237538, + [SMALL_STATE(4921)] = 237555, + [SMALL_STATE(4922)] = 237572, + [SMALL_STATE(4923)] = 237587, + [SMALL_STATE(4924)] = 237598, + [SMALL_STATE(4925)] = 237617, + [SMALL_STATE(4926)] = 237634, + [SMALL_STATE(4927)] = 237645, + [SMALL_STATE(4928)] = 237662, + [SMALL_STATE(4929)] = 237677, + [SMALL_STATE(4930)] = 237694, + [SMALL_STATE(4931)] = 237705, + [SMALL_STATE(4932)] = 237722, + [SMALL_STATE(4933)] = 237739, + [SMALL_STATE(4934)] = 237754, + [SMALL_STATE(4935)] = 237765, + [SMALL_STATE(4936)] = 237780, + [SMALL_STATE(4937)] = 237797, + [SMALL_STATE(4938)] = 237812, + [SMALL_STATE(4939)] = 237829, + [SMALL_STATE(4940)] = 237840, + [SMALL_STATE(4941)] = 237857, + [SMALL_STATE(4942)] = 237874, + [SMALL_STATE(4943)] = 237891, + [SMALL_STATE(4944)] = 237910, + [SMALL_STATE(4945)] = 237925, + [SMALL_STATE(4946)] = 237942, + [SMALL_STATE(4947)] = 237959, + [SMALL_STATE(4948)] = 237970, + [SMALL_STATE(4949)] = 237981, + [SMALL_STATE(4950)] = 237992, + [SMALL_STATE(4951)] = 238007, + [SMALL_STATE(4952)] = 238024, + [SMALL_STATE(4953)] = 238035, + [SMALL_STATE(4954)] = 238052, + [SMALL_STATE(4955)] = 238067, + [SMALL_STATE(4956)] = 238084, + [SMALL_STATE(4957)] = 238097, + [SMALL_STATE(4958)] = 238114, + [SMALL_STATE(4959)] = 238125, + [SMALL_STATE(4960)] = 238140, + [SMALL_STATE(4961)] = 238155, + [SMALL_STATE(4962)] = 238172, + [SMALL_STATE(4963)] = 238185, + [SMALL_STATE(4964)] = 238196, + [SMALL_STATE(4965)] = 238213, + [SMALL_STATE(4966)] = 238224, + [SMALL_STATE(4967)] = 238241, + [SMALL_STATE(4968)] = 238256, + [SMALL_STATE(4969)] = 238267, + [SMALL_STATE(4970)] = 238281, + [SMALL_STATE(4971)] = 238295, + [SMALL_STATE(4972)] = 238309, + [SMALL_STATE(4973)] = 238323, + [SMALL_STATE(4974)] = 238337, + [SMALL_STATE(4975)] = 238351, + [SMALL_STATE(4976)] = 238361, + [SMALL_STATE(4977)] = 238375, + [SMALL_STATE(4978)] = 238385, + [SMALL_STATE(4979)] = 238395, + [SMALL_STATE(4980)] = 238409, + [SMALL_STATE(4981)] = 238423, + [SMALL_STATE(4982)] = 238437, + [SMALL_STATE(4983)] = 238451, + [SMALL_STATE(4984)] = 238465, + [SMALL_STATE(4985)] = 238475, + [SMALL_STATE(4986)] = 238489, + [SMALL_STATE(4987)] = 238503, + [SMALL_STATE(4988)] = 238517, + [SMALL_STATE(4989)] = 238527, + [SMALL_STATE(4990)] = 238537, + [SMALL_STATE(4991)] = 238551, + [SMALL_STATE(4992)] = 238565, + [SMALL_STATE(4993)] = 238575, + [SMALL_STATE(4994)] = 238591, + [SMALL_STATE(4995)] = 238605, + [SMALL_STATE(4996)] = 238619, + [SMALL_STATE(4997)] = 238633, + [SMALL_STATE(4998)] = 238643, + [SMALL_STATE(4999)] = 238653, + [SMALL_STATE(5000)] = 238667, + [SMALL_STATE(5001)] = 238681, + [SMALL_STATE(5002)] = 238695, + [SMALL_STATE(5003)] = 238705, + [SMALL_STATE(5004)] = 238719, + [SMALL_STATE(5005)] = 238733, + [SMALL_STATE(5006)] = 238747, + [SMALL_STATE(5007)] = 238763, + [SMALL_STATE(5008)] = 238777, + [SMALL_STATE(5009)] = 238791, + [SMALL_STATE(5010)] = 238805, + [SMALL_STATE(5011)] = 238819, + [SMALL_STATE(5012)] = 238835, + [SMALL_STATE(5013)] = 238849, + [SMALL_STATE(5014)] = 238863, + [SMALL_STATE(5015)] = 238879, + [SMALL_STATE(5016)] = 238889, + [SMALL_STATE(5017)] = 238899, + [SMALL_STATE(5018)] = 238913, + [SMALL_STATE(5019)] = 238923, + [SMALL_STATE(5020)] = 238937, + [SMALL_STATE(5021)] = 238951, + [SMALL_STATE(5022)] = 238965, + [SMALL_STATE(5023)] = 238981, + [SMALL_STATE(5024)] = 238995, + [SMALL_STATE(5025)] = 239005, + [SMALL_STATE(5026)] = 239015, + [SMALL_STATE(5027)] = 239025, + [SMALL_STATE(5028)] = 239035, + [SMALL_STATE(5029)] = 239051, + [SMALL_STATE(5030)] = 239065, + [SMALL_STATE(5031)] = 239079, + [SMALL_STATE(5032)] = 239093, + [SMALL_STATE(5033)] = 239107, + [SMALL_STATE(5034)] = 239121, + [SMALL_STATE(5035)] = 239135, + [SMALL_STATE(5036)] = 239149, + [SMALL_STATE(5037)] = 239161, + [SMALL_STATE(5038)] = 239175, + [SMALL_STATE(5039)] = 239187, + [SMALL_STATE(5040)] = 239201, + [SMALL_STATE(5041)] = 239211, + [SMALL_STATE(5042)] = 239225, + [SMALL_STATE(5043)] = 239239, + [SMALL_STATE(5044)] = 239253, + [SMALL_STATE(5045)] = 239265, + [SMALL_STATE(5046)] = 239279, + [SMALL_STATE(5047)] = 239293, + [SMALL_STATE(5048)] = 239309, + [SMALL_STATE(5049)] = 239323, + [SMALL_STATE(5050)] = 239337, + [SMALL_STATE(5051)] = 239353, + [SMALL_STATE(5052)] = 239367, + [SMALL_STATE(5053)] = 239383, + [SMALL_STATE(5054)] = 239397, + [SMALL_STATE(5055)] = 239407, + [SMALL_STATE(5056)] = 239417, + [SMALL_STATE(5057)] = 239427, + [SMALL_STATE(5058)] = 239441, + [SMALL_STATE(5059)] = 239455, + [SMALL_STATE(5060)] = 239469, + [SMALL_STATE(5061)] = 239483, + [SMALL_STATE(5062)] = 239497, + [SMALL_STATE(5063)] = 239511, + [SMALL_STATE(5064)] = 239525, + [SMALL_STATE(5065)] = 239538, + [SMALL_STATE(5066)] = 239547, + [SMALL_STATE(5067)] = 239560, + [SMALL_STATE(5068)] = 239573, + [SMALL_STATE(5069)] = 239586, + [SMALL_STATE(5070)] = 239599, + [SMALL_STATE(5071)] = 239612, + [SMALL_STATE(5072)] = 239625, + [SMALL_STATE(5073)] = 239638, + [SMALL_STATE(5074)] = 239649, + [SMALL_STATE(5075)] = 239662, + [SMALL_STATE(5076)] = 239673, + [SMALL_STATE(5077)] = 239686, + [SMALL_STATE(5078)] = 239699, + [SMALL_STATE(5079)] = 239712, + [SMALL_STATE(5080)] = 239725, + [SMALL_STATE(5081)] = 239738, + [SMALL_STATE(5082)] = 239751, + [SMALL_STATE(5083)] = 239764, + [SMALL_STATE(5084)] = 239777, + [SMALL_STATE(5085)] = 239790, + [SMALL_STATE(5086)] = 239803, + [SMALL_STATE(5087)] = 239816, + [SMALL_STATE(5088)] = 239829, + [SMALL_STATE(5089)] = 239842, + [SMALL_STATE(5090)] = 239855, + [SMALL_STATE(5091)] = 239866, + [SMALL_STATE(5092)] = 239879, + [SMALL_STATE(5093)] = 239890, + [SMALL_STATE(5094)] = 239903, + [SMALL_STATE(5095)] = 239916, + [SMALL_STATE(5096)] = 239929, + [SMALL_STATE(5097)] = 239942, + [SMALL_STATE(5098)] = 239955, + [SMALL_STATE(5099)] = 239968, + [SMALL_STATE(5100)] = 239981, + [SMALL_STATE(5101)] = 239994, + [SMALL_STATE(5102)] = 240005, + [SMALL_STATE(5103)] = 240018, + [SMALL_STATE(5104)] = 240029, + [SMALL_STATE(5105)] = 240042, + [SMALL_STATE(5106)] = 240055, + [SMALL_STATE(5107)] = 240068, + [SMALL_STATE(5108)] = 240081, + [SMALL_STATE(5109)] = 240094, + [SMALL_STATE(5110)] = 240107, + [SMALL_STATE(5111)] = 240120, + [SMALL_STATE(5112)] = 240133, + [SMALL_STATE(5113)] = 240144, + [SMALL_STATE(5114)] = 240157, + [SMALL_STATE(5115)] = 240170, + [SMALL_STATE(5116)] = 240183, + [SMALL_STATE(5117)] = 240196, + [SMALL_STATE(5118)] = 240209, + [SMALL_STATE(5119)] = 240220, + [SMALL_STATE(5120)] = 240233, + [SMALL_STATE(5121)] = 240246, + [SMALL_STATE(5122)] = 240259, + [SMALL_STATE(5123)] = 240272, + [SMALL_STATE(5124)] = 240283, + [SMALL_STATE(5125)] = 240296, + [SMALL_STATE(5126)] = 240309, + [SMALL_STATE(5127)] = 240322, + [SMALL_STATE(5128)] = 240335, + [SMALL_STATE(5129)] = 240346, + [SMALL_STATE(5130)] = 240359, + [SMALL_STATE(5131)] = 240372, + [SMALL_STATE(5132)] = 240383, + [SMALL_STATE(5133)] = 240396, + [SMALL_STATE(5134)] = 240409, + [SMALL_STATE(5135)] = 240422, + [SMALL_STATE(5136)] = 240435, + [SMALL_STATE(5137)] = 240446, + [SMALL_STATE(5138)] = 240459, + [SMALL_STATE(5139)] = 240472, + [SMALL_STATE(5140)] = 240485, + [SMALL_STATE(5141)] = 240496, + [SMALL_STATE(5142)] = 240507, + [SMALL_STATE(5143)] = 240518, + [SMALL_STATE(5144)] = 240531, + [SMALL_STATE(5145)] = 240542, + [SMALL_STATE(5146)] = 240555, + [SMALL_STATE(5147)] = 240566, + [SMALL_STATE(5148)] = 240579, + [SMALL_STATE(5149)] = 240590, + [SMALL_STATE(5150)] = 240603, + [SMALL_STATE(5151)] = 240616, + [SMALL_STATE(5152)] = 240629, + [SMALL_STATE(5153)] = 240642, + [SMALL_STATE(5154)] = 240655, + [SMALL_STATE(5155)] = 240668, + [SMALL_STATE(5156)] = 240681, + [SMALL_STATE(5157)] = 240694, + [SMALL_STATE(5158)] = 240707, + [SMALL_STATE(5159)] = 240716, + [SMALL_STATE(5160)] = 240729, + [SMALL_STATE(5161)] = 240742, + [SMALL_STATE(5162)] = 240755, + [SMALL_STATE(5163)] = 240768, + [SMALL_STATE(5164)] = 240781, + [SMALL_STATE(5165)] = 240794, + [SMALL_STATE(5166)] = 240803, + [SMALL_STATE(5167)] = 240816, + [SMALL_STATE(5168)] = 240827, + [SMALL_STATE(5169)] = 240836, + [SMALL_STATE(5170)] = 240847, + [SMALL_STATE(5171)] = 240860, + [SMALL_STATE(5172)] = 240873, + [SMALL_STATE(5173)] = 240886, + [SMALL_STATE(5174)] = 240895, + [SMALL_STATE(5175)] = 240908, + [SMALL_STATE(5176)] = 240921, + [SMALL_STATE(5177)] = 240934, + [SMALL_STATE(5178)] = 240947, + [SMALL_STATE(5179)] = 240958, + [SMALL_STATE(5180)] = 240969, + [SMALL_STATE(5181)] = 240982, + [SMALL_STATE(5182)] = 240995, + [SMALL_STATE(5183)] = 241008, + [SMALL_STATE(5184)] = 241021, + [SMALL_STATE(5185)] = 241034, + [SMALL_STATE(5186)] = 241047, + [SMALL_STATE(5187)] = 241060, + [SMALL_STATE(5188)] = 241073, + [SMALL_STATE(5189)] = 241086, + [SMALL_STATE(5190)] = 241099, + [SMALL_STATE(5191)] = 241112, + [SMALL_STATE(5192)] = 241125, + [SMALL_STATE(5193)] = 241138, + [SMALL_STATE(5194)] = 241151, + [SMALL_STATE(5195)] = 241160, + [SMALL_STATE(5196)] = 241173, + [SMALL_STATE(5197)] = 241186, + [SMALL_STATE(5198)] = 241199, + [SMALL_STATE(5199)] = 241212, + [SMALL_STATE(5200)] = 241225, + [SMALL_STATE(5201)] = 241234, + [SMALL_STATE(5202)] = 241247, + [SMALL_STATE(5203)] = 241260, + [SMALL_STATE(5204)] = 241273, + [SMALL_STATE(5205)] = 241286, + [SMALL_STATE(5206)] = 241299, + [SMALL_STATE(5207)] = 241312, + [SMALL_STATE(5208)] = 241325, + [SMALL_STATE(5209)] = 241336, + [SMALL_STATE(5210)] = 241349, + [SMALL_STATE(5211)] = 241362, + [SMALL_STATE(5212)] = 241375, + [SMALL_STATE(5213)] = 241388, + [SMALL_STATE(5214)] = 241401, + [SMALL_STATE(5215)] = 241414, + [SMALL_STATE(5216)] = 241427, + [SMALL_STATE(5217)] = 241440, + [SMALL_STATE(5218)] = 241453, + [SMALL_STATE(5219)] = 241466, + [SMALL_STATE(5220)] = 241479, + [SMALL_STATE(5221)] = 241492, + [SMALL_STATE(5222)] = 241505, + [SMALL_STATE(5223)] = 241518, + [SMALL_STATE(5224)] = 241531, + [SMALL_STATE(5225)] = 241544, + [SMALL_STATE(5226)] = 241557, + [SMALL_STATE(5227)] = 241570, + [SMALL_STATE(5228)] = 241583, + [SMALL_STATE(5229)] = 241596, + [SMALL_STATE(5230)] = 241609, + [SMALL_STATE(5231)] = 241622, + [SMALL_STATE(5232)] = 241635, + [SMALL_STATE(5233)] = 241648, + [SMALL_STATE(5234)] = 241657, + [SMALL_STATE(5235)] = 241670, + [SMALL_STATE(5236)] = 241679, + [SMALL_STATE(5237)] = 241688, + [SMALL_STATE(5238)] = 241701, + [SMALL_STATE(5239)] = 241714, + [SMALL_STATE(5240)] = 241727, + [SMALL_STATE(5241)] = 241736, + [SMALL_STATE(5242)] = 241747, + [SMALL_STATE(5243)] = 241760, + [SMALL_STATE(5244)] = 241773, + [SMALL_STATE(5245)] = 241786, + [SMALL_STATE(5246)] = 241799, + [SMALL_STATE(5247)] = 241812, + [SMALL_STATE(5248)] = 241825, + [SMALL_STATE(5249)] = 241838, + [SMALL_STATE(5250)] = 241851, + [SMALL_STATE(5251)] = 241864, + [SMALL_STATE(5252)] = 241877, + [SMALL_STATE(5253)] = 241890, + [SMALL_STATE(5254)] = 241903, + [SMALL_STATE(5255)] = 241916, + [SMALL_STATE(5256)] = 241929, + [SMALL_STATE(5257)] = 241942, + [SMALL_STATE(5258)] = 241955, + [SMALL_STATE(5259)] = 241968, + [SMALL_STATE(5260)] = 241981, + [SMALL_STATE(5261)] = 241990, + [SMALL_STATE(5262)] = 242003, + [SMALL_STATE(5263)] = 242016, + [SMALL_STATE(5264)] = 242029, + [SMALL_STATE(5265)] = 242042, + [SMALL_STATE(5266)] = 242055, + [SMALL_STATE(5267)] = 242066, + [SMALL_STATE(5268)] = 242079, + [SMALL_STATE(5269)] = 242090, + [SMALL_STATE(5270)] = 242103, + [SMALL_STATE(5271)] = 242116, + [SMALL_STATE(5272)] = 242129, + [SMALL_STATE(5273)] = 242140, + [SMALL_STATE(5274)] = 242151, + [SMALL_STATE(5275)] = 242164, + [SMALL_STATE(5276)] = 242173, + [SMALL_STATE(5277)] = 242183, + [SMALL_STATE(5278)] = 242191, + [SMALL_STATE(5279)] = 242201, + [SMALL_STATE(5280)] = 242209, + [SMALL_STATE(5281)] = 242219, + [SMALL_STATE(5282)] = 242227, + [SMALL_STATE(5283)] = 242237, + [SMALL_STATE(5284)] = 242247, + [SMALL_STATE(5285)] = 242257, + [SMALL_STATE(5286)] = 242267, + [SMALL_STATE(5287)] = 242275, + [SMALL_STATE(5288)] = 242283, + [SMALL_STATE(5289)] = 242291, + [SMALL_STATE(5290)] = 242301, + [SMALL_STATE(5291)] = 242309, + [SMALL_STATE(5292)] = 242317, + [SMALL_STATE(5293)] = 242327, + [SMALL_STATE(5294)] = 242337, + [SMALL_STATE(5295)] = 242347, + [SMALL_STATE(5296)] = 242355, + [SMALL_STATE(5297)] = 242363, + [SMALL_STATE(5298)] = 242373, + [SMALL_STATE(5299)] = 242381, + [SMALL_STATE(5300)] = 242389, + [SMALL_STATE(5301)] = 242397, + [SMALL_STATE(5302)] = 242407, + [SMALL_STATE(5303)] = 242417, + [SMALL_STATE(5304)] = 242427, + [SMALL_STATE(5305)] = 242437, + [SMALL_STATE(5306)] = 242445, + [SMALL_STATE(5307)] = 242455, + [SMALL_STATE(5308)] = 242463, + [SMALL_STATE(5309)] = 242471, + [SMALL_STATE(5310)] = 242479, + [SMALL_STATE(5311)] = 242489, + [SMALL_STATE(5312)] = 242497, + [SMALL_STATE(5313)] = 242505, + [SMALL_STATE(5314)] = 242515, + [SMALL_STATE(5315)] = 242523, + [SMALL_STATE(5316)] = 242531, + [SMALL_STATE(5317)] = 242539, + [SMALL_STATE(5318)] = 242547, + [SMALL_STATE(5319)] = 242555, + [SMALL_STATE(5320)] = 242563, + [SMALL_STATE(5321)] = 242571, + [SMALL_STATE(5322)] = 242579, + [SMALL_STATE(5323)] = 242589, + [SMALL_STATE(5324)] = 242597, + [SMALL_STATE(5325)] = 242607, + [SMALL_STATE(5326)] = 242615, + [SMALL_STATE(5327)] = 242623, + [SMALL_STATE(5328)] = 242633, + [SMALL_STATE(5329)] = 242643, + [SMALL_STATE(5330)] = 242651, + [SMALL_STATE(5331)] = 242659, + [SMALL_STATE(5332)] = 242667, + [SMALL_STATE(5333)] = 242675, + [SMALL_STATE(5334)] = 242683, + [SMALL_STATE(5335)] = 242691, + [SMALL_STATE(5336)] = 242699, + [SMALL_STATE(5337)] = 242709, + [SMALL_STATE(5338)] = 242717, + [SMALL_STATE(5339)] = 242724, + [SMALL_STATE(5340)] = 242731, + [SMALL_STATE(5341)] = 242738, + [SMALL_STATE(5342)] = 242745, + [SMALL_STATE(5343)] = 242752, + [SMALL_STATE(5344)] = 242759, + [SMALL_STATE(5345)] = 242766, + [SMALL_STATE(5346)] = 242773, + [SMALL_STATE(5347)] = 242780, + [SMALL_STATE(5348)] = 242787, + [SMALL_STATE(5349)] = 242794, + [SMALL_STATE(5350)] = 242801, + [SMALL_STATE(5351)] = 242808, + [SMALL_STATE(5352)] = 242815, + [SMALL_STATE(5353)] = 242822, + [SMALL_STATE(5354)] = 242829, + [SMALL_STATE(5355)] = 242836, + [SMALL_STATE(5356)] = 242843, + [SMALL_STATE(5357)] = 242850, + [SMALL_STATE(5358)] = 242857, + [SMALL_STATE(5359)] = 242864, + [SMALL_STATE(5360)] = 242871, + [SMALL_STATE(5361)] = 242878, + [SMALL_STATE(5362)] = 242885, + [SMALL_STATE(5363)] = 242892, + [SMALL_STATE(5364)] = 242899, + [SMALL_STATE(5365)] = 242906, + [SMALL_STATE(5366)] = 242913, + [SMALL_STATE(5367)] = 242920, + [SMALL_STATE(5368)] = 242927, + [SMALL_STATE(5369)] = 242934, + [SMALL_STATE(5370)] = 242941, + [SMALL_STATE(5371)] = 242948, + [SMALL_STATE(5372)] = 242955, + [SMALL_STATE(5373)] = 242962, + [SMALL_STATE(5374)] = 242969, + [SMALL_STATE(5375)] = 242976, + [SMALL_STATE(5376)] = 242983, + [SMALL_STATE(5377)] = 242990, + [SMALL_STATE(5378)] = 242997, + [SMALL_STATE(5379)] = 243004, + [SMALL_STATE(5380)] = 243011, + [SMALL_STATE(5381)] = 243018, + [SMALL_STATE(5382)] = 243025, + [SMALL_STATE(5383)] = 243032, + [SMALL_STATE(5384)] = 243039, + [SMALL_STATE(5385)] = 243046, + [SMALL_STATE(5386)] = 243053, + [SMALL_STATE(5387)] = 243060, + [SMALL_STATE(5388)] = 243067, + [SMALL_STATE(5389)] = 243074, + [SMALL_STATE(5390)] = 243081, + [SMALL_STATE(5391)] = 243088, + [SMALL_STATE(5392)] = 243095, + [SMALL_STATE(5393)] = 243102, + [SMALL_STATE(5394)] = 243109, + [SMALL_STATE(5395)] = 243116, + [SMALL_STATE(5396)] = 243123, + [SMALL_STATE(5397)] = 243130, + [SMALL_STATE(5398)] = 243137, + [SMALL_STATE(5399)] = 243144, + [SMALL_STATE(5400)] = 243151, + [SMALL_STATE(5401)] = 243158, + [SMALL_STATE(5402)] = 243165, + [SMALL_STATE(5403)] = 243172, + [SMALL_STATE(5404)] = 243179, + [SMALL_STATE(5405)] = 243186, + [SMALL_STATE(5406)] = 243193, + [SMALL_STATE(5407)] = 243200, + [SMALL_STATE(5408)] = 243207, + [SMALL_STATE(5409)] = 243214, + [SMALL_STATE(5410)] = 243221, + [SMALL_STATE(5411)] = 243228, + [SMALL_STATE(5412)] = 243235, + [SMALL_STATE(5413)] = 243242, + [SMALL_STATE(5414)] = 243249, + [SMALL_STATE(5415)] = 243256, + [SMALL_STATE(5416)] = 243263, + [SMALL_STATE(5417)] = 243270, + [SMALL_STATE(5418)] = 243277, + [SMALL_STATE(5419)] = 243284, + [SMALL_STATE(5420)] = 243291, + [SMALL_STATE(5421)] = 243298, + [SMALL_STATE(5422)] = 243305, + [SMALL_STATE(5423)] = 243312, + [SMALL_STATE(5424)] = 243319, + [SMALL_STATE(5425)] = 243326, + [SMALL_STATE(5426)] = 243333, + [SMALL_STATE(5427)] = 243340, + [SMALL_STATE(5428)] = 243347, + [SMALL_STATE(5429)] = 243354, + [SMALL_STATE(5430)] = 243361, + [SMALL_STATE(5431)] = 243368, + [SMALL_STATE(5432)] = 243375, + [SMALL_STATE(5433)] = 243382, + [SMALL_STATE(5434)] = 243389, + [SMALL_STATE(5435)] = 243396, + [SMALL_STATE(5436)] = 243403, + [SMALL_STATE(5437)] = 243410, + [SMALL_STATE(5438)] = 243417, + [SMALL_STATE(5439)] = 243424, + [SMALL_STATE(5440)] = 243431, + [SMALL_STATE(5441)] = 243438, + [SMALL_STATE(5442)] = 243445, + [SMALL_STATE(5443)] = 243452, + [SMALL_STATE(5444)] = 243459, + [SMALL_STATE(5445)] = 243466, + [SMALL_STATE(5446)] = 243473, + [SMALL_STATE(5447)] = 243480, + [SMALL_STATE(5448)] = 243487, + [SMALL_STATE(5449)] = 243494, + [SMALL_STATE(5450)] = 243501, + [SMALL_STATE(5451)] = 243508, + [SMALL_STATE(5452)] = 243515, + [SMALL_STATE(5453)] = 243522, + [SMALL_STATE(5454)] = 243529, + [SMALL_STATE(5455)] = 243536, + [SMALL_STATE(5456)] = 243543, + [SMALL_STATE(5457)] = 243550, + [SMALL_STATE(5458)] = 243557, + [SMALL_STATE(5459)] = 243564, + [SMALL_STATE(5460)] = 243571, + [SMALL_STATE(5461)] = 243578, + [SMALL_STATE(5462)] = 243585, + [SMALL_STATE(5463)] = 243592, + [SMALL_STATE(5464)] = 243599, + [SMALL_STATE(5465)] = 243606, + [SMALL_STATE(5466)] = 243613, + [SMALL_STATE(5467)] = 243620, + [SMALL_STATE(5468)] = 243627, + [SMALL_STATE(5469)] = 243634, + [SMALL_STATE(5470)] = 243641, + [SMALL_STATE(5471)] = 243648, + [SMALL_STATE(5472)] = 243655, + [SMALL_STATE(5473)] = 243662, + [SMALL_STATE(5474)] = 243669, + [SMALL_STATE(5475)] = 243676, + [SMALL_STATE(5476)] = 243683, + [SMALL_STATE(5477)] = 243690, + [SMALL_STATE(5478)] = 243697, + [SMALL_STATE(5479)] = 243704, + [SMALL_STATE(5480)] = 243711, + [SMALL_STATE(5481)] = 243718, + [SMALL_STATE(5482)] = 243725, + [SMALL_STATE(5483)] = 243732, + [SMALL_STATE(5484)] = 243739, + [SMALL_STATE(5485)] = 243746, + [SMALL_STATE(5486)] = 243753, + [SMALL_STATE(5487)] = 243760, + [SMALL_STATE(5488)] = 243767, + [SMALL_STATE(5489)] = 243774, + [SMALL_STATE(5490)] = 243781, + [SMALL_STATE(5491)] = 243788, + [SMALL_STATE(5492)] = 243795, + [SMALL_STATE(5493)] = 243802, + [SMALL_STATE(5494)] = 243809, + [SMALL_STATE(5495)] = 243816, + [SMALL_STATE(5496)] = 243823, + [SMALL_STATE(5497)] = 243830, + [SMALL_STATE(5498)] = 243837, + [SMALL_STATE(5499)] = 243844, + [SMALL_STATE(5500)] = 243851, + [SMALL_STATE(5501)] = 243858, + [SMALL_STATE(5502)] = 243865, + [SMALL_STATE(5503)] = 243872, + [SMALL_STATE(5504)] = 243879, + [SMALL_STATE(5505)] = 243886, + [SMALL_STATE(5506)] = 243893, + [SMALL_STATE(5507)] = 243900, + [SMALL_STATE(5508)] = 243907, + [SMALL_STATE(5509)] = 243914, + [SMALL_STATE(5510)] = 243921, + [SMALL_STATE(5511)] = 243928, + [SMALL_STATE(5512)] = 243935, + [SMALL_STATE(5513)] = 243942, + [SMALL_STATE(5514)] = 243949, + [SMALL_STATE(5515)] = 243956, + [SMALL_STATE(5516)] = 243963, + [SMALL_STATE(5517)] = 243970, + [SMALL_STATE(5518)] = 243977, + [SMALL_STATE(5519)] = 243984, + [SMALL_STATE(5520)] = 243991, + [SMALL_STATE(5521)] = 243998, + [SMALL_STATE(5522)] = 244005, + [SMALL_STATE(5523)] = 244012, + [SMALL_STATE(5524)] = 244019, + [SMALL_STATE(5525)] = 244026, + [SMALL_STATE(5526)] = 244033, + [SMALL_STATE(5527)] = 244040, + [SMALL_STATE(5528)] = 244047, + [SMALL_STATE(5529)] = 244054, + [SMALL_STATE(5530)] = 244061, + [SMALL_STATE(5531)] = 244068, + [SMALL_STATE(5532)] = 244075, + [SMALL_STATE(5533)] = 244082, + [SMALL_STATE(5534)] = 244089, + [SMALL_STATE(5535)] = 244096, + [SMALL_STATE(5536)] = 244103, + [SMALL_STATE(5537)] = 244110, + [SMALL_STATE(5538)] = 244117, + [SMALL_STATE(5539)] = 244124, + [SMALL_STATE(5540)] = 244131, + [SMALL_STATE(5541)] = 244138, + [SMALL_STATE(5542)] = 244145, + [SMALL_STATE(5543)] = 244152, + [SMALL_STATE(5544)] = 244159, + [SMALL_STATE(5545)] = 244166, + [SMALL_STATE(5546)] = 244173, + [SMALL_STATE(5547)] = 244180, + [SMALL_STATE(5548)] = 244187, + [SMALL_STATE(5549)] = 244194, + [SMALL_STATE(5550)] = 244201, + [SMALL_STATE(5551)] = 244208, + [SMALL_STATE(5552)] = 244215, + [SMALL_STATE(5553)] = 244222, + [SMALL_STATE(5554)] = 244229, + [SMALL_STATE(5555)] = 244236, + [SMALL_STATE(5556)] = 244243, + [SMALL_STATE(5557)] = 244250, + [SMALL_STATE(5558)] = 244257, + [SMALL_STATE(5559)] = 244264, + [SMALL_STATE(5560)] = 244271, + [SMALL_STATE(5561)] = 244278, + [SMALL_STATE(5562)] = 244285, + [SMALL_STATE(5563)] = 244292, + [SMALL_STATE(5564)] = 244299, + [SMALL_STATE(5565)] = 244306, + [SMALL_STATE(5566)] = 244313, + [SMALL_STATE(5567)] = 244320, + [SMALL_STATE(5568)] = 244327, + [SMALL_STATE(5569)] = 244334, + [SMALL_STATE(5570)] = 244341, + [SMALL_STATE(5571)] = 244348, + [SMALL_STATE(5572)] = 244355, + [SMALL_STATE(5573)] = 244362, + [SMALL_STATE(5574)] = 244369, + [SMALL_STATE(5575)] = 244376, + [SMALL_STATE(5576)] = 244383, + [SMALL_STATE(5577)] = 244390, + [SMALL_STATE(5578)] = 244397, + [SMALL_STATE(5579)] = 244404, + [SMALL_STATE(5580)] = 244411, + [SMALL_STATE(5581)] = 244418, + [SMALL_STATE(5582)] = 244425, + [SMALL_STATE(5583)] = 244432, + [SMALL_STATE(5584)] = 244439, + [SMALL_STATE(5585)] = 244446, + [SMALL_STATE(5586)] = 244453, + [SMALL_STATE(5587)] = 244460, + [SMALL_STATE(5588)] = 244467, + [SMALL_STATE(5589)] = 244474, + [SMALL_STATE(5590)] = 244481, + [SMALL_STATE(5591)] = 244488, + [SMALL_STATE(5592)] = 244495, + [SMALL_STATE(5593)] = 244502, + [SMALL_STATE(5594)] = 244509, + [SMALL_STATE(5595)] = 244516, + [SMALL_STATE(5596)] = 244523, + [SMALL_STATE(5597)] = 244530, + [SMALL_STATE(5598)] = 244537, + [SMALL_STATE(5599)] = 244544, + [SMALL_STATE(5600)] = 244551, + [SMALL_STATE(5601)] = 244558, + [SMALL_STATE(5602)] = 244565, + [SMALL_STATE(5603)] = 244572, + [SMALL_STATE(5604)] = 244579, + [SMALL_STATE(5605)] = 244586, + [SMALL_STATE(5606)] = 244593, + [SMALL_STATE(5607)] = 244600, + [SMALL_STATE(5608)] = 244607, + [SMALL_STATE(5609)] = 244614, + [SMALL_STATE(5610)] = 244621, + [SMALL_STATE(5611)] = 244628, + [SMALL_STATE(5612)] = 244635, + [SMALL_STATE(5613)] = 244642, + [SMALL_STATE(5614)] = 244649, + [SMALL_STATE(5615)] = 244656, + [SMALL_STATE(5616)] = 244663, + [SMALL_STATE(5617)] = 244670, + [SMALL_STATE(5618)] = 244677, + [SMALL_STATE(5619)] = 244684, + [SMALL_STATE(5620)] = 244691, + [SMALL_STATE(5621)] = 244698, + [SMALL_STATE(5622)] = 244705, + [SMALL_STATE(5623)] = 244712, + [SMALL_STATE(5624)] = 244719, + [SMALL_STATE(5625)] = 244726, + [SMALL_STATE(5626)] = 244733, + [SMALL_STATE(5627)] = 244740, + [SMALL_STATE(5628)] = 244747, + [SMALL_STATE(5629)] = 244754, + [SMALL_STATE(5630)] = 244761, + [SMALL_STATE(5631)] = 244768, + [SMALL_STATE(5632)] = 244775, + [SMALL_STATE(5633)] = 244782, + [SMALL_STATE(5634)] = 244789, + [SMALL_STATE(5635)] = 244796, + [SMALL_STATE(5636)] = 244803, + [SMALL_STATE(5637)] = 244810, + [SMALL_STATE(5638)] = 244817, + [SMALL_STATE(5639)] = 244824, + [SMALL_STATE(5640)] = 244831, + [SMALL_STATE(5641)] = 244838, + [SMALL_STATE(5642)] = 244845, + [SMALL_STATE(5643)] = 244852, + [SMALL_STATE(5644)] = 244859, + [SMALL_STATE(5645)] = 244866, + [SMALL_STATE(5646)] = 244873, + [SMALL_STATE(5647)] = 244880, + [SMALL_STATE(5648)] = 244887, + [SMALL_STATE(5649)] = 244894, + [SMALL_STATE(5650)] = 244901, + [SMALL_STATE(5651)] = 244908, + [SMALL_STATE(5652)] = 244915, + [SMALL_STATE(5653)] = 244922, + [SMALL_STATE(5654)] = 244929, + [SMALL_STATE(5655)] = 244936, + [SMALL_STATE(5656)] = 244943, + [SMALL_STATE(5657)] = 244950, + [SMALL_STATE(5658)] = 244957, + [SMALL_STATE(5659)] = 244964, + [SMALL_STATE(5660)] = 244971, + [SMALL_STATE(5661)] = 244978, + [SMALL_STATE(5662)] = 244985, + [SMALL_STATE(5663)] = 244992, + [SMALL_STATE(5664)] = 244999, + [SMALL_STATE(5665)] = 245006, + [SMALL_STATE(5666)] = 245013, + [SMALL_STATE(5667)] = 245020, + [SMALL_STATE(5668)] = 245027, + [SMALL_STATE(5669)] = 245034, + [SMALL_STATE(5670)] = 245041, + [SMALL_STATE(5671)] = 245048, + [SMALL_STATE(5672)] = 245055, + [SMALL_STATE(5673)] = 245062, + [SMALL_STATE(5674)] = 245069, + [SMALL_STATE(5675)] = 245076, + [SMALL_STATE(5676)] = 245083, + [SMALL_STATE(5677)] = 245090, + [SMALL_STATE(5678)] = 245097, + [SMALL_STATE(5679)] = 245104, + [SMALL_STATE(5680)] = 245111, + [SMALL_STATE(5681)] = 245118, + [SMALL_STATE(5682)] = 245125, + [SMALL_STATE(5683)] = 245132, + [SMALL_STATE(5684)] = 245139, + [SMALL_STATE(5685)] = 245146, + [SMALL_STATE(5686)] = 245153, + [SMALL_STATE(5687)] = 245160, + [SMALL_STATE(5688)] = 245167, + [SMALL_STATE(5689)] = 245174, + [SMALL_STATE(5690)] = 245181, + [SMALL_STATE(5691)] = 245188, + [SMALL_STATE(5692)] = 245195, + [SMALL_STATE(5693)] = 245202, + [SMALL_STATE(5694)] = 245209, + [SMALL_STATE(5695)] = 245216, + [SMALL_STATE(5696)] = 245223, + [SMALL_STATE(5697)] = 245230, + [SMALL_STATE(5698)] = 245237, + [SMALL_STATE(5699)] = 245244, + [SMALL_STATE(5700)] = 245251, + [SMALL_STATE(5701)] = 245258, + [SMALL_STATE(5702)] = 245265, + [SMALL_STATE(5703)] = 245272, + [SMALL_STATE(5704)] = 245279, + [SMALL_STATE(5705)] = 245286, + [SMALL_STATE(5706)] = 245293, + [SMALL_STATE(5707)] = 245300, + [SMALL_STATE(5708)] = 245307, + [SMALL_STATE(5709)] = 245314, + [SMALL_STATE(5710)] = 245321, + [SMALL_STATE(5711)] = 245328, + [SMALL_STATE(5712)] = 245335, + [SMALL_STATE(5713)] = 245342, + [SMALL_STATE(5714)] = 245349, + [SMALL_STATE(5715)] = 245356, + [SMALL_STATE(5716)] = 245363, + [SMALL_STATE(5717)] = 245370, + [SMALL_STATE(5718)] = 245377, + [SMALL_STATE(5719)] = 245384, + [SMALL_STATE(5720)] = 245391, + [SMALL_STATE(5721)] = 245398, + [SMALL_STATE(5722)] = 245405, + [SMALL_STATE(5723)] = 245412, + [SMALL_STATE(5724)] = 245419, + [SMALL_STATE(5725)] = 245426, + [SMALL_STATE(5726)] = 245433, + [SMALL_STATE(5727)] = 245440, + [SMALL_STATE(5728)] = 245447, + [SMALL_STATE(5729)] = 245454, + [SMALL_STATE(5730)] = 245461, + [SMALL_STATE(5731)] = 245468, + [SMALL_STATE(5732)] = 245475, + [SMALL_STATE(5733)] = 245482, + [SMALL_STATE(5734)] = 245489, + [SMALL_STATE(5735)] = 245496, + [SMALL_STATE(5736)] = 245503, + [SMALL_STATE(5737)] = 245510, + [SMALL_STATE(5738)] = 245517, + [SMALL_STATE(5739)] = 245524, + [SMALL_STATE(5740)] = 245531, + [SMALL_STATE(5741)] = 245538, + [SMALL_STATE(5742)] = 245545, + [SMALL_STATE(5743)] = 245552, + [SMALL_STATE(5744)] = 245559, + [SMALL_STATE(5745)] = 245566, + [SMALL_STATE(5746)] = 245573, + [SMALL_STATE(5747)] = 245580, + [SMALL_STATE(5748)] = 245587, + [SMALL_STATE(5749)] = 245594, + [SMALL_STATE(5750)] = 245601, + [SMALL_STATE(5751)] = 245608, + [SMALL_STATE(5752)] = 245615, + [SMALL_STATE(5753)] = 245622, + [SMALL_STATE(5754)] = 245629, + [SMALL_STATE(5755)] = 245636, + [SMALL_STATE(5756)] = 245643, + [SMALL_STATE(5757)] = 245650, + [SMALL_STATE(5758)] = 245657, + [SMALL_STATE(5759)] = 245664, + [SMALL_STATE(5760)] = 245671, + [SMALL_STATE(5761)] = 245678, + [SMALL_STATE(5762)] = 245685, + [SMALL_STATE(5763)] = 245692, + [SMALL_STATE(5764)] = 245699, + [SMALL_STATE(5765)] = 245706, + [SMALL_STATE(5766)] = 245713, + [SMALL_STATE(5767)] = 245720, + [SMALL_STATE(5768)] = 245727, + [SMALL_STATE(5769)] = 245734, + [SMALL_STATE(5770)] = 245741, + [SMALL_STATE(5771)] = 245748, + [SMALL_STATE(5772)] = 245755, + [SMALL_STATE(5773)] = 245762, + [SMALL_STATE(5774)] = 245769, + [SMALL_STATE(5775)] = 245776, + [SMALL_STATE(5776)] = 245783, + [SMALL_STATE(5777)] = 245790, + [SMALL_STATE(5778)] = 245797, + [SMALL_STATE(5779)] = 245804, + [SMALL_STATE(5780)] = 245811, + [SMALL_STATE(5781)] = 245818, + [SMALL_STATE(5782)] = 245825, + [SMALL_STATE(5783)] = 245832, + [SMALL_STATE(5784)] = 245839, + [SMALL_STATE(5785)] = 245846, + [SMALL_STATE(5786)] = 245853, + [SMALL_STATE(5787)] = 245860, + [SMALL_STATE(5788)] = 245867, + [SMALL_STATE(5789)] = 245874, + [SMALL_STATE(5790)] = 245881, + [SMALL_STATE(5791)] = 245888, + [SMALL_STATE(5792)] = 245895, + [SMALL_STATE(5793)] = 245902, + [SMALL_STATE(5794)] = 245909, + [SMALL_STATE(5795)] = 245916, + [SMALL_STATE(5796)] = 245923, + [SMALL_STATE(5797)] = 245930, + [SMALL_STATE(5798)] = 245937, + [SMALL_STATE(5799)] = 245944, + [SMALL_STATE(5800)] = 245951, + [SMALL_STATE(5801)] = 245958, + [SMALL_STATE(5802)] = 245965, + [SMALL_STATE(5803)] = 245972, + [SMALL_STATE(5804)] = 245979, + [SMALL_STATE(5805)] = 245986, + [SMALL_STATE(5806)] = 245993, + [SMALL_STATE(5807)] = 246000, + [SMALL_STATE(5808)] = 246007, + [SMALL_STATE(5809)] = 246014, + [SMALL_STATE(5810)] = 246021, + [SMALL_STATE(5811)] = 246028, + [SMALL_STATE(5812)] = 246035, + [SMALL_STATE(5813)] = 246042, + [SMALL_STATE(5814)] = 246049, + [SMALL_STATE(5815)] = 246056, + [SMALL_STATE(5816)] = 246063, + [SMALL_STATE(5817)] = 246070, + [SMALL_STATE(5818)] = 246077, + [SMALL_STATE(5819)] = 246084, + [SMALL_STATE(5820)] = 246091, + [SMALL_STATE(5821)] = 246098, + [SMALL_STATE(5822)] = 246105, + [SMALL_STATE(5823)] = 246112, + [SMALL_STATE(5824)] = 246119, + [SMALL_STATE(5825)] = 246126, + [SMALL_STATE(5826)] = 246133, + [SMALL_STATE(5827)] = 246140, + [SMALL_STATE(5828)] = 246147, + [SMALL_STATE(5829)] = 246154, + [SMALL_STATE(5830)] = 246161, + [SMALL_STATE(5831)] = 246168, + [SMALL_STATE(5832)] = 246175, + [SMALL_STATE(5833)] = 246182, + [SMALL_STATE(5834)] = 246189, + [SMALL_STATE(5835)] = 246196, + [SMALL_STATE(5836)] = 246203, + [SMALL_STATE(5837)] = 246210, + [SMALL_STATE(5838)] = 246217, + [SMALL_STATE(5839)] = 246224, + [SMALL_STATE(5840)] = 246231, + [SMALL_STATE(5841)] = 246238, + [SMALL_STATE(5842)] = 246245, + [SMALL_STATE(5843)] = 246252, + [SMALL_STATE(5844)] = 246259, + [SMALL_STATE(5845)] = 246266, + [SMALL_STATE(5846)] = 246273, + [SMALL_STATE(5847)] = 246280, + [SMALL_STATE(5848)] = 246287, + [SMALL_STATE(5849)] = 246294, + [SMALL_STATE(5850)] = 246301, + [SMALL_STATE(5851)] = 246308, + [SMALL_STATE(5852)] = 246315, + [SMALL_STATE(5853)] = 246322, + [SMALL_STATE(5854)] = 246329, + [SMALL_STATE(5855)] = 246336, + [SMALL_STATE(5856)] = 246343, + [SMALL_STATE(5857)] = 246350, + [SMALL_STATE(5858)] = 246357, + [SMALL_STATE(5859)] = 246364, + [SMALL_STATE(5860)] = 246371, + [SMALL_STATE(5861)] = 246378, + [SMALL_STATE(5862)] = 246385, + [SMALL_STATE(5863)] = 246392, + [SMALL_STATE(5864)] = 246399, + [SMALL_STATE(5865)] = 246406, + [SMALL_STATE(5866)] = 246413, + [SMALL_STATE(5867)] = 246420, + [SMALL_STATE(5868)] = 246427, + [SMALL_STATE(5869)] = 246434, + [SMALL_STATE(5870)] = 246441, + [SMALL_STATE(5871)] = 246448, + [SMALL_STATE(5872)] = 246455, + [SMALL_STATE(5873)] = 246462, + [SMALL_STATE(5874)] = 246469, + [SMALL_STATE(5875)] = 246476, + [SMALL_STATE(5876)] = 246483, + [SMALL_STATE(5877)] = 246490, + [SMALL_STATE(5878)] = 246497, + [SMALL_STATE(5879)] = 246504, + [SMALL_STATE(5880)] = 246511, + [SMALL_STATE(5881)] = 246518, + [SMALL_STATE(5882)] = 246525, + [SMALL_STATE(5883)] = 246532, + [SMALL_STATE(5884)] = 246539, + [SMALL_STATE(5885)] = 246546, + [SMALL_STATE(5886)] = 246553, + [SMALL_STATE(5887)] = 246560, + [SMALL_STATE(5888)] = 246567, + [SMALL_STATE(5889)] = 246574, + [SMALL_STATE(5890)] = 246581, + [SMALL_STATE(5891)] = 246588, + [SMALL_STATE(5892)] = 246595, + [SMALL_STATE(5893)] = 246602, + [SMALL_STATE(5894)] = 246609, + [SMALL_STATE(5895)] = 246616, + [SMALL_STATE(5896)] = 246623, + [SMALL_STATE(5897)] = 246630, + [SMALL_STATE(5898)] = 246637, + [SMALL_STATE(5899)] = 246644, + [SMALL_STATE(5900)] = 246651, + [SMALL_STATE(5901)] = 246658, + [SMALL_STATE(5902)] = 246665, + [SMALL_STATE(5903)] = 246672, + [SMALL_STATE(5904)] = 246679, + [SMALL_STATE(5905)] = 246686, + [SMALL_STATE(5906)] = 246693, + [SMALL_STATE(5907)] = 246700, + [SMALL_STATE(5908)] = 246707, + [SMALL_STATE(5909)] = 246714, + [SMALL_STATE(5910)] = 246721, + [SMALL_STATE(5911)] = 246728, + [SMALL_STATE(5912)] = 246735, + [SMALL_STATE(5913)] = 246742, + [SMALL_STATE(5914)] = 246749, + [SMALL_STATE(5915)] = 246756, + [SMALL_STATE(5916)] = 246763, + [SMALL_STATE(5917)] = 246770, + [SMALL_STATE(5918)] = 246777, + [SMALL_STATE(5919)] = 246784, + [SMALL_STATE(5920)] = 246791, + [SMALL_STATE(5921)] = 246798, + [SMALL_STATE(5922)] = 246805, + [SMALL_STATE(5923)] = 246812, + [SMALL_STATE(5924)] = 246819, + [SMALL_STATE(5925)] = 246826, + [SMALL_STATE(5926)] = 246833, + [SMALL_STATE(5927)] = 246840, + [SMALL_STATE(5928)] = 246847, + [SMALL_STATE(5929)] = 246854, + [SMALL_STATE(5930)] = 246861, + [SMALL_STATE(5931)] = 246868, + [SMALL_STATE(5932)] = 246875, + [SMALL_STATE(5933)] = 246882, + [SMALL_STATE(5934)] = 246889, + [SMALL_STATE(5935)] = 246896, + [SMALL_STATE(5936)] = 246903, + [SMALL_STATE(5937)] = 246910, + [SMALL_STATE(5938)] = 246917, + [SMALL_STATE(5939)] = 246924, + [SMALL_STATE(5940)] = 246931, + [SMALL_STATE(5941)] = 246938, + [SMALL_STATE(5942)] = 246945, + [SMALL_STATE(5943)] = 246952, + [SMALL_STATE(5944)] = 246959, + [SMALL_STATE(5945)] = 246966, + [SMALL_STATE(5946)] = 246973, + [SMALL_STATE(5947)] = 246980, + [SMALL_STATE(5948)] = 246987, + [SMALL_STATE(5949)] = 246994, + [SMALL_STATE(5950)] = 247001, + [SMALL_STATE(5951)] = 247008, + [SMALL_STATE(5952)] = 247015, + [SMALL_STATE(5953)] = 247022, + [SMALL_STATE(5954)] = 247029, + [SMALL_STATE(5955)] = 247036, + [SMALL_STATE(5956)] = 247043, + [SMALL_STATE(5957)] = 247050, + [SMALL_STATE(5958)] = 247057, + [SMALL_STATE(5959)] = 247064, + [SMALL_STATE(5960)] = 247071, + [SMALL_STATE(5961)] = 247078, + [SMALL_STATE(5962)] = 247085, + [SMALL_STATE(5963)] = 247092, + [SMALL_STATE(5964)] = 247099, + [SMALL_STATE(5965)] = 247106, + [SMALL_STATE(5966)] = 247113, + [SMALL_STATE(5967)] = 247120, + [SMALL_STATE(5968)] = 247127, + [SMALL_STATE(5969)] = 247134, + [SMALL_STATE(5970)] = 247141, + [SMALL_STATE(5971)] = 247148, + [SMALL_STATE(5972)] = 247155, + [SMALL_STATE(5973)] = 247162, + [SMALL_STATE(5974)] = 247169, + [SMALL_STATE(5975)] = 247176, + [SMALL_STATE(5976)] = 247183, + [SMALL_STATE(5977)] = 247190, + [SMALL_STATE(5978)] = 247197, + [SMALL_STATE(5979)] = 247204, + [SMALL_STATE(5980)] = 247211, + [SMALL_STATE(5981)] = 247218, + [SMALL_STATE(5982)] = 247225, + [SMALL_STATE(5983)] = 247232, + [SMALL_STATE(5984)] = 247239, + [SMALL_STATE(5985)] = 247246, + [SMALL_STATE(5986)] = 247253, + [SMALL_STATE(5987)] = 247260, + [SMALL_STATE(5988)] = 247267, + [SMALL_STATE(5989)] = 247274, + [SMALL_STATE(5990)] = 247281, + [SMALL_STATE(5991)] = 247288, + [SMALL_STATE(5992)] = 247295, + [SMALL_STATE(5993)] = 247302, + [SMALL_STATE(5994)] = 247309, + [SMALL_STATE(5995)] = 247316, + [SMALL_STATE(5996)] = 247323, + [SMALL_STATE(5997)] = 247330, + [SMALL_STATE(5998)] = 247337, + [SMALL_STATE(5999)] = 247344, + [SMALL_STATE(6000)] = 247351, + [SMALL_STATE(6001)] = 247358, + [SMALL_STATE(6002)] = 247365, + [SMALL_STATE(6003)] = 247372, + [SMALL_STATE(6004)] = 247379, + [SMALL_STATE(6005)] = 247386, + [SMALL_STATE(6006)] = 247393, + [SMALL_STATE(6007)] = 247400, + [SMALL_STATE(6008)] = 247407, + [SMALL_STATE(6009)] = 247414, + [SMALL_STATE(6010)] = 247421, + [SMALL_STATE(6011)] = 247428, + [SMALL_STATE(6012)] = 247435, + [SMALL_STATE(6013)] = 247442, + [SMALL_STATE(6014)] = 247449, + [SMALL_STATE(6015)] = 247456, + [SMALL_STATE(6016)] = 247463, + [SMALL_STATE(6017)] = 247470, + [SMALL_STATE(6018)] = 247477, + [SMALL_STATE(6019)] = 247484, + [SMALL_STATE(6020)] = 247491, + [SMALL_STATE(6021)] = 247498, + [SMALL_STATE(6022)] = 247505, + [SMALL_STATE(6023)] = 247512, + [SMALL_STATE(6024)] = 247519, + [SMALL_STATE(6025)] = 247526, + [SMALL_STATE(6026)] = 247533, + [SMALL_STATE(6027)] = 247540, + [SMALL_STATE(6028)] = 247547, + [SMALL_STATE(6029)] = 247554, + [SMALL_STATE(6030)] = 247561, + [SMALL_STATE(6031)] = 247568, + [SMALL_STATE(6032)] = 247575, + [SMALL_STATE(6033)] = 247582, + [SMALL_STATE(6034)] = 247589, + [SMALL_STATE(6035)] = 247596, + [SMALL_STATE(6036)] = 247603, + [SMALL_STATE(6037)] = 247610, + [SMALL_STATE(6038)] = 247617, + [SMALL_STATE(6039)] = 247624, + [SMALL_STATE(6040)] = 247631, + [SMALL_STATE(6041)] = 247638, + [SMALL_STATE(6042)] = 247645, + [SMALL_STATE(6043)] = 247652, + [SMALL_STATE(6044)] = 247659, + [SMALL_STATE(6045)] = 247666, + [SMALL_STATE(6046)] = 247673, + [SMALL_STATE(6047)] = 247680, + [SMALL_STATE(6048)] = 247687, + [SMALL_STATE(6049)] = 247694, + [SMALL_STATE(6050)] = 247701, + [SMALL_STATE(6051)] = 247708, + [SMALL_STATE(6052)] = 247715, + [SMALL_STATE(6053)] = 247722, + [SMALL_STATE(6054)] = 247729, + [SMALL_STATE(6055)] = 247736, + [SMALL_STATE(6056)] = 247743, + [SMALL_STATE(6057)] = 247750, + [SMALL_STATE(6058)] = 247757, + [SMALL_STATE(6059)] = 247764, + [SMALL_STATE(6060)] = 247771, + [SMALL_STATE(6061)] = 247778, + [SMALL_STATE(6062)] = 247785, + [SMALL_STATE(6063)] = 247792, + [SMALL_STATE(6064)] = 247799, + [SMALL_STATE(6065)] = 247806, + [SMALL_STATE(6066)] = 247813, + [SMALL_STATE(6067)] = 247820, + [SMALL_STATE(6068)] = 247827, + [SMALL_STATE(6069)] = 247834, + [SMALL_STATE(6070)] = 247841, + [SMALL_STATE(6071)] = 247848, + [SMALL_STATE(6072)] = 247855, + [SMALL_STATE(6073)] = 247862, + [SMALL_STATE(6074)] = 247869, + [SMALL_STATE(6075)] = 247876, + [SMALL_STATE(6076)] = 247883, + [SMALL_STATE(6077)] = 247890, + [SMALL_STATE(6078)] = 247897, + [SMALL_STATE(6079)] = 247904, + [SMALL_STATE(6080)] = 247911, + [SMALL_STATE(6081)] = 247918, + [SMALL_STATE(6082)] = 247925, + [SMALL_STATE(6083)] = 247932, + [SMALL_STATE(6084)] = 247939, + [SMALL_STATE(6085)] = 247946, + [SMALL_STATE(6086)] = 247953, + [SMALL_STATE(6087)] = 247960, + [SMALL_STATE(6088)] = 247967, + [SMALL_STATE(6089)] = 247974, + [SMALL_STATE(6090)] = 247981, + [SMALL_STATE(6091)] = 247988, + [SMALL_STATE(6092)] = 247995, + [SMALL_STATE(6093)] = 248002, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -152819,4450 +278360,6942 @@ 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, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 33), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 40), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3595), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1770), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2471), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3380), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2817), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(725), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2982), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2845), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(46), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3043), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), - [353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(381), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2793), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2980), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2853), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(105), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1979), - [478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3421), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(518), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2816), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2997), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2457), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1947), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), - [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 3, 0, 0), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 2, 0, 0), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(371), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2810), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(351), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2836), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2440), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1930), - [672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3412), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(527), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(329), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3032), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(55), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(56), - [701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(57), - [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(167), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3407), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 4, 0, 0), - [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 4, 0, 0), - [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 4, 0, 0), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 4, 0, 0), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 5, 0, 0), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 5, 0, 0), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 7), - [803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 7), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 8), - [821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 8), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), - [863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(385), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3026), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2825), - [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(577), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(496), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), - [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2062), - [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2860), - [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(428), - [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2987), - [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2826), - [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(106), - [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(107), - [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(102), - [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2450), - [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(541), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 16), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 16), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2847), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(622), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3013), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2832), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(127), - [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(128), - [1028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2458), - [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(777), - [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(620), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2076), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2833), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(608), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3014), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2854), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(121), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(122), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(117), - [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2456), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(736), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(823), - [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2225), - [1107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2844), - [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(714), - [1113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3036), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2828), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(23), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(30), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(33), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2340), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(843), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1003), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2835), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), - [1237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(79), - [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2441), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(946), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(834), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2240), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2817), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(725), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2982), - [1273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2845), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(46), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(47), - [1282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(48), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2409), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(858), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(712), - [1294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1006), - [1297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), - [1300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(676), - [1303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2859), - [1309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [1312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [1315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(60), - [1318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2430), - [1321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(971), - [1324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [1331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [1335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 4), - [1337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 4), - [1339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 10), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 10), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 1, 0, 0), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [1377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [1383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2603), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expansion, 2, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expansion, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_deep_expression, 3, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_deep_expression, 3, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 1, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 1, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_orig_simple_variable_name, 1, 0, 2), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_orig_simple_variable_name, 1, 0, 2), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 13), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 13), - [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 0), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 0), - [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 22), - [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 22), - [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 13), - [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 13), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 24), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 24), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 0), - [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 0), - [1473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 22), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 22), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 27), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 27), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 23), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 23), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 28), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 28), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 24), - [1491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 24), - [1493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, 0, 22), - [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, 0, 22), - [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, 0, 0), - [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, 0, 0), - [1501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, 0, 27), - [1503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, 0, 27), - [1505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, 0, 28), - [1507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, 0, 28), - [1509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, 0, 24), - [1511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, 0, 24), - [1513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, 0, 27), - [1515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, 0, 27), - [1517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, 0, 28), - [1519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, 0, 28), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2580), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 23), - [1542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 23), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2599), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2661), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [1608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [1616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 2), - [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 2), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [1624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(392), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2613), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2660), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2610), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(482), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 6), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 6), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 14), - [1688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 14), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2646), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [1711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(547), - [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(581), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), - [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(628), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(675), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2639), - [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 2), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 2), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [1794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(928), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(929), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(967), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [3511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [3581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [4763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), - [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2842), - [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), - [4777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), - [4780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2107), - [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(1590), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2443), - [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [5306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [5309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2359), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3043), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3393), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2635), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 3), - [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 3), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 9), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 9), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [5365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [5395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, 0, 5), - [5399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, 0, 5), - [5401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2668), - [5404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), - [5406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), - [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2806), - [5411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2669), - [5414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3038), - [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2823), - [5420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(94), - [5423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(95), - [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(93), - [5429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2447), - [5432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2739), - [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [5437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [5439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), - [5442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3756), - [5445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), - [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2416), - [5494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), - [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), - [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3078), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), - [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3800), - [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2632), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), - [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2834), - [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3171), - [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3030), - [5860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2811), - [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [5872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), - [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2501), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2605), - [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2651), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [5929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), - [5942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2751), - [5958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2801), - [5961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2753), - [5964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3016), - [5967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2800), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(88), - [5973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(89), - [5976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(87), - [5979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2444), - [5982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2788), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), - [6047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 11), - [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 11), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 12), - [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 12), - [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, 0, 0), - [6069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_repeat1, 1, 0, 0), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), - [6077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 18), - [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 18), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 19), - [6087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 19), - [6089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), - [6091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 21), - [6095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 21), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 25), - [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 25), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 21), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 21), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 4), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 4), - [6117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 26), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 26), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 29), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 29), - [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 30), - [6134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 30), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 31), - [6138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 31), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 21), - [6142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 21), - [6144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 4), - [6146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 4), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 34), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 34), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 35), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 35), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 36), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 36), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 37), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 37), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 21), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 21), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 4), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 4), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 42), - [6178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 42), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 43), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 43), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [6192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2581), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 44), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 44), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 45), - [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 45), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 46), - [6217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 46), - [6219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 47), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 47), - [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 4), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 4), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 52), - [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 52), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 53), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 53), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 54), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 54), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 55), - [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 55), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, 0, 58), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, 0, 58), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2241), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [6349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 17), - [6351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 17), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [6359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 17), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 17), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2292), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 32), - [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 20), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [6479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2611), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [6484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 0), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 17), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 17), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), - [6613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), - [6627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 20), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 0), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 32), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [6765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 1, 0, 0), - [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 1, 0, 0), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2715), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 56), - [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 40), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 56), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [7211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 48), - [7213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 33), - [7215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 48), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 50), - [7247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 40), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 50), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [7271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 38), - [7409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 33), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 38), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 51), - [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 51), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 57), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 57), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 39), - [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 39), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [7555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 49), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 49), - [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [7691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [7771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [7829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), - [7879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [7883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [7905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), - [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [7911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [7914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3093), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), - [7925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [7967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [7995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2943), - [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3077), - [8003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), - [8006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [8009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [8012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3062), - [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [8039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [8051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), - [8071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [8089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [8093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [8097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [8113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), - [8118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2, 0, 0), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3, 0, 0), - [8134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3, 0, 0), - [8136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), - [8138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), - [8140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1, 0, 0), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [8146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3118), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [8209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_word, 1, 0, 0), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_word, 1, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 33), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 4), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [8346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3244), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 40), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [8369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [8437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2648), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 41), SHIFT_REPEAT(2328), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 41), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3406), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_terminated_statement, 2, 0, 0), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [8800] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(718), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5140), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5315), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3122), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5146), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(60), + [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(513), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(535), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3040), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2737), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(692), + [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4360), + [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(722), + [381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(917), + [384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4850), + [387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), + [390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(56), + [393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(59), + [402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), + [405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(878), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2638), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4682), + [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5144), + [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5403), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 38), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 54), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 7), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 73), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), + [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_statements_repeat1, 2, 0, 0), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(5884), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2941), + [973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2941), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 1, 0, 0), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 1, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_semgrep_deep_expression, 3, 0, 0), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_semgrep_deep_expression, 3, 0, 0), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_orig_simple_variable_name, 1, 0, 0), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_orig_simple_variable_name, 1, 0, 0), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 0), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 0), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 21), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 21), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [1066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(5943), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 12), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 12), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(663), + [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(474), + [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), + [1199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), + [1202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4449), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(655), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4377), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(749), + [1214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4845), + [1217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3594), + [1220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [1223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), + [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5131), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(663), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6075), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), + [1374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [1377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(479), + [1380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [1386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4554), + [1389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(685), + [1392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4299), + [1395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4868), + [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3606), + [1404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(351), + [1407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(301), + [1416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), + [1419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(853), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), + [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5142), + [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(706), + [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6085), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4517), + [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(757), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4415), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(891), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4826), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2984), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(892), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2622), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5090), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(694), + [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6041), + [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 24), + [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 24), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(726), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), + [1547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), + [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2794), + [1552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2971), + [1555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2879), + [1558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2880), + [1561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4626), + [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(746), + [1567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4399), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(799), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4774), + [1576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3598), + [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(326), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(327), + [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(328), + [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(269), + [1591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3081), + [1594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(820), + [1597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(5372), + [1600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(726), + [1603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1125), + [1606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(6077), + [1609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 11), + [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 11), + [1613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(834), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2829), + [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3007), + [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2903), + [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2904), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4607), + [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(832), + [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4304), + [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(959), + [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4787), + [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3608), + [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(357), + [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(358), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(359), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(309), + [1658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3104), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(965), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(5415), + [1667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(834), + [1670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1238), + [1673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(6087), + [1676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(809), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2766), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3055), + [1685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2805), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2806), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4579), + [1694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(904), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4302), + [1700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1016), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4839), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3550), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(150), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(151), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(152), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(137), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2993), + [1724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1023), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(5401), + [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(809), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1175), + [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(6044), + [1739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [1741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [1743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 14), + [1745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 14), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(735), + [1750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), + [1752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2872), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2873), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4461), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(728), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4366), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(795), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4805), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3593), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(314), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(315), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(316), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(257), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3072), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(800), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(735), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6074), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [1804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 3, 0, 0), + [1806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 3, 0, 0), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 3), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 3), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 2, 0, 0), + [1818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 2, 0, 0), + [1820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(763), + [1823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2896), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2897), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4530), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(814), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4297), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(953), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4844), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3605), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(348), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(349), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(350), + [1856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(297), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3097), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(960), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(763), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6084), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(819), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2759), + [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2760), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4643), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(873), + [1886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4358), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1044), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4777), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3531), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(102), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(103), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(104), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(99), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2949), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1045), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(819), + [1919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6036), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2876), + [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), + [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4527), + [1995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4385), + [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), + [2004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4800), + [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3597), + [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(323), + [2016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(324), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [2022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [2025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1135), + [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6076), + [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(530), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2799), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2800), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4604), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1086), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4382), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4801), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(132), + [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(128), + [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2988), + [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), + [2096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), + [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6042), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [2156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [2160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [2164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1143), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2888), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2889), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4644), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1079), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4430), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1219), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4853), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3602), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(339), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(340), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(341), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(285), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3089), + [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1245), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1143), + [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6081), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(538), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2900), + [2276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4586), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4301), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1174), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4770), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3607), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(356), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(305), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1104), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1209), + [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2836), + [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2837), + [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4539), + [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1215), + [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4395), + [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1415), + [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4799), + [2401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3567), + [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(214), + [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(215), + [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(216), + [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(193), + [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3034), + [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1421), + [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1209), + [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6058), + [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(546), + [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2817), + [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2818), + [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4450), + [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1589), + [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4364), + [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1573), + [2452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1633), + [2455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4809), + [2458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3557), + [2461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [2467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [2470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3011), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), + [2482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5118), + [2485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6049), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [2536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1239), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2912), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2913), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4470), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1173), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1281), + [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4813), + [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3612), + [2635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(369), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(370), + [2641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(371), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(325), + [2647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3117), + [2650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1286), + [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1239), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6091), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), + [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2881), + [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2882), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4499), + [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), + [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4405), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1393), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4831), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3599), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(330), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(331), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(332), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(273), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3082), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1397), + [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1260), + [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6078), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [2840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1285), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2905), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2906), + [3023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4620), + [3026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1412), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4306), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1582), + [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4865), + [3038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3609), + [3041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(360), + [3044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(361), + [3047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(362), + [3050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(313), + [3053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3106), + [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1446), + [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1285), + [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6088), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), + [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2830), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2831), + [3112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4515), + [3115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1396), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4387), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1546), + [3124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4780), + [3127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3564), + [3130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(202), + [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(203), + [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(204), + [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(181), + [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3028), + [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1561), + [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1308), + [3151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6055), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [3158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1588), + [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2812), + [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2813), + [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4611), + [3174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1562), + [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4352), + [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1588), + [3183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1604), + [3186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4848), + [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3555), + [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(170), + [3195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(171), + [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(172), + [3201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(149), + [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3000), + [3207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1647), + [3210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6047), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), + [3285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1623), + [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2747), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3131), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2823), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(2824), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4492), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1618), + [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4376), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1623), + [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1678), + [3315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(4843), + [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3560), + [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(190), + [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(191), + [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(192), + [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(169), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(3021), + [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1695), + [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(5946), + [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(1798), + [3345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 23), SHIFT_REPEAT(6052), + [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1642), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2924), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2822), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4476), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1659), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4435), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1642), + [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1720), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4794), + [3383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3559), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(186), + [3389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(187), + [3392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(188), + [3395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(165), + [3398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3017), + [3401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1680), + [3404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6051), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_not_pipeline, 1, 0, 0), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [3419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(2637), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [3424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(5136), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statements, 1, 0, 0), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_not_pipeline, 1, 0, 0), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [3467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(2634), + [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(5148), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [3479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(2636), + [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(5101), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statements, 1, 0, 0), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2849), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2850), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4585), + [3537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1749), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4424), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1743), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1821), + [3549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4841), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3575), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(242), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(243), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(244), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(217), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3047), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1778), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6064), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [3585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 7), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 7), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [3632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [3641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [3644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4459), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4368), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1757), + [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), + [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4772), + [3662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3014), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), + [3683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6050), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [3727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(5371), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 15), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 15), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3096), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [3846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 3), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 3), + [3850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 22), + [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 22), + [3854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2929), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2929), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2926), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2926), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [3878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1837), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2843), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2844), + [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4560), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1826), + [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4412), + [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1837), + [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1923), + [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4821), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3572), + [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(230), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(374), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(232), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(205), + [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3042), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1929), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6061), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [3943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(5414), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), + [4007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2868), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2869), + [4013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4646), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1839), + [4019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4349), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1795), + [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1874), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4835), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3590), + [4034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(302), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(303), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(304), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(249), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3068), + [4049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1880), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6072), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [4057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), + [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3091), + [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 10), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 10), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [4074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [4077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 1, 0, 0), + [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 1, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [4083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), + [4086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(788), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [4174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [4219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1895), + [4222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2863), + [4225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2864), + [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4631), + [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1861), + [4234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4337), + [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1895), + [4240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1983), + [4243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4797), + [4246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3588), + [4249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(294), + [4252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(295), + [4255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(296), + [4258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(241), + [4261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3062), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1969), + [4267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6070), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(5957), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(941), + [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(954), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [4340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [4344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(975), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [4381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(994), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [4398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [4400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1050), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [4471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_expression, 2, 0, 41), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_pipeline, 2, 0, 0), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 2), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 2), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 2), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 2), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1078), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2173), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2810), + [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2811), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4540), + [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2162), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4340), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2173), + [4523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2382), + [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4823), + [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3554), + [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(166), + [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(167), + [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(168), + [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(145), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2997), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2198), + [4550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6046), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [4565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1101), + [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2176), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2856), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2857), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4612), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2171), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4309), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2231), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4773), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3583), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(278), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(279), + [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(280), + [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(229), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3054), + [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2328), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2176), + [4658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6067), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1120), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 2), + [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 2), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1144), + [4685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), + [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), + [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2937), + [4733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extglob_blob, 1, 0, 0), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extglob_blob, 1, 0, 0), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(2626), + [4750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(5123), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), + [4809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), + [4812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), + [4815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2144), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(949), + [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4745), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(455), + [4860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1786), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [4867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(901), + [4870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1168), + [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2438), + [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4676), + [4879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4977), + [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4958), + [4885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1040), + [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1963), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2187), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2501), + [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2258), + [4900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1656), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(435), + [4906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1675), + [4909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1859), + [4912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1701), + [4915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1736), + [4918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1610), + [4921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3806), + [4924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1576), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3506), + [4930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3193), + [4933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1270), + [4936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3337), + [4939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3379), + [4942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2592), + [4945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1935), + [4948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4071), + [4951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3973), + [4954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1851), + [4957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4050), + [4960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4751), + [4963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5016), + [4966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2576), + [4969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5236), + [4972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2103), + [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1877), + [4978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4963), + [4981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2370), + [4984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4249), + [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2005), + [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(687), + [4993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1940), + [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4155), + [4999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1893), + [5002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4098), + [5005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4729), + [5008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(736), + [5011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1095), + [5014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(851), + [5017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1279), + [5020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3494), + [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3199), + [5026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1233), + [5029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3360), + [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(866), + [5035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(977), + [5038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(870), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1259), + [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(985), + [5047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1438), + [5050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3667), + [5053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3264), + [5056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1295), + [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3401), + [5062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(923), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1390), + [5072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3005), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3005), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [5083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2933), + [5086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2933), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1409), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [5098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(838), + [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1445), + [5104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [5117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3058), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [5154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2954), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1596), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [5173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3857), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [5197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [5201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [5249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [5254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1733), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3053), + [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1769), + [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2964), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3041), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2966), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extglob_blob, 2, 0, 0), + [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extglob_blob, 2, 0, 0), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1899), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), + [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(2743), + [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(2743), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(1191), + [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(3112), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), + [5383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(2632), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(4679), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 13), SHIFT_REPEAT(5112), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1913), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [5404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 27), + [5406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 27), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1953), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extglob_blob, 3, 0, 0), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extglob_blob, 3, 0, 0), + [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_literal, 1, 0, 0), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_literal, 1, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [5445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [5447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 25), + [5449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 25), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1980), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 5), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 5), + [5472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1991), + [5475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 16), + [5477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 16), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2001), + [5494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 25), + [5496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 25), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_ternary_expression, 5, 0, 51), + [5557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_ternary_expression, 5, 0, 51), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [5563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_expression_not_assignment, 1, 0, 0), + [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_expression_not_assignment, 1, 0, 0), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_unary_expression, 2, 0, 5), + [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_unary_expression, 2, 0, 5), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 25), + [5579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 25), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expression, 1, 0, 0), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expression, 1, 0, 0), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 51), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 51), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_parenthesized_expression, 3, 0, 0), + [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_parenthesized_expression, 3, 0, 0), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_binary_expression, 3, 0, 27), + [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_binary_expression, 3, 0, 27), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), + [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3061), + [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3061), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_postfix_expression, 2, 0, 16), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_postfix_expression, 2, 0, 16), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 2, 0, 30), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [5818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_binary_expression, 3, 0, 27), + [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_binary_expression, 3, 0, 27), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2682), + [6014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [6017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), + [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4558), + [6023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4739), + [6026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4409), + [6029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [6032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4968), + [6035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4786), + [6038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), + [6041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(146), + [6044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [6047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2990), + [6056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [6059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4683), + [6062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6043), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 3, 0, 31), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parenthesized_expression, 4, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parenthesized_expression, 4, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 4, 0, 58), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_expression, 1, 0, 0), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_expression, 1, 0, 0), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_unary_expression, 2, 0, 5), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_unary_expression, 2, 0, 5), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_postfix_expression, 2, 0, 16), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_postfix_expression, 2, 0, 16), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3378), + [6168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2841), + [6171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2842), + [6174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4553), + [6177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3287), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4404), + [6183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3463), + [6186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4811), + [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3569), + [6192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(222), + [6195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(223), + [6198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(224), + [6201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(201), + [6204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3039), + [6207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3398), + [6210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3378), + [6213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6060), + [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_parenthesized_expression, 3, 0, 0), + [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_parenthesized_expression, 3, 0, 0), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [6837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2604), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [6994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [6997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), + [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2764), + [7003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), + [7006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [7009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2779), + [7012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4705), + [7015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4434), + [7018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2172), + [7021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [7024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4858), + [7027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3672), + [7030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [7033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [7036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(98), + [7039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2024), + [7042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1968), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 2, 0, 5), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_command, 1, 0, 34), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [7091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3707), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), + [7096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(2841), + [7099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(2842), + [7102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(4553), + [7105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3287), + [7108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(4404), + [7111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3463), + [7114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(4811), + [7117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3569), + [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(222), + [7123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(223), + [7126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(224), + [7129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(201), + [7132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3039), + [7135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3398), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(3707), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_command_repeat1, 2, 0, 42), SHIFT_REPEAT(6060), + [7144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3687), + [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2827), + [7150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2828), + [7153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4509), + [7156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3755), + [7159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4383), + [7162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3687), + [7165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3910), + [7168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4775), + [7171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3563), + [7174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(198), + [7177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(199), + [7180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(200), + [7183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(177), + [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3027), + [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3918), + [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6054), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [7373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [7377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 1, 0, 0), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [7755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [7767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [7819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [7825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [7871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [7887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [7959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [7987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [8023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [8049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [8207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [8279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [8349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [8361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [8367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [8371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [8383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [8407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [8421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [8423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), + [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [8441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [8463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [8473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [8493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [8509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [8517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [8533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [8541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [8545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [8549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [8551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [8591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [8595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [8597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [8625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [8637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [8639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [8641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), + [8644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(5136), + [8647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), + [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(5101), + [8653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [8656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3025), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [8661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [8663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [8697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [8715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [8718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [8725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), + [8728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), + [8731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3174), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [8746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(2634), + [8749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(5148), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [8754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3197), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [8783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3239), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [8790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), + [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3033), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 2), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 2), + [8810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [8820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [8823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [8826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [8838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2718), + [8843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(564), + [8846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2980), + [8849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4668), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [8854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), + [8857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 18), + [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 18), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [8878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2855), + [8881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(566), + [8884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3101), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4666), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [8892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 8), + [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 8), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [8912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), + [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), + [8918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3339), + [8921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3115), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [8935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [8939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2715), + [8942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5978), + [8945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(574), + [8948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4473), + [8951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 39), + [8953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 39), + [8955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 33), + [8957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 33), + [8959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2726), + [8962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(586), + [8965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3018), + [8968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4653), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [8975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2938), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2938), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [8985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [8989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [8992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2809), + [8995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), + [8998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [9001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4464), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [9008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [9014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 2, 0, 0), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 3, 0, 36), + [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 61), + [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [9046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 80), + [9048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 63), + [9050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2697), + [9053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5982), + [9056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(597), + [9059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4565), + [9062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3439), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 3, 0, 28), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 45), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 47), + [9081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 49), + [9083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), + [9086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [9089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2934), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2934), + [9095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2698), + [9098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(617), + [9101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4660), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [9130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [9134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), + [9137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4544), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [9163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [9165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [9170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [9172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [9174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [9180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [9186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [9210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 28), + [9212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 28), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 17), + [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 17), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [9300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(390), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [9355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 28), + [9357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 28), + [9359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 28), + [9361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 28), + [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [9365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [9367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 28), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 28), + [9371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [9373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [9379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [9382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [9385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [9387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 12), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 12), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_heredoc_body, 2, 0, 0), + [9401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_heredoc_body, 2, 0, 0), + [9403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 7), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 7), + [9407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 76), + [9409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 76), + [9411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 7), + [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 7), + [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 7), + [9417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 7), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 29), + [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 29), + [9425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 9), + [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 9), + [9429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 59), + [9439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 59), + [9441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 26), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 26), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_heredoc_command_repeat1, 1, 0, 10), + [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_command_repeat1, 1, 0, 10), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 35), + [9453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 35), + [9455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 1), + [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 1), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [9461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [9463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [9465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 3), + [9467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 3), + [9469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 76), + [9471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 76), + [9473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 59), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 59), + [9477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 7), + [9479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 7), + [9481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(399), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2994), + [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 56), + [9491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 56), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 40), + [9497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 40), + [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(388), + [9502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 3), + [9504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 3), + [9506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 43), + [9508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 43), + [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 44), + [9512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 44), + [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 7), + [9516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 7), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [9520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 87), + [9522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 87), + [9524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 73), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [9528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 83), + [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 83), + [9532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 54), + [9534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [9539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(389), + [9542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 94), + [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 94), + [9546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 73), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [9550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 52), + [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 52), + [9554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 38), + [9556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 67), + [9558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 67), + [9560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 38), + [9562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 69), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 69), + [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 54), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [9570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 71), + [9572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 71), + [9574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 7), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [9592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [9596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_max_length, 2, 0, 30), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [9610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_expression, 1, 0, 5), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [9618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 85), + [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 85), + [9622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 7), + [9624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(5123), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [9634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_max_length, 3, 0, 31), + [9636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 84), + [9638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 84), + [9640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 68), + [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 68), + [9644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 70), + [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 70), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [9658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 72), + [9660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 72), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [9676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 88), + [9678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 88), + [9680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 53), + [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 53), + [9684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2917), + [9687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2917), + [9690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(671), + [9693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2986), + [9696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4657), + [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [9701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 95), + [9703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 95), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 86), + [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 86), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [9713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [9718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [9721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [9726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2710), + [9729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2710), + [9732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(915), + [9735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2942), + [9738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4670), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [9747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_max_length, 1, 0, 5), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), + [9764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [9767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2895), + [9770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(881), + [9773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [9787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3087), + [9790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3141), + [9793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [9798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2708), + [9801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5969), + [9804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2708), + [9807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1022), + [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5969), + [9813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4452), + [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [9828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4079), + [9831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3080), + [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [9844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_max_length, 4, 0, 31), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [9848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [9850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_max_length, 3, 0, 30), + [9852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_compound_statement_repeat1, 2, 0, 0), + [9856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4172), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), + [9896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [9899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [9910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), + [9913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), + [9916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(2706), + [9919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1196), + [9922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3013), + [9925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4678), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [9948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(390), + [9951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [9959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4247), + [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_terminator, 1, 0, 0), + [9980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_terminator, 1, 0, 0), + [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [9984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [9990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [10298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [10322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [10325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2802), + [10328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4656), + [10331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [10333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4654), + [10336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3548), + [10339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [10342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [10345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [10348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4651), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [10461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [10471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [10487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [10489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [10491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [10501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [10503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [10507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [10509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [10523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [10529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [10537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [10543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [10547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [10553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [10555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [10559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [10563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [10565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [10567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [10569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [10587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [10589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [10593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [10617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [10619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5983), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [10659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [10669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [10687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [10699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(4695), + [10702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(3592), + [10705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [10708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(311), + [10711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [10714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(4722), + [10717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), SHIFT_REPEAT(4485), + [10720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body__repeat1, 2, 0, 0), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [10876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body_, 1, 0, 0), + [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [10912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body_, 2, 0, 0), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [10940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [10962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 3, 0, 31), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [11062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [11116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [11160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 1, 0, 5), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [11184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_regex, 1, 0, 5), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [11190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(4720), + [11193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(4431), + [11196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_regex_repeat1, 2, 0, 0), + [11198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(4720), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [11205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [11207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [11209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_regex, 2, 0, 5), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [11219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [11222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [11237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length_binary_expression, 3, 0, 16), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [11243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length_expression, 1, 0, 0), + [11245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4752), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [11252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length, 2, 0, 5), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [11300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3128), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length, 4, 0, 31), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [11347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 5, 0, 58), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [11353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length, 5, 0, 31), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [11357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 3, 0, 30), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [11361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length, 3, 0, 30), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [11375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_word, 1, 0, 0), + [11377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_word, 1, 0, 0), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [11399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_max_length, 4, 0, 30), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [11427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 4, 0, 31), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 1, 0, 6), + [11459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4873), + [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [11466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [11472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation_in_expansion, 2, 0, 0), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [11476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [11478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [11485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_body_repeat1, 2, 0, 0), + [11487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_body_repeat1, 2, 0, 0), + [11489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), + [11492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 2, 0, 19), + [11494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_in_expansion_repeat1, 2, 0, 0), + [11496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), + [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 3, 0, 32), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 7), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [11525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_body_repeat1, 2, 0, 20), + [11527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expansion_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5026), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [11538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4973), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [11567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 54), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), + [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [11605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 73), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [11613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 38), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [11627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [11629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 7), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [11637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expansion_body_repeat1, 1, 0, 5), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_expression, 2, 0, 5), + [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [11663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_variable_assignment, 3, 0, 15), + [11665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_variable_assignment, 3, 0, 15), + [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [11721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [11735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 8, 0, 97), + [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [11751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [11753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 7, 0, 92), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [11771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3596), + [11774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [11778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [11780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [11782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [11784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [11786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [11788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [11790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [11792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [11796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [11798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [11800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [11802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [11804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [11806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [11816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [11828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [11842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(2867), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [11847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 7, 0, 93), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [11851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 2, 0, 5), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [11869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [11895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 3, 0, 37), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [11911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 77), + [11913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 78), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [11923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 79), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [11935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 64), + [11937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 60), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [11945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 65), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 46), + [11953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 66), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 7, 0, 91), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [11959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [11962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 48), + [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [11966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 4, 0, 50), + [11968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 81), + [11970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 5, 0, 62), + [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [11974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_body, 6, 0, 82), + [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [11980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 55), SHIFT_REPEAT(2671), + [11983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 55), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4954), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [11999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 6, 0, 58), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [12003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 3, 0, 5), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 5, 0, 31), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [12011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 4, 0, 30), + [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_removal, 1, 0, 5), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [12047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 4, 0, 57), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [12059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 5, 0, 74), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 5, 0, 75), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4917), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [12331] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [12339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [12375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command_binary_expression, 3, 0, 27), + [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [12413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_removal, 2, 0, 5), + [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), + [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [12447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_operator, 2, 0, 30), + [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [12465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 3, 0, 5), + [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), + [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), + [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), + [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), + [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [12553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_body, 2, 0, 0), + [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), + [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), + [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), + [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [12851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 6, 0, 89), + [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [12861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 6, 0, 90), + [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [12949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_regex_replacement, 7, 0, 96), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), + [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), + [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), + [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), + [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), + [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), + [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), + [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), + [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), + [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), + [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), + [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), + [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), + [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6018), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), + [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), + [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), + [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), + [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), + [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), + [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), }; enum ts_external_scanner_symbol_identifiers { 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_content = 3, + 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_RBRACE = 10, - ts_external_token_RBRACK = 11, - ts_external_token_LT_LT = 12, - ts_external_token_LT_LT_DASH = 13, - ts_external_token_LF = 14, + ts_external_token_test_operator = 9, + ts_external_token_regex = 10, + ts_external_token_regex_no_slash = 11, + ts_external_token_regex_no_space = 12, + ts_external_token_expansion_word = 13, + ts_external_token_extglob_pattern = 14, + ts_external_token_bare_dollar = 15, + ts_external_token_brace_start = 16, + ts_external_token_immediate_double_hash = 17, + ts_external_token_external_expansion_sym_hash = 18, + ts_external_token_external_expansion_sym_bang = 19, + ts_external_token_external_expansion_sym_equal = 20, + ts_external_token_RBRACE = 21, + ts_external_token_RBRACK = 22, + ts_external_token_LT_LT = 23, + ts_external_token_LT_LT_DASH = 24, + ts_external_token_statements_token1 = 25, + ts_external_token_LPAREN = 26, + ts_external_token_esac = 27, + ts_external_token_error_recovery = 28, }; 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_content] = sym_heredoc_content, + [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_test_operator] = sym_test_operator, [ts_external_token_regex] = sym_regex, - [ts_external_token_RBRACE] = anon_sym_RBRACE, + [ts_external_token_regex_no_slash] = sym_regex_no_slash, + [ts_external_token_regex_no_space] = sym_regex_no_space, + [ts_external_token_expansion_word] = sym_expansion_word, + [ts_external_token_extglob_pattern] = sym_extglob_pattern, + [ts_external_token_bare_dollar] = sym_bare_dollar, + [ts_external_token_brace_start] = sym_brace_start, + [ts_external_token_immediate_double_hash] = sym_immediate_double_hash, + [ts_external_token_external_expansion_sym_hash] = sym_external_expansion_sym_hash, + [ts_external_token_external_expansion_sym_bang] = sym_external_expansion_sym_bang, + [ts_external_token_external_expansion_sym_equal] = sym_external_expansion_sym_equal, + [ts_external_token_RBRACE] = anon_sym_RBRACE3, [ts_external_token_RBRACK] = anon_sym_RBRACK, [ts_external_token_LT_LT] = anon_sym_LT_LT, [ts_external_token_LT_LT_DASH] = anon_sym_LT_LT_DASH, - [ts_external_token_LF] = anon_sym_LF, + [ts_external_token_statements_token1] = aux_sym_statements_token1, + [ts_external_token_LPAREN] = anon_sym_LPAREN, + [ts_external_token_esac] = anon_sym_esac, + [ts_external_token_error_recovery] = sym_error_recovery, }; -static const bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[115][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_content] = 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_test_operator] = true, [ts_external_token_regex] = true, + [ts_external_token_regex_no_slash] = true, + [ts_external_token_regex_no_space] = true, + [ts_external_token_expansion_word] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_immediate_double_hash] = true, + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + [ts_external_token_error_recovery] = true, }, [2] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, }, [3] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LPAREN] = true, }, [4] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = 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_statements_token1] = true, + [ts_external_token_LPAREN] = true, }, [5] = { - [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_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [6] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = 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, - [ts_external_token_LF] = true, + [ts_external_token_LPAREN] = true, }, [7] = { - [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_RBRACE] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LPAREN] = true, }, [8] = { - [ts_external_token_file_descriptor] = true, [ts_external_token_concat] = true, - [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = 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, - [ts_external_token_LF] = true, + [ts_external_token_LPAREN] = true, }, [9] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = 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_statements_token1] = true, + [ts_external_token_LPAREN] = true, }, [10] = { - [ts_external_token_LF] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = 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, + [ts_external_token_LPAREN] = true, }, [11] = { - [ts_external_token_RBRACE] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, }, [12] = { - [ts_external_token_regex] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [13] = { - [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, }, [14] = { - [ts_external_token_RBRACK] = true, + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, }, [15] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [16] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [17] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [18] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [19] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, + }, + [20] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_statements_token1] = true, + }, + [21] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [22] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = 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, + }, + [23] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + }, + [24] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + }, + [25] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = 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, + }, + [26] = { [ts_external_token_file_descriptor] = true, [ts_external_token_concat] = true, [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, }, - [16] = { + [27] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [28] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [29] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [30] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [31] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [32] = { + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [33] = { + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [34] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [35] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [36] = { + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [37] = { + [ts_external_token_test_operator] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [38] = { + [ts_external_token_test_operator] = true, + [ts_external_token_regex_no_space] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [39] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, + }, + [40] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = 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, + }, + [41] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = 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_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [43] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + }, + [44] = { + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_LT_LT] = true, + }, + [45] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = 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, + }, + [46] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [47] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_LT_LT] = true, + }, + [48] = { + [ts_external_token_LT_LT] = true, + }, + [49] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + }, + [50] = { + [ts_external_token_concat] = true, + [ts_external_token_LT_LT] = true, + }, + [51] = { + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [52] = { + [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_statements_token1] = true, + }, + [53] = { + [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_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [54] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [55] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + }, + [56] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_statements_token1] = true, + }, + [57] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_statements_token1] = true, + }, + [58] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_expansion_word] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, + }, + [59] = { + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [60] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [61] = { + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_statements_token1] = true, + }, + [62] = { + [ts_external_token_concat] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [63] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [64] = { [ts_external_token_empty_value] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_LPAREN] = true, }, - [17] = { + [65] = { + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + }, + [66] = { + [ts_external_token_variable_name] = true, + [ts_external_token_LPAREN] = true, + }, + [67] = { + [ts_external_token_immediate_double_hash] = true, + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, + [68] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_brace_start] = true, + }, + [69] = { + [ts_external_token_test_operator] = true, + [ts_external_token_regex] = true, + [ts_external_token_brace_start] = true, + }, + [70] = { + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_RBRACK] = true, + }, + [71] = { + [ts_external_token_test_operator] = true, + [ts_external_token_bare_dollar] = true, + [ts_external_token_brace_start] = true, + }, + [72] = { + [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, + }, + [73] = { + [ts_external_token_immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, + }, + [74] = { + [ts_external_token_file_descriptor] = true, [ts_external_token_concat] = true, - [ts_external_token_LF] = true, + [ts_external_token_variable_name] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, }, - [18] = { + [75] = { + [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_statements_token1] = true, + [ts_external_token_esac] = true, }, - [19] = { + [76] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [77] = { + [ts_external_token_statements_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [78] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [79] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + }, + [80] = { + [ts_external_token_immediate_double_hash] = true, + }, + [81] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_esac] = true, + }, + [82] = { [ts_external_token_concat] = true, + [ts_external_token_immediate_double_hash] = true, + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, - [20] = { + [83] = { + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + [ts_external_token_statements_token1] = true, + }, + [84] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_statements_token1] = true, + }, + [85] = { + [ts_external_token_LPAREN] = true, + }, + [86] = { + [ts_external_token_variable_name] = true, + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, + [87] = { + [ts_external_token_concat] = true, + [ts_external_token_test_operator] = true, + [ts_external_token_brace_start] = true, + }, + [88] = { + [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, + }, + [89] = { + [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, }, - [21] = { + [90] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_statements_token1] = true, + [ts_external_token_LPAREN] = true, + }, + [91] = { [ts_external_token_variable_name] = true, + [ts_external_token_expansion_word] = true, [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, }, - [22] = { - [ts_external_token_heredoc_body_middle] = true, - [ts_external_token_heredoc_body_end] = true, + [92] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, - [23] = { + [93] = { + [ts_external_token_variable_name] = true, + [ts_external_token_expansion_word] = true, + [ts_external_token_LPAREN] = true, + }, + [94] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token_concat] = true, + [ts_external_token_statements_token1] = true, + }, + [95] = { + [ts_external_token_statements_token1] = true, + }, + [96] = { + [ts_external_token_variable_name] = true, + }, + [97] = { + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + }, + [98] = { + [ts_external_token_heredoc_content] = true, + [ts_external_token_heredoc_end] = true, + }, + [99] = { + [ts_external_token_concat] = true, + }, + [100] = { + [ts_external_token_RBRACE] = true, + }, + [101] = { + [ts_external_token_regex_no_slash] = true, + [ts_external_token_RBRACE] = true, + }, + [102] = { + [ts_external_token_concat] = true, + [ts_external_token_statements_token1] = true, + }, + [103] = { + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, + }, + [104] = { + [ts_external_token_concat] = true, + [ts_external_token_expansion_word] = true, + [ts_external_token_RBRACE] = true, + }, + [105] = { + [ts_external_token_simple_heredoc_body_] = true, + [ts_external_token_heredoc_body_beginning] = true, + }, + [106] = { + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, + [107] = { + [ts_external_token_concat] = true, + [ts_external_token_RBRACE] = true, + }, + [108] = { + [ts_external_token_concat] = true, + [ts_external_token_external_expansion_sym_hash] = true, + [ts_external_token_external_expansion_sym_bang] = true, + [ts_external_token_external_expansion_sym_equal] = true, + [ts_external_token_RBRACE] = true, + }, + [109] = { + [ts_external_token_esac] = true, + }, + [110] = { + [ts_external_token_extglob_pattern] = true, + }, + [111] = { + [ts_external_token_concat] = true, + [ts_external_token_RBRACK] = true, + }, + [112] = { + [ts_external_token_RBRACK] = true, + }, + [113] = { [ts_external_token_heredoc_start] = true, }, + [114] = { + [ts_external_token_heredoc_end] = true, + }, }; #ifdef __cplusplus @@ -157284,7 +285317,7 @@ void tree_sitter_bash_external_scanner_deserialize(void *, const char *, unsigne TS_PUBLIC const TSLanguage *tree_sitter_bash(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -157306,7 +285339,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_bash(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_word, diff --git a/lib/scanner.c b/lib/scanner.c new file mode 100644 index 0000000..0c3430a --- /dev/null +++ b/lib/scanner.c @@ -0,0 +1,1217 @@ +#include "tree_sitter/array.h" +#include "tree_sitter/parser.h" + +#include +#include +#include +#include + +enum TokenType { + HEREDOC_START, + SIMPLE_HEREDOC_BODY, + HEREDOC_BODY_BEGINNING, + HEREDOC_CONTENT, + HEREDOC_END, + FILE_DESCRIPTOR, + EMPTY_VALUE, + CONCAT, + VARIABLE_NAME, + TEST_OPERATOR, + REGEX, + REGEX_NO_SLASH, + REGEX_NO_SPACE, + EXPANSION_WORD, + EXTGLOB_PATTERN, + BARE_DOLLAR, + BRACE_START, + IMMEDIATE_DOUBLE_HASH, + EXTERNAL_EXPANSION_SYM_HASH, + EXTERNAL_EXPANSION_SYM_BANG, + EXTERNAL_EXPANSION_SYM_EQUAL, + CLOSING_BRACE, + CLOSING_BRACKET, + HEREDOC_ARROW, + HEREDOC_ARROW_DASH, + NEWLINE, + OPENING_PAREN, + ESAC, + ERROR_RECOVERY, +}; + +typedef Array(char) String; + +typedef struct { + bool is_raw; + bool started; + bool allows_indent; + String delimiter; + String current_leading_word; +} Heredoc; + +#define heredoc_new() \ + { \ + .is_raw = false, \ + .started = false, \ + .allows_indent = false, \ + .delimiter = array_new(), \ + .current_leading_word = array_new(), \ + }; + +typedef struct { + uint8_t last_glob_paren_depth; + bool ext_was_in_double_quote; + bool ext_saw_outside_quote; + Array(Heredoc) heredocs; +} Scanner; + +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[ERROR_RECOVERY]; } + +static inline void reset_string(String *string) { + if (string->size > 0) { + memset(string->contents, 0, string->size); + array_clear(string); + } +} + +static inline void reset_heredoc(Heredoc *heredoc) { + heredoc->is_raw = false; + heredoc->started = false; + heredoc->allows_indent = false; + reset_string(&heredoc->delimiter); +} + +static inline void reset(Scanner *scanner) { + for (uint32_t i = 0; i < scanner->heredocs.size; i++) { + reset_heredoc(array_get(&scanner->heredocs, i)); + } +} + +static unsigned serialize(Scanner *scanner, char *buffer) { + uint32_t size = 0; + + buffer[size++] = (char)scanner->last_glob_paren_depth; + buffer[size++] = (char)scanner->ext_was_in_double_quote; + buffer[size++] = (char)scanner->ext_saw_outside_quote; + buffer[size++] = (char)scanner->heredocs.size; + + for (uint32_t i = 0; i < scanner->heredocs.size; i++) { + Heredoc *heredoc = array_get(&scanner->heredocs, i); + if (size + 3 + sizeof(uint32_t) + heredoc->delimiter.size >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) { + return 0; + } + + buffer[size++] = (char)heredoc->is_raw; + buffer[size++] = (char)heredoc->started; + buffer[size++] = (char)heredoc->allows_indent; + + memcpy(&buffer[size], &heredoc->delimiter.size, sizeof(uint32_t)); + size += sizeof(uint32_t); + if (heredoc->delimiter.size > 0) { + memcpy(&buffer[size], heredoc->delimiter.contents, heredoc->delimiter.size); + size += heredoc->delimiter.size; + } + } + return size; +} + +static void deserialize(Scanner *scanner, const char *buffer, unsigned length) { + if (length == 0) { + reset(scanner); + } else { + uint32_t size = 0; + scanner->last_glob_paren_depth = buffer[size++]; + scanner->ext_was_in_double_quote = buffer[size++]; + scanner->ext_saw_outside_quote = buffer[size++]; + uint32_t heredoc_count = (unsigned char)buffer[size++]; + for (uint32_t i = 0; i < heredoc_count; i++) { + Heredoc *heredoc = NULL; + if (i < scanner->heredocs.size) { + heredoc = array_get(&scanner->heredocs, i); + } else { + Heredoc new_heredoc = heredoc_new(); + array_push(&scanner->heredocs, new_heredoc); + heredoc = array_back(&scanner->heredocs); + } + + heredoc->is_raw = buffer[size++]; + heredoc->started = buffer[size++]; + heredoc->allows_indent = buffer[size++]; + + memcpy(&heredoc->delimiter.size, &buffer[size], sizeof(uint32_t)); + size += sizeof(uint32_t); + array_reserve(&heredoc->delimiter, heredoc->delimiter.size); + + if (heredoc->delimiter.size > 0) { + memcpy(heredoc->delimiter.contents, &buffer[size], heredoc->delimiter.size); + size += heredoc->delimiter.size; + } + } + assert(size == length); + } +} + +/** + * Consume a "word" in POSIX parlance, and returns it unquoted. + * + * This is an approximate implementation that doesn't deal with any + * POSIX-mandated substitution, and assumes the default value for + * IFS. + */ +static bool advance_word(TSLexer *lexer, String *unquoted_word) { + bool empty = true; + + int32_t quote = 0; + if (lexer->lookahead == '\'' || lexer->lookahead == '"') { + quote = lexer->lookahead; + advance(lexer); + } + + while (lexer->lookahead && + !(quote ? lexer->lookahead == quote || lexer->lookahead == '\r' || lexer->lookahead == '\n' + : iswspace(lexer->lookahead))) { + if (lexer->lookahead == '\\') { + advance(lexer); + if (!lexer->lookahead) { + return false; + } + } + empty = false; + array_push(unquoted_word, lexer->lookahead); + advance(lexer); + } + array_push(unquoted_word, '\0'); + + if (quote && lexer->lookahead == quote) { + advance(lexer); + } + + return !empty; +} + +static inline bool scan_bare_dollar(TSLexer *lexer) { + while (iswspace(lexer->lookahead) && lexer->lookahead != '\n' && !lexer->eof(lexer)) { + skip(lexer); + } + + if (lexer->lookahead == '$') { + advance(lexer); + lexer->result_symbol = BARE_DOLLAR; + lexer->mark_end(lexer); + return iswspace(lexer->lookahead) || lexer->eof(lexer) || lexer->lookahead == '\"'; + } + + return false; +} + +static bool scan_heredoc_start(Heredoc *heredoc, TSLexer *lexer) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + lexer->result_symbol = HEREDOC_START; + heredoc->is_raw = lexer->lookahead == '\'' || lexer->lookahead == '"' || lexer->lookahead == '\\'; + + bool found_delimiter = advance_word(lexer, &heredoc->delimiter); + if (!found_delimiter) { + reset_string(&heredoc->delimiter); + return false; + } + return found_delimiter; +} + +static bool scan_heredoc_end_identifier(Heredoc *heredoc, TSLexer *lexer) { + reset_string(&heredoc->current_leading_word); + // Scan the first 'n' characters on this line, to see if they match the + // heredoc delimiter + int32_t size = 0; + if (heredoc->delimiter.size > 0) { + while (lexer->lookahead != '\0' && lexer->lookahead != '\n' && + (int32_t)*array_get(&heredoc->delimiter, size) == lexer->lookahead && + heredoc->current_leading_word.size < heredoc->delimiter.size) { + array_push(&heredoc->current_leading_word, lexer->lookahead); + advance(lexer); + size++; + } + } + array_push(&heredoc->current_leading_word, '\0'); + return heredoc->delimiter.size == 0 + ? false + : strcmp(heredoc->current_leading_word.contents, heredoc->delimiter.contents) == 0; +} + +static bool scan_heredoc_content(Scanner *scanner, TSLexer *lexer, enum TokenType middle_type, + enum TokenType end_type) { + bool did_advance = false; + Heredoc *heredoc = array_back(&scanner->heredocs); + + for (;;) { + switch (lexer->lookahead) { + case '\0': { + if (lexer->eof(lexer) && did_advance) { + reset_heredoc(heredoc); + lexer->result_symbol = end_type; + return true; + } + return false; + } + + case '\\': { + did_advance = true; + advance(lexer); + advance(lexer); + break; + } + + case '$': { + if (heredoc->is_raw) { + did_advance = true; + advance(lexer); + break; + } + if (did_advance) { + lexer->mark_end(lexer); + lexer->result_symbol = middle_type; + heredoc->started = true; + advance(lexer); + if (iswalpha(lexer->lookahead) || lexer->lookahead == '{' || lexer->lookahead == '(') { + return true; + } + break; + } + if (middle_type == HEREDOC_BODY_BEGINNING && lexer->get_column(lexer) == 0) { + lexer->result_symbol = middle_type; + heredoc->started = true; + return true; + } + return false; + } + + case '\n': { + if (!did_advance) { + skip(lexer); + } else { + advance(lexer); + } + did_advance = true; + if (heredoc->allows_indent) { + while (iswspace(lexer->lookahead)) { + advance(lexer); + } + } + lexer->result_symbol = heredoc->started ? middle_type : end_type; + lexer->mark_end(lexer); + if (scan_heredoc_end_identifier(heredoc, lexer)) { + if (lexer->result_symbol == HEREDOC_END) { + array_pop(&scanner->heredocs); + } + return true; + } + break; + } + + default: { + if (lexer->get_column(lexer) == 0) { + // an alternative is to check the starting column of the + // heredoc body and track that statefully + while (iswspace(lexer->lookahead)) { + if (did_advance) { + advance(lexer); + } else { + skip(lexer); + } + } + if (end_type != SIMPLE_HEREDOC_BODY) { + lexer->result_symbol = middle_type; + if (scan_heredoc_end_identifier(heredoc, lexer)) { + return true; + } + } + if (end_type == SIMPLE_HEREDOC_BODY) { + lexer->result_symbol = end_type; + lexer->mark_end(lexer); + if (scan_heredoc_end_identifier(heredoc, lexer)) { + return true; + } + } + } + did_advance = true; + advance(lexer); + break; + } + } + } +} + +static bool scan(Scanner *scanner, TSLexer *lexer, const bool *valid_symbols) { + if (valid_symbols[CONCAT] && !in_error_recovery(valid_symbols)) { + if (!(lexer->lookahead == 0 || iswspace(lexer->lookahead) || lexer->lookahead == '>' || + lexer->lookahead == '<' || lexer->lookahead == ')' || lexer->lookahead == '(' || + lexer->lookahead == ';' || lexer->lookahead == '&' || lexer->lookahead == '|' || + (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) || + (lexer->lookahead == ']' && valid_symbols[CLOSING_BRACKET]))) { + lexer->result_symbol = CONCAT; + // So for a`b`, we want to return a concat. We check if the + // 2nd backtick has whitespace after it, and if it does we + // return concat. + if (lexer->lookahead == '`') { + lexer->mark_end(lexer); + advance(lexer); + while (lexer->lookahead != '`' && !lexer->eof(lexer)) { + advance(lexer); + } + if (lexer->eof(lexer)) { + return false; + } + if (lexer->lookahead == '`') { + advance(lexer); + } + return iswspace(lexer->lookahead) || lexer->eof(lexer); + } + // strings w/ expansions that contains escaped quotes or + // backslashes need this to return a concat + if (lexer->lookahead == '\\') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '"' || lexer->lookahead == '\'' || lexer->lookahead == '\\') { + return true; + } + if (lexer->eof(lexer)) { + return false; + } + } else { + return true; + } + } + if (iswspace(lexer->lookahead) && valid_symbols[CLOSING_BRACE] && !valid_symbols[EXPANSION_WORD]) { + lexer->result_symbol = CONCAT; + return true; + } + } + + if (valid_symbols[IMMEDIATE_DOUBLE_HASH] && !in_error_recovery(valid_symbols)) { + // advance two # and ensure not } after + if (lexer->lookahead == '#') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '#') { + advance(lexer); + if (lexer->lookahead != '}') { + lexer->result_symbol = IMMEDIATE_DOUBLE_HASH; + lexer->mark_end(lexer); + return true; + } + } + } + } + + if (valid_symbols[EXTERNAL_EXPANSION_SYM_HASH] && !in_error_recovery(valid_symbols)) { + if (lexer->lookahead == '#' || lexer->lookahead == '=' || lexer->lookahead == '!') { + lexer->result_symbol = lexer->lookahead == '#' ? EXTERNAL_EXPANSION_SYM_HASH + : lexer->lookahead == '!' ? EXTERNAL_EXPANSION_SYM_BANG + : EXTERNAL_EXPANSION_SYM_EQUAL; + advance(lexer); + lexer->mark_end(lexer); + while (lexer->lookahead == '#' || lexer->lookahead == '=' || lexer->lookahead == '!') { + advance(lexer); + } + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + if (lexer->lookahead == '}') { + return true; + } + return false; + } + } + + if (valid_symbols[EMPTY_VALUE]) { + if (iswspace(lexer->lookahead) || lexer->eof(lexer) || lexer->lookahead == ';' || lexer->lookahead == '&') { + lexer->result_symbol = EMPTY_VALUE; + return true; + } + } + + if ((valid_symbols[HEREDOC_BODY_BEGINNING] || valid_symbols[SIMPLE_HEREDOC_BODY]) && scanner->heredocs.size > 0 && + !array_back(&scanner->heredocs)->started && !in_error_recovery(valid_symbols)) { + return scan_heredoc_content(scanner, lexer, HEREDOC_BODY_BEGINNING, SIMPLE_HEREDOC_BODY); + } + + if (valid_symbols[HEREDOC_END] && scanner->heredocs.size > 0) { + Heredoc *heredoc = array_back(&scanner->heredocs); + if (scan_heredoc_end_identifier(heredoc, lexer)) { + array_delete(&heredoc->current_leading_word); + array_delete(&heredoc->delimiter); + array_pop(&scanner->heredocs); + lexer->result_symbol = HEREDOC_END; + return true; + } + } + + if (valid_symbols[HEREDOC_CONTENT] && scanner->heredocs.size > 0 && array_back(&scanner->heredocs)->started && + !in_error_recovery(valid_symbols)) { + return scan_heredoc_content(scanner, lexer, HEREDOC_CONTENT, HEREDOC_END); + } + + if (valid_symbols[HEREDOC_START] && !in_error_recovery(valid_symbols) && scanner->heredocs.size > 0) { + return scan_heredoc_start(array_back(&scanner->heredocs), lexer); + } + + if (valid_symbols[TEST_OPERATOR] && !valid_symbols[EXPANSION_WORD]) { + while (iswspace(lexer->lookahead) && lexer->lookahead != '\n') { + skip(lexer); + } + + if (lexer->lookahead == '\\') { + if (valid_symbols[EXTGLOB_PATTERN]) { + goto extglob_pattern; + } + if (valid_symbols[REGEX_NO_SPACE]) { + goto regex; + } + skip(lexer); + + if (lexer->eof(lexer)) { + return false; + } + + if (lexer->lookahead == '\r') { + skip(lexer); + if (lexer->lookahead == '\n') { + skip(lexer); + } + } else if (lexer->lookahead == '\n') { + skip(lexer); + } else { + return false; + } + + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + } + + if (lexer->lookahead == '\n' && !valid_symbols[NEWLINE]) { + skip(lexer); + + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + } + + if (lexer->lookahead == '-') { + advance(lexer); + + bool advanced_once = false; + while (iswalpha(lexer->lookahead)) { + advanced_once = true; + advance(lexer); + } + + if (iswspace(lexer->lookahead) && advanced_once) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) { + if (valid_symbols[EXPANSION_WORD]) { + lexer->mark_end(lexer); + lexer->result_symbol = EXPANSION_WORD; + return true; + } + return false; + } + lexer->result_symbol = TEST_OPERATOR; + return true; + } + if (iswspace(lexer->lookahead) && valid_symbols[EXTGLOB_PATTERN]) { + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + } + + if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && scan_bare_dollar(lexer)) { + return true; + } + } + + if ((valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || valid_symbols[HEREDOC_ARROW]) && + !valid_symbols[REGEX_NO_SLASH] && !in_error_recovery(valid_symbols)) { + for (;;) { + if ((lexer->lookahead == ' ' || lexer->lookahead == '\t' || lexer->lookahead == '\r' || + (lexer->lookahead == '\n' && !valid_symbols[NEWLINE])) && + !valid_symbols[EXPANSION_WORD]) { + skip(lexer); + } else if (lexer->lookahead == '\\') { + skip(lexer); + + if (lexer->eof(lexer)) { + lexer->mark_end(lexer); + lexer->result_symbol = VARIABLE_NAME; + return true; + } + + if (lexer->lookahead == '\r') { + skip(lexer); + } + if (lexer->lookahead == '\n') { + skip(lexer); + } else { + if (lexer->lookahead == '\\' && valid_symbols[EXPANSION_WORD]) { + goto expansion_word; + } + return false; + } + } else { + break; + } + } + + // no '*', '@', '?', '-', '$', '0', '_' + if (!valid_symbols[EXPANSION_WORD] && + (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[EXTGLOB_PATTERN] && iswspace(lexer->lookahead)) { + lexer->mark_end(lexer); + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + } + + if (valid_symbols[HEREDOC_ARROW] && lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '<') { + advance(lexer); + if (lexer->lookahead == '-') { + advance(lexer); + Heredoc heredoc = heredoc_new(); + heredoc.allows_indent = true; + array_push(&scanner->heredocs, heredoc); + lexer->result_symbol = HEREDOC_ARROW_DASH; + } else if (lexer->lookahead == '<' || lexer->lookahead == '=') { + return false; + } else { + Heredoc heredoc = heredoc_new(); + array_push(&scanner->heredocs, heredoc); + lexer->result_symbol = HEREDOC_ARROW; + } + return true; + } + return false; + } + + bool is_number = true; + if (iswdigit(lexer->lookahead)) { + advance(lexer); + } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { + is_number = false; + advance(lexer); + } else { + if (lexer->lookahead == '{') { + goto brace_start; + } + if (valid_symbols[EXPANSION_WORD]) { + goto expansion_word; + } + if (valid_symbols[EXTGLOB_PATTERN]) { + goto extglob_pattern; + } + return false; + } + + for (;;) { + if (iswdigit(lexer->lookahead)) { + advance(lexer); + } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { + is_number = false; + advance(lexer); + } else { + break; + } + } + + if (is_number && valid_symbols[FILE_DESCRIPTOR] && (lexer->lookahead == '>' || lexer->lookahead == '<')) { + lexer->result_symbol = FILE_DESCRIPTOR; + return true; + } + + if (valid_symbols[VARIABLE_NAME]) { + if (lexer->lookahead == '+') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '=' || lexer->lookahead == ':' || valid_symbols[CLOSING_BRACE]) { + lexer->result_symbol = VARIABLE_NAME; + return true; + } + return false; + } + if (lexer->lookahead == '/') { + return false; + } + if (lexer->lookahead == '=' || lexer->lookahead == '[' || + (lexer->lookahead == ':' && !valid_symbols[CLOSING_BRACE] && + !valid_symbols[OPENING_PAREN]) || // TODO(amaanq): more cases for regular word chars but not variable + // names for function words, only handling : for now? #235 + lexer->lookahead == '%' || + (lexer->lookahead == '#' && !is_number) || lexer->lookahead == '@' || + (lexer->lookahead == '-' && valid_symbols[CLOSING_BRACE])) { + 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 iswalpha(lexer->lookahead); + } + } + + return false; + } + + if (valid_symbols[BARE_DOLLAR] && !in_error_recovery(valid_symbols) && scan_bare_dollar(lexer)) { + return true; + } + +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); + } + } + + if ((lexer->lookahead != '"' && lexer->lookahead != '\'') || + ((lexer->lookahead == '$' || lexer->lookahead == '\'') && valid_symbols[REGEX_NO_SLASH]) || + (lexer->lookahead == '\'' && valid_symbols[REGEX_NO_SPACE])) { + typedef struct { + bool done; + bool advanced_once; + bool found_non_alnumdollarunderdash; + bool last_was_escape; + bool in_single_quote; + uint32_t paren_depth; + uint32_t bracket_depth; + uint32_t brace_depth; + } State; + + if (lexer->lookahead == '$' && valid_symbols[REGEX_NO_SLASH]) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '(') { + return false; + } + } + + lexer->mark_end(lexer); + + State state = {false, false, false, false, false, 0, 0, 0}; + while (!state.done) { + if (state.in_single_quote) { + if (lexer->lookahead == '\'') { + state.in_single_quote = false; + advance(lexer); + lexer->mark_end(lexer); + } + } + switch (lexer->lookahead) { + case '\\': + state.last_was_escape = true; + break; + case '\0': + return false; + case '(': + state.paren_depth++; + state.last_was_escape = false; + break; + case '[': + state.bracket_depth++; + state.last_was_escape = false; + break; + case '{': + if (!state.last_was_escape) { + state.brace_depth++; + } + state.last_was_escape = false; + break; + case ')': + if (state.paren_depth == 0) { + state.done = true; + } + state.paren_depth--; + state.last_was_escape = false; + break; + case ']': + if (state.bracket_depth == 0) { + state.done = true; + } + state.bracket_depth--; + state.last_was_escape = false; + break; + case '}': + if (state.brace_depth == 0) { + state.done = true; + } + state.brace_depth--; + state.last_was_escape = false; + break; + case '\'': + // Enter or exit a single-quoted string. + state.in_single_quote = !state.in_single_quote; + advance(lexer); + state.advanced_once = true; + state.last_was_escape = false; + continue; + default: + state.last_was_escape = false; + break; + } + + if (!state.done) { + if (valid_symbols[REGEX]) { + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); + advance(lexer); + state.advanced_once = true; + if (!was_space || state.paren_depth > 0) { + 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 state.advanced_once; + } + if (lexer->lookahead == '\\') { + advance(lexer); + state.advanced_once = true; + if (!lexer->eof(lexer) && lexer->lookahead != '[' && lexer->lookahead != '/') { + advance(lexer); + lexer->mark_end(lexer); + } + } else { + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); + advance(lexer); + state.advanced_once = true; + if (!was_space) { + 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 (lexer->lookahead == '$') { + lexer->mark_end(lexer); + advance(lexer); + // do not parse a command + // substitution + if (lexer->lookahead == '(') { + return false; + } + // end $ always means regex, e.g. + // 99999999$ + if (iswspace(lexer->lookahead)) { + lexer->result_symbol = REGEX_NO_SPACE; + lexer->mark_end(lexer); + return true; + } + } else { + bool was_space = !state.in_single_quote && iswspace(lexer->lookahead); + if (was_space && state.paren_depth == 0) { + lexer->mark_end(lexer); + lexer->result_symbol = REGEX_NO_SPACE; + return state.found_non_alnumdollarunderdash; + } + 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 + : valid_symbols[REGEX_NO_SPACE] ? REGEX_NO_SPACE + : REGEX; + if (valid_symbols[REGEX] && !state.advanced_once) { + return false; + } + return true; + } + } + +extglob_pattern: + if (valid_symbols[EXTGLOB_PATTERN] && !in_error_recovery(valid_symbols)) { + // first skip ws, then check for ? * + @ ! + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + if (lexer->lookahead == '?' || lexer->lookahead == '*' || lexer->lookahead == '+' || lexer->lookahead == '@' || + lexer->lookahead == '!' || lexer->lookahead == '-' || lexer->lookahead == ')' || lexer->lookahead == '\\' || + lexer->lookahead == '.' || lexer->lookahead == '[' || (iswalpha(lexer->lookahead))) { + if (lexer->lookahead == '\\') { + advance(lexer); + if ((iswspace(lexer->lookahead) || lexer->lookahead == '"') && lexer->lookahead != '\r' && + lexer->lookahead != '\n') { + advance(lexer); + } else { + return false; + } + } + + if (lexer->lookahead == ')' && scanner->last_glob_paren_depth == 0) { + lexer->mark_end(lexer); + advance(lexer); + + if (iswspace(lexer->lookahead)) { + return false; + } + } + + lexer->mark_end(lexer); + bool was_non_alpha = !iswalpha(lexer->lookahead); + if (lexer->lookahead != '[') { + // no esac + if (lexer->lookahead == 'e') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == 's') { + advance(lexer); + if (lexer->lookahead == 'a') { + advance(lexer); + if (lexer->lookahead == 'c') { + advance(lexer); + if (iswspace(lexer->lookahead)) { + return false; + } + } + } + } + } else { + advance(lexer); + } + } + + // -\w is just a word, find something else special + if (lexer->lookahead == '-') { + lexer->mark_end(lexer); + advance(lexer); + while (iswalnum(lexer->lookahead)) { + advance(lexer); + } + + if (lexer->lookahead == ')' || lexer->lookahead == '\\' || lexer->lookahead == '.') { + return false; + } + lexer->mark_end(lexer); + } + + // case item -) or *) + if (lexer->lookahead == ')' && scanner->last_glob_paren_depth == 0) { + lexer->mark_end(lexer); + advance(lexer); + if (iswspace(lexer->lookahead)) { + lexer->result_symbol = EXTGLOB_PATTERN; + return was_non_alpha; + } + } + + if (iswspace(lexer->lookahead)) { + lexer->mark_end(lexer); + lexer->result_symbol = EXTGLOB_PATTERN; + scanner->last_glob_paren_depth = 0; + return true; + } + + if (lexer->lookahead == '$') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '{' || lexer->lookahead == '(') { + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + } + + if (lexer->lookahead == '|') { + lexer->mark_end(lexer); + advance(lexer); + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + + if (!iswalnum(lexer->lookahead) && lexer->lookahead != '(' && lexer->lookahead != '"' && + lexer->lookahead != '[' && lexer->lookahead != '?' && lexer->lookahead != '/' && + lexer->lookahead != '\\' && lexer->lookahead != '_' && lexer->lookahead != '*') { + return false; + } + + typedef struct { + bool done; + bool saw_non_alphadot; + uint32_t paren_depth; + uint32_t bracket_depth; + uint32_t brace_depth; + } State; + + State state = {false, was_non_alpha, scanner->last_glob_paren_depth, 0, 0}; + while (!state.done) { + switch (lexer->lookahead) { + case '\0': + return false; + case '(': + state.paren_depth++; + break; + case '[': + state.bracket_depth++; + break; + case '{': + state.brace_depth++; + break; + case ')': + if (state.paren_depth == 0) { + state.done = true; + } + state.paren_depth--; + break; + case ']': + if (state.bracket_depth == 0) { + state.done = true; + } + state.bracket_depth--; + break; + case '}': + if (state.brace_depth == 0) { + state.done = true; + } + state.brace_depth--; + break; + } + + if (lexer->lookahead == '|') { + lexer->mark_end(lexer); + advance(lexer); + if (state.paren_depth == 0 && state.bracket_depth == 0 && state.brace_depth == 0) { + lexer->result_symbol = EXTGLOB_PATTERN; + return true; + } + } + + if (!state.done) { + bool was_space = iswspace(lexer->lookahead); + if (lexer->lookahead == '$') { + lexer->mark_end(lexer); + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } + advance(lexer); + if (lexer->lookahead == '(' || lexer->lookahead == '{') { + lexer->result_symbol = EXTGLOB_PATTERN; + scanner->last_glob_paren_depth = state.paren_depth; + return state.saw_non_alphadot; + } + } + if (was_space) { + lexer->mark_end(lexer); + lexer->result_symbol = EXTGLOB_PATTERN; + scanner->last_glob_paren_depth = 0; + return state.saw_non_alphadot; + } + if (lexer->lookahead == '"') { + lexer->mark_end(lexer); + lexer->result_symbol = EXTGLOB_PATTERN; + scanner->last_glob_paren_depth = 0; + return state.saw_non_alphadot; + } + if (lexer->lookahead == '\\') { + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } + advance(lexer); + if (iswspace(lexer->lookahead) || lexer->lookahead == '"') { + advance(lexer); + } + } else { + if (!iswalpha(lexer->lookahead) && lexer->lookahead != '.' && lexer->lookahead != '\\') { + state.saw_non_alphadot = true; + } + advance(lexer); + } + if (!was_space) { + lexer->mark_end(lexer); + } + } + } + + lexer->result_symbol = EXTGLOB_PATTERN; + scanner->last_glob_paren_depth = 0; + return state.saw_non_alphadot; + } + scanner->last_glob_paren_depth = 0; + + return false; + } + +expansion_word: + if (valid_symbols[EXPANSION_WORD]) { + bool advanced_once = false; + bool advance_once_space = false; + for (;;) { + if (lexer->lookahead == '\"') { + return false; + } + if (lexer->lookahead == '$') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '{' || lexer->lookahead == '(' || lexer->lookahead == '\'' || + iswalnum(lexer->lookahead)) { + lexer->result_symbol = EXPANSION_WORD; + return advanced_once; + } + advanced_once = true; + } + + if (lexer->lookahead == '}') { + lexer->mark_end(lexer); + lexer->result_symbol = EXPANSION_WORD; + return advanced_once || advance_once_space; + } + + if (lexer->lookahead == '(' && !(advanced_once || advance_once_space)) { + lexer->mark_end(lexer); + advance(lexer); + while (lexer->lookahead != ')' && !lexer->eof(lexer)) { + // if we find a $( or ${ assume this is valid and is + // a garbage concatenation of some weird word + an + // expansion + // I wonder where this can fail + if (lexer->lookahead == '$') { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == '{' || lexer->lookahead == '(' || lexer->lookahead == '\'' || + iswalnum(lexer->lookahead)) { + lexer->result_symbol = EXPANSION_WORD; + return advanced_once; + } + advanced_once = true; + } else { + advanced_once = advanced_once || !iswspace(lexer->lookahead); + advance_once_space = advance_once_space || iswspace(lexer->lookahead); + advance(lexer); + } + } + lexer->mark_end(lexer); + if (lexer->lookahead == ')') { + advanced_once = true; + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '}') { + return false; + } + } else { + return false; + } + } + + if (lexer->lookahead == '\'') { + return false; + } + + if (lexer->eof(lexer)) { + return false; + } + advanced_once = advanced_once || !iswspace(lexer->lookahead); + advance_once_space = advance_once_space || iswspace(lexer->lookahead); + advance(lexer); + } + } + +brace_start: + if (valid_symbols[BRACE_START] && !in_error_recovery(valid_symbols)) { + while (iswspace(lexer->lookahead)) { + skip(lexer); + } + + if (lexer->lookahead != '{') { + return false; + } + + advance(lexer); + lexer->mark_end(lexer); + + while (isdigit(lexer->lookahead)) { + advance(lexer); + } + + if (lexer->lookahead != '.') { + return false; + } + advance(lexer); + + if (lexer->lookahead != '.') { + return false; + } + advance(lexer); + + while (isdigit(lexer->lookahead)) { + advance(lexer); + } + + if (lexer->lookahead != '}') { + return false; + } + + lexer->result_symbol = BRACE_START; + return true; + } + + return false; +} + +void *tree_sitter_bash_external_scanner_create() { + Scanner *scanner = calloc(1, sizeof(Scanner)); + array_init(&scanner->heredocs); + return scanner; +} + +bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + return scan(scanner, lexer, valid_symbols); +} + +unsigned tree_sitter_bash_external_scanner_serialize(void *payload, char *state) { + Scanner *scanner = (Scanner *)payload; + return serialize(scanner, state); +} + +void tree_sitter_bash_external_scanner_deserialize(void *payload, const char *state, unsigned length) { + Scanner *scanner = (Scanner *)payload; + deserialize(scanner, state, length); +} + +void tree_sitter_bash_external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + for (size_t i = 0; i < scanner->heredocs.size; i++) { + Heredoc *heredoc = array_get(&scanner->heredocs, i); + array_delete(&heredoc->current_leading_word); + array_delete(&heredoc->delimiter); + } + array_delete(&scanner->heredocs); + free(scanner); +} diff --git a/lib/scanner.cc b/lib/scanner.cc deleted file mode 100644 index 31231ae..0000000 --- a/lib/scanner.cc +++ /dev/null @@ -1,398 +0,0 @@ -#include -#include -#include - -namespace { - -using std::string; - -enum TokenType { - HEREDOC_START, - SIMPLE_HEREDOC_BODY, - HEREDOC_BODY_BEGINNING, - HEREDOC_BODY_MIDDLE, - HEREDOC_BODY_END, - FILE_DESCRIPTOR, - EMPTY_VALUE, - CONCAT, - VARIABLE_NAME, - REGEX, - CLOSING_BRACE, - CLOSING_BRACKET, - HEREDOC_ARROW, - HEREDOC_ARROW_DASH, - NEWLINE, -}; - -struct Scanner { - void skip(TSLexer *lexer) { - lexer->advance(lexer, true); - } - - void advance(TSLexer *lexer) { - lexer->advance(lexer, false); - } - - unsigned serialize(char *buffer) { - if (heredoc_delimiter.length() + 3 >= TREE_SITTER_SERIALIZATION_BUFFER_SIZE) return 0; - buffer[0] = heredoc_is_raw; - buffer[1] = started_heredoc; - buffer[2] = heredoc_allows_indent; - heredoc_delimiter.copy(&buffer[3], heredoc_delimiter.length()); - return heredoc_delimiter.length() + 3; - } - - void deserialize(const char *buffer, unsigned length) { - if (length == 0) { - heredoc_is_raw = false; - started_heredoc = false; - heredoc_allows_indent = false; - heredoc_delimiter.clear(); - } else { - heredoc_is_raw = buffer[0]; - started_heredoc = buffer[1]; - heredoc_allows_indent = buffer[2]; - heredoc_delimiter.assign(&buffer[3], &buffer[length]); - } - } - - bool scan_heredoc_start(TSLexer *lexer) { - while (iswspace(lexer->lookahead)) skip(lexer); - - lexer->result_symbol = HEREDOC_START; - heredoc_is_raw = lexer->lookahead == '\''; - started_heredoc = false; - heredoc_delimiter.clear(); - - if (lexer->lookahead == '\\') { - advance(lexer); - } - - int32_t quote = 0; - if (heredoc_is_raw || lexer->lookahead == '"') { - quote = lexer->lookahead; - advance(lexer); - } - - while (iswalpha(lexer->lookahead) || (quote != 0 && iswspace(lexer->lookahead))) { - heredoc_delimiter += lexer->lookahead; - advance(lexer); - } - - if (lexer->lookahead == quote) { - advance(lexer); - } - - return !heredoc_delimiter.empty(); - } - - bool scan_heredoc_end_identifier(TSLexer *lexer) { - current_leading_word.clear(); - // Scan the first 'n' characters on this line, to see if they match the heredoc delimiter - while ( - lexer->lookahead != '\0' && - lexer->lookahead != '\n' && - current_leading_word.length() < heredoc_delimiter.length() - ) { - current_leading_word += lexer->lookahead; - advance(lexer); - } - return current_leading_word == heredoc_delimiter; - } - - bool scan_heredoc_content(TSLexer *lexer, TokenType middle_type, TokenType end_type) { - bool did_advance = false; - - for (;;) { - switch (lexer->lookahead) { - case '\0': { - if (did_advance) { - heredoc_is_raw = false; - started_heredoc = false; - heredoc_allows_indent = false; - heredoc_delimiter.clear(); - lexer->result_symbol = end_type; - return true; - } else { - return false; - } - } - - case '\\': { - did_advance = true; - advance(lexer); - advance(lexer); - break; - } - - case '$': { - if (heredoc_is_raw) { - did_advance = true; - advance(lexer); - break; - } else if (did_advance) { - lexer->result_symbol = middle_type; - started_heredoc = true; - return true; - } else { - return false; - } - } - - case '\n': { - did_advance = true; - advance(lexer); - if (heredoc_allows_indent) { - while (iswspace(lexer->lookahead)) { - advance(lexer); - } - } - if (scan_heredoc_end_identifier(lexer)) { - heredoc_is_raw = false; - started_heredoc = false; - heredoc_allows_indent = false; - heredoc_delimiter.clear(); - lexer->result_symbol = end_type; - return true; - } - break; - } - - default: { - did_advance = true; - advance(lexer); - break; - } - } - } - } - - bool scan(TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[CONCAT]) { - if (!( - lexer->lookahead == 0 || - iswspace(lexer->lookahead) || - lexer->lookahead == '\\' || - lexer->lookahead == '>' || - lexer->lookahead == '<' || - lexer->lookahead == ')' || - lexer->lookahead == '(' || - lexer->lookahead == ';' || - lexer->lookahead == '&' || - lexer->lookahead == '|' || - lexer->lookahead == '`' || - lexer->lookahead == '#' || - (lexer->lookahead == '}' && valid_symbols[CLOSING_BRACE]) || - (lexer->lookahead == ']' && valid_symbols[CLOSING_BRACKET]) - )) { - lexer->result_symbol = CONCAT; - return true; - } - } - - if (valid_symbols[EMPTY_VALUE]) { - if (iswspace(lexer->lookahead)) { - lexer->result_symbol = EMPTY_VALUE; - return true; - } - } - - if (valid_symbols[HEREDOC_BODY_BEGINNING] && !heredoc_delimiter.empty() && !started_heredoc) { - return scan_heredoc_content(lexer, HEREDOC_BODY_BEGINNING, SIMPLE_HEREDOC_BODY); - } - - if (valid_symbols[HEREDOC_BODY_MIDDLE] && !heredoc_delimiter.empty() && started_heredoc) { - return scan_heredoc_content(lexer, HEREDOC_BODY_MIDDLE, HEREDOC_BODY_END); - } - - if (valid_symbols[HEREDOC_START]) { - return scan_heredoc_start(lexer); - } - - if (valid_symbols[VARIABLE_NAME] || valid_symbols[FILE_DESCRIPTOR] || valid_symbols[HEREDOC_ARROW]) { - for (;;) { - if ( - lexer->lookahead == ' ' || - lexer->lookahead == '\t' || - lexer->lookahead == '\r' || - (lexer->lookahead == '\n' && !valid_symbols[NEWLINE]) - ) { - skip(lexer); - } else if (lexer->lookahead == '\\') { - skip(lexer); - if (lexer->lookahead == '\r') { - skip(lexer); - } - if (lexer->lookahead == '\n') { - skip(lexer); - } else { - return false; - } - } else { - break; - } - } - - if (valid_symbols[HEREDOC_ARROW] && lexer->lookahead == '<') { - advance(lexer); - if (lexer->lookahead == '<') { - advance(lexer); - if (lexer->lookahead == '-') { - advance(lexer); - heredoc_allows_indent = true; - lexer->result_symbol = HEREDOC_ARROW_DASH; - } else if (lexer->lookahead == '<') { - return false; - } else { - heredoc_allows_indent = false; - lexer->result_symbol = HEREDOC_ARROW; - } - return true; - } - return false; - } - - bool is_number = true; - if (iswdigit(lexer->lookahead)) { - advance(lexer); - } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - is_number = false; - advance(lexer); - } else { - return false; - } - - for (;;) { - if (iswdigit(lexer->lookahead)) { - advance(lexer); - } else if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - is_number = false; - advance(lexer); - } else { - break; - } - } - - if (is_number && - valid_symbols[FILE_DESCRIPTOR] && - (lexer->lookahead == '>' || lexer->lookahead == '<')) { - lexer->result_symbol = FILE_DESCRIPTOR; - return true; - } - - if (valid_symbols[VARIABLE_NAME]) { - if (lexer->lookahead == '+') { - lexer->mark_end(lexer); - advance(lexer); - if (lexer->lookahead == '=') { - lexer->result_symbol = VARIABLE_NAME; - return true; - } else { - return false; - } - } else if (lexer->lookahead == '=' || lexer->lookahead == '[') { - lexer->result_symbol = VARIABLE_NAME; - return true; - } - } - - return false; - } - - if (valid_symbols[REGEX]) { - while (iswspace(lexer->lookahead)) skip(lexer); - - if ( - lexer->lookahead != '"' && - lexer->lookahead != '\'' && - lexer->lookahead != '$' - ) { - struct State { - bool done; - uint32_t paren_depth; - uint32_t bracket_depth; - uint32_t brace_depth; - }; - - lexer->mark_end(lexer); - - State state = {false, 0, 0, 0}; - while (!state.done) { - switch (lexer->lookahead) { - case '\0': - return false; - case '(': - state.paren_depth++; - break; - case '[': - state.bracket_depth++; - break; - case '{': - state.brace_depth++; - break; - case ')': - if (state.paren_depth == 0) state.done = true; - state.paren_depth--; - break; - case ']': - if (state.bracket_depth == 0) state.done = true; - state.bracket_depth--; - break; - case '}': - if (state.brace_depth == 0) state.done = true; - state.brace_depth--; - break; - } - - if (!state.done) { - bool was_space = iswspace(lexer->lookahead); - advance(lexer); - if (!was_space) lexer->mark_end(lexer); - } - } - - lexer->result_symbol = REGEX; - return true; - } - } - - return false; - } - - string heredoc_delimiter; - bool heredoc_is_raw; - bool started_heredoc; - bool heredoc_allows_indent; - string current_leading_word; -}; - -} - -extern "C" { - -void *tree_sitter_bash_external_scanner_create() { - return new Scanner(); -} - -bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, - const bool *valid_symbols) { - Scanner *scanner = static_cast(payload); - return scanner->scan(lexer, valid_symbols); -} - -unsigned tree_sitter_bash_external_scanner_serialize(void *payload, char *state) { - Scanner *scanner = static_cast(payload); - return scanner->serialize(state); -} - -void tree_sitter_bash_external_scanner_deserialize(void *payload, const char *state, unsigned length) { - Scanner *scanner = static_cast(payload); - scanner->deserialize(state, length); -} - -void tree_sitter_bash_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -} diff --git a/lib/tree_sitter/alloc.h b/lib/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/lib/tree_sitter/alloc.h +++ b/lib/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/lib/tree_sitter/array.h b/lib/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/lib/tree_sitter/array.h +++ b/lib/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/lib/tree_sitter/parser.h b/lib/tree_sitter/parser.h index 17f0e94..858107d 100644 --- a/lib/tree_sitter/parser.h +++ b/lib/tree_sitter/parser.h @@ -18,6 +18,11 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +31,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -47,6 +53,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { @@ -78,6 +85,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -92,7 +105,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -108,13 +121,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -128,15 +141,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -144,7 +165,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); }